| 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 "@5489e0e3fc0a4a1044b4f1edbc838ccb65048231"), | 14 "@5489e0e3fc0a4a1044b4f1edbc838ccb65048231"), |
| 15 | 15 |
| 16 "infra/go/src/github.com/luci/luci-go": | 16 "infra/go/src/github.com/luci/luci-go": |
| 17 ("https://chromium.googlesource.com/external/github.com/luci/luci-go" | 17 ("https://chromium.googlesource.com/external/github.com/luci/luci-go" |
| 18 "@72d6bc9ffaef89dc0a99dc4fb42d64de826603e7"), | 18 "@6ad3ff8e6fc1f72a3c1072bb09e5d80c8a3259b2"), |
| 19 | 19 |
| 20 "infra/go/src/github.com/luci/gae": | 20 "infra/go/src/github.com/luci/gae": |
| 21 ("https://chromium.googlesource.com/external/github.com/luci/gae" | 21 ("https://chromium.googlesource.com/external/github.com/luci/gae" |
| 22 "@1ad17ed9115aa1e9414475e6bd60da943705f02b"), | 22 "@1ad17ed9115aa1e9414475e6bd60da943705f02b"), |
| 23 | 23 |
| 24 # Appengine third_party DEPS | 24 # Appengine third_party DEPS |
| 25 "infra/appengine/third_party/bootstrap": | 25 "infra/appengine/third_party/bootstrap": |
| 26 ("https://chromium.googlesource.com/external/github.com/twbs/bootstrap.git" | 26 ("https://chromium.googlesource.com/external/github.com/twbs/bootstrap.git" |
| 27 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), | 27 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), |
| 28 | 28 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 }, | 141 }, |
| 142 { | 142 { |
| 143 "pattern": ".", | 143 "pattern": ".", |
| 144 "action": [ | 144 "action": [ |
| 145 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", | 145 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", |
| 146 ], | 146 ], |
| 147 }, | 147 }, |
| 148 ] | 148 ] |
| 149 | 149 |
| 150 recursedeps = ['build'] | 150 recursedeps = ['build'] |
| OLD | NEW |