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