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

Side by Side Diff: tools/deps/dartium.deps/DEPS

Issue 2903603002: Fix some issues with buildbot recipe change. (Closed)
Patch Set: Fix promote script Created 3 years, 7 months 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 | « tools/bots/linux_distribution_support.py ('k') | tools/promote.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 import gclient_utils 2 import gclient_utils
3 import os 3 import os
4 4
5 path = gclient_utils.FindGclientRoot(os.getcwd()) 5 path = gclient_utils.FindGclientRoot(os.getcwd())
6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS. 6 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS.
7 7
8 # Now we need to override some settings and add some new ones. 8 # Now we need to override some settings and add some new ones.
9 9
10 vars.update({ 10 vars.update({
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 deps_os['unix'].update({ 184 deps_os['unix'].update({
185 "src/chrome/tools/test/reference_build/chrome_linux": None 185 "src/chrome/tools/test/reference_build/chrome_linux": None
186 }) 186 })
187 187
188 hooks[0:0] = [{ 188 hooks[0:0] = [{
189 "pattern": "dart", 189 "pattern": "dart",
190 "action": ["python", "src/dart/tools/dartium/generate_dart_vm_version.py"], 190 "action": ["python", "src/dart/tools/dartium/generate_dart_vm_version.py"],
191 }] 191 }]
192 192
193 hooks.append({ 193 hooks.append({
194 # Set the revision for a lazily downloaded reference build of chromium,
195 # with which to run perf tests.
196 'name': 'set_reference_build',
197 'pattern': '.',
198 'action': ['python',
199 'src/dart/tools/bots/set_reference_build_revision.py',
200 Var('chromium_base_revision')],
201 })
202 #hooks.append({
203 # Peg the blink version number in LASTCHANGE.blink to be the upstream
204 # webkit_revision number so that chrome remote devtools pulls assets from
205 # the right place.
206 # "name": "lastchange",
207 # "pattern": ".",
208 # "action": ["python", "-c",
209 # "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
210 # Var('webkit_revision') + "\\n')" ],
211 #})
212 hooks.append({
213 "name": "checked_in_dart_sdks", 194 "name": "checked_in_dart_sdks",
214 "pattern": ".", 195 "pattern": ".",
215 "action": [ 196 "action": [
216 "download_from_google_storage", 197 "download_from_google_storage",
217 "--no_auth", 198 "--no_auth",
218 "--no_resume", 199 "--no_resume",
219 "--bucket", 200 "--bucket",
220 "dart-dependencies", 201 "dart-dependencies",
221 "--recursive", 202 "--recursive",
222 "--auto_platform", 203 "--auto_platform",
(...skipping 11 matching lines...) Expand all
234 "download_from_google_storage", 215 "download_from_google_storage",
235 "--no_auth", 216 "--no_auth",
236 "--no_resume", 217 "--no_resume",
237 "--bucket", 218 "--bucket",
238 "dart-dependencies", 219 "dart-dependencies",
239 "--extract", 220 "--extract",
240 "-s", 221 "-s",
241 "src/dart/third_party/pkg/unittest.tar.gz.sha1", 222 "src/dart/third_party/pkg/unittest.tar.gz.sha1",
242 ], 223 ],
243 }) 224 })
OLDNEW
« no previous file with comments | « tools/bots/linux_distribution_support.py ('k') | tools/promote.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698