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": "2c5e24a5e2b6b7ddd8c1e49fe732c72da1fdcb3c", | 5 "npm_modules_revision": "2c5e24a5e2b6b7ddd8c1e49fe732c72da1fdcb3c", |
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", |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "pattern": ".", | 138 "pattern": ".", |
139 "action": [ | 139 "action": [ |
140 "python", "-u", "./infra/bootstrap/get_appengine.py", "--dest=.", | 140 "python", "-u", "./infra/bootstrap/get_appengine.py", "--dest=.", |
141 "--go", | 141 "--go", |
142 ], | 142 ], |
143 # extract in go_appengine/ | 143 # extract in go_appengine/ |
144 }, | 144 }, |
145 { | 145 { |
146 "pattern": ".", | 146 "pattern": ".", |
147 "action": [ | 147 "action": [ |
| 148 "python", "-u", "./infra/bootstrap/install_cipd_packages.py", "-v", |
| 149 ], |
| 150 }, |
| 151 { |
| 152 "pattern": ".", |
| 153 "action": [ |
148 "download_from_google_storage", | 154 "download_from_google_storage", |
149 "--bucket", "chromium-infra", | 155 "--bucket", "chromium-infra", |
150 "--recursive", | 156 "--recursive", |
151 "--directory", | 157 "--directory", |
152 "infra/appengine/milo" | 158 "infra/appengine/milo" |
153 ] | 159 ] |
154 } | 160 } |
155 ] | 161 ] |
156 | 162 |
157 recursedeps = ['build'] | 163 recursedeps = ['build'] |
OLD | NEW |