| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 # npm_modules.git is special: we can't check it out on Windows because paths | 2 # npm_modules.git is special: we can't check it out on Windows because paths |
| 3 # there are too long for Windows. Instead we use 'deps_os' gclient feature to | 3 # there are too long for Windows. Instead we use 'deps_os' gclient feature to |
| 4 # checkout it out only on Linux and Mac. | 4 # checkout it out only on Linux and Mac. |
| 5 "npm_modules_revision": "029f11ae7e3189fd57f7764b4bb43d0900e16c92", | 5 "npm_modules_revision": "029f11ae7e3189fd57f7764b4bb43d0900e16c92", |
| 6 } | 6 } |
| 7 | 7 |
| 8 deps = { | 8 deps = { |
| 9 "build": | 9 "build": |
| 10 "https://chromium.googlesource.com/chromium/tools/build.git", | 10 "https://chromium.googlesource.com/chromium/tools/build.git", |
| 11 | 11 |
| 12 "infra/luci": | 12 "infra/luci": |
| 13 ("https://chromium.googlesource.com/external/github.com/luci/luci-py" | 13 ("https://chromium.googlesource.com/external/github.com/luci/luci-py" |
| 14 "@285525e774195f008a0c874f16aa0e6a9853f8f7"), | 14 "@285525e774195f008a0c874f16aa0e6a9853f8f7"), |
| 15 | 15 |
| 16 # This unpinned dependency is present because it is used by the trybots for | 16 # This unpinned dependency is present because it is used by the trybots for |
| 17 # the recipes-py repo; They check out infra with this at HEAD, and then apply | 17 # the recipes-py repo; They check out infra with this at HEAD, and then apply |
| 18 # the patch to it and run verifications within that copy of the repo. They | 18 # the patch to it and run verifications within that copy of the repo. They |
| 19 # piggyback on top of infra in order to take advantage of it's precompiled | 19 # piggyback on top of infra in order to take advantage of it's precompiled |
| 20 # version of python-coverage. | 20 # version of python-coverage. |
| 21 "infra/recipes-py": | 21 "infra/recipes-py": |
| 22 ("https://chromium.googlesource.com/external/github.com/luci/recipes-py" | 22 ("https://chromium.googlesource.com/external/github.com/luci/recipes-py" |
| 23 "@origin/master"), | 23 "@origin/master"), |
| 24 | 24 |
| 25 "infra/go/src/github.com/luci/luci-go": | 25 "infra/go/src/github.com/luci/luci-go": |
| 26 ("https://chromium.googlesource.com/external/github.com/luci/luci-go" | 26 ("https://chromium.googlesource.com/external/github.com/luci/luci-go" |
| 27 "@b64e79dd4a3f2a4b38d06cf1d98a212d25be1c2b"), | 27 "@987d690898390cf368ca1839bdc5b98a860c86b2"), |
| 28 | 28 |
| 29 "infra/go/src/github.com/luci/gae": | 29 "infra/go/src/github.com/luci/gae": |
| 30 ("https://chromium.googlesource.com/external/github.com/luci/gae" | 30 ("https://chromium.googlesource.com/external/github.com/luci/gae" |
| 31 "@f2a2648b0e74fb73c9443669852606328952a017"), | 31 "@f2a2648b0e74fb73c9443669852606328952a017"), |
| 32 | 32 |
| 33 # Appengine third_party DEPS | 33 # Appengine third_party DEPS |
| 34 "infra/appengine/third_party/bootstrap": | 34 "infra/appengine/third_party/bootstrap": |
| 35 ("https://chromium.googlesource.com/external/github.com/twbs/bootstrap.git" | 35 ("https://chromium.googlesource.com/external/github.com/twbs/bootstrap.git" |
| 36 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), | 36 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), |
| 37 | 37 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 }, | 150 }, |
| 151 { | 151 { |
| 152 "pattern": ".", | 152 "pattern": ".", |
| 153 "action": [ | 153 "action": [ |
| 154 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", | 154 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", |
| 155 ], | 155 ], |
| 156 }, | 156 }, |
| 157 ] | 157 ] |
| 158 | 158 |
| 159 recursedeps = ['build'] | 159 recursedeps = ['build'] |
| OLD | NEW |