[AUTO UPDATE] Copying from upstream Mojo Repository.
diff --git a/OWNERS b/OWNERS
deleted file mode 100644
index 72e8ffc..0000000
--- a/OWNERS
+++ /dev/null
@@ -1 +0,0 @@
-*
diff --git a/run_hooks.py b/run_hooks.py
index 52e27a0..3b734c3 100755
--- a/run_hooks.py
+++ b/run_hooks.py
@@ -19,7 +19,10 @@
def main(args):
gclient_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
os.pardir, os.pardir))
- deps_path = os.path.join(gclient_path, "src", "DEPS")
+ # XXX(smklein): This path is updated, so DEPS can live as a part of the MST.
+ # Should DEPS be 'src' for each service? Is there any part
+ # of DEPS that could be shared that way?
+ deps_path = os.path.join(gclient_path, "src/mst", "DEPS")
with open(deps_path) as deps_contents:
d = deps_contents.read()
exec(d, scope)