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 { |
138 'name': 'third_party_qemu', | 151 'name': 'third_party_qemu', |
139 'pattern': '.', | 152 'pattern': '.', |
140 'action': [ | 153 'action': [ |
141 'download_from_google_storage', | 154 'download_from_google_storage', |
142 '--no_auth', | 155 '--no_auth', |
143 '--no_resume', | 156 '--no_resume', |
144 '--bucket', | 157 '--bucket', |
145 'dart-dependencies-fletch', | 158 'dart-dependencies-fletch', |
146 '-d', | 159 '-d', |
147 '-r', | 160 '-r', |
(...skipping 28 matching lines...) Expand all Loading... |
176 ], | 189 ], |
177 }, | 190 }, |
178 { | 191 { |
179 'name': 'GYP', | 192 'name': 'GYP', |
180 'pattern': '.', | 193 'pattern': '.', |
181 'action': [ | 194 'action': [ |
182 'ninja', '-C', 'fletch', | 195 'ninja', '-C', 'fletch', |
183 ], | 196 ], |
184 }, | 197 }, |
185 ] | 198 ] |
OLD | NEW |