| OLD | NEW |
| 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Fletch 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 '--no_resume', | 128 '--no_resume', |
| 129 '--bucket', | 129 '--bucket', |
| 130 'dart-dependencies-fletch', | 130 'dart-dependencies-fletch', |
| 131 '-d', | 131 '-d', |
| 132 '-r', | 132 '-r', |
| 133 '--auto_platform', | 133 '--auto_platform', |
| 134 'fletch/tools/testing/bin', | 134 'fletch/tools/testing/bin', |
| 135 ], | 135 ], |
| 136 }, | 136 }, |
| 137 { | 137 { |
| 138 'name': 'mdns_native_extension_binaries', | |
| 139 'pattern': '.', | |
| 140 'action': [ | |
| 141 'download_from_google_storage', | |
| 142 '--no_auth', | |
| 143 '--no_resume', | |
| 144 '--bucket', | |
| 145 'dart-dependencies-fletch', | |
| 146 '-d', | |
| 147 'fletch/pkg/mdns/lib/native', | |
| 148 ], | |
| 149 }, | |
| 150 { | |
| 151 'name': 'third_party_qemu', | 138 'name': 'third_party_qemu', |
| 152 'pattern': '.', | 139 'pattern': '.', |
| 153 'action': [ | 140 'action': [ |
| 154 'download_from_google_storage', | 141 'download_from_google_storage', |
| 155 '--no_auth', | 142 '--no_auth', |
| 156 '--no_resume', | 143 '--no_resume', |
| 157 '--bucket', | 144 '--bucket', |
| 158 'dart-dependencies-fletch', | 145 'dart-dependencies-fletch', |
| 159 '-d', | 146 '-d', |
| 160 '-r', | 147 '-r', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 189 ], | 176 ], |
| 190 }, | 177 }, |
| 191 { | 178 { |
| 192 'name': 'GYP', | 179 'name': 'GYP', |
| 193 'pattern': '.', | 180 'pattern': '.', |
| 194 'action': [ | 181 'action': [ |
| 195 'ninja', '-C', 'fletch', | 182 'ninja', '-C', 'fletch', |
| 196 ], | 183 ], |
| 197 }, | 184 }, |
| 198 ] | 185 ] |
| OLD | NEW |