OLD | NEW |
1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 | 5 |
6 vars = { | 6 vars = { |
7 # NOTE: This revision will be used for looking at | 7 # NOTE: This revision will be used for looking at |
8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz | 8 # gs://chromium-browser-clang/Mac/clang-<rev>-1.tgz |
9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz | 9 # gs://chromium-browser-clang/Linux_x64/clang-<rev>-1.tgz |
10 "clang_rev": "245965", | 10 "clang_rev": "245965", |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'name': 'mdns_native_extension_binaries', | 191 'name': 'mdns_native_extension_binaries', |
192 'pattern': '.', | 192 'pattern': '.', |
193 'action': [ | 193 'action': [ |
194 'download_from_google_storage', | 194 'download_from_google_storage', |
195 '-q', | 195 '-q', |
196 '--no_auth', | 196 '--no_auth', |
197 '--no_resume', | 197 '--no_resume', |
198 '--bucket', | 198 '--bucket', |
199 'dartino-dependencies', | 199 'dartino-dependencies', |
200 '-d', | 200 '-d', |
201 'sdk/pkg/mdns/lib/native', | 201 'sdk/pkg/mdns/lib/src', |
202 ], | 202 ], |
203 }, | 203 }, |
204 { | 204 { |
205 'name': 'power_management_native_extension_binaries', | 205 'name': 'power_management_native_extension_binaries', |
206 'pattern': '.', | 206 'pattern': '.', |
207 'action': [ | 207 'action': [ |
208 'download_from_google_storage', | 208 'download_from_google_storage', |
209 '-q', | 209 '-q', |
210 '--no_auth', | 210 '--no_auth', |
211 '--no_resume', | 211 '--no_resume', |
212 '--bucket', | 212 '--bucket', |
213 'dartino-dependencies', | 213 'dartino-dependencies', |
214 '-d', | 214 '-d', |
215 'sdk/pkg/power_management/lib/native', | 215 'sdk/pkg/power_management/lib/src', |
216 ], | 216 ], |
217 }, | 217 }, |
218 { | 218 { |
219 'name': 'serial_port_binaries', | 219 'name': 'serial_port_binaries', |
220 'pattern': '.', | 220 'pattern': '.', |
221 'action': [ | 221 'action': [ |
222 'download_from_google_storage', | 222 'download_from_google_storage', |
223 '-q', | 223 '-q', |
224 '--no_auth', | 224 '--no_auth', |
225 '--no_resume', | 225 '--no_resume', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 'name': 'GYP', | 408 'name': 'GYP', |
409 'pattern': '.', | 409 'pattern': '.', |
410 'action': [ | 410 'action': [ |
411 'python', | 411 'python', |
412 'sdk/tools/run-ninja.py', | 412 'sdk/tools/run-ninja.py', |
413 '-C', | 413 '-C', |
414 'sdk', | 414 'sdk', |
415 ], | 415 ], |
416 }, | 416 }, |
417 ] | 417 ] |
OLD | NEW |