Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: DEPS

Issue 1407123010: Extend the mDNS package with a native extension used on Mac OS (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Addressed review comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | build.ninja » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | build.ninja » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698