| 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": "c04524294e091a0ece892c5b65bb64aa5c7b9133", | 5 "npm_modules_revision": "c04524294e091a0ece892c5b65bb64aa5c7b9133", |
| 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 "@7f6c260b7664e39915c3b99bfe3d4283667165ab"), | 14 "@7f6c260b7664e39915c3b99bfe3d4283667165ab"), |
| 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 "@cd33aabb0c7b994c11a97ff49a6d9fcc721ff564"), | 18 "@b85c6dd748361e8244122faac44b5beefcd2db37"), |
| 19 | 19 |
| 20 # Appengine third_party DEPS | 20 # Appengine third_party DEPS |
| 21 "infra/appengine/third_party/bootstrap": | 21 "infra/appengine/third_party/bootstrap": |
| 22 ("https://chromium.googlesource.com/infra/third_party/bootstrap.git" | 22 ("https://chromium.googlesource.com/infra/third_party/bootstrap.git" |
| 23 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), | 23 "@b4895a0d6dc493f17fe9092db4debe44182d42ac"), |
| 24 | 24 |
| 25 "infra/appengine/third_party/cloudstorage": | 25 "infra/appengine/third_party/cloudstorage": |
| 26 ("https://chromium.googlesource.com/infra/third_party/cloudstorage.git" | 26 ("https://chromium.googlesource.com/infra/third_party/cloudstorage.git" |
| 27 "@ad74316d12e198e0c7352bd666bbc2ec7938bd65"), | 27 "@ad74316d12e198e0c7352bd666bbc2ec7938bd65"), |
| 28 | 28 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "pattern": ".", | 109 "pattern": ".", |
| 110 "action": [ | 110 "action": [ |
| 111 "python", "-u", "./infra/bootstrap/get_appengine.py", "--dest=.", | 111 "python", "-u", "./infra/bootstrap/get_appengine.py", "--dest=.", |
| 112 "--go", | 112 "--go", |
| 113 ], | 113 ], |
| 114 # extract in go_appengine/ | 114 # extract in go_appengine/ |
| 115 }, | 115 }, |
| 116 ] | 116 ] |
| 117 | 117 |
| 118 recursedeps = ['build'] | 118 recursedeps = ['build'] |
| OLD | NEW |