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

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

Issue 240423004: Version 1.3.2 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.3/
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « dart/tools/VERSION ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import gclient_utils 1 1;2cimport gclient_utils
ricow1 2014/04/16 18:20:02 this was pretty stupid by me
2 import os 2 import os
3 3
4 path = gclient_utils.FindGclientRoot(os.getcwd()) 4 path = gclient_utils.FindGclientRoot(os.getcwd())
5 execfile(os.path.join(path, 'dartium.deps', 'DEPS.chromium')) # Include proper C hromium DEPS. 5 execfile(os.path.join(path, 'dartium.deps', 'DEPS.chromium')) # Include proper C hromium DEPS.
6 6
7 # Now we need to override some settings and add some new ones. 7 # Now we need to override some settings and add some new ones.
8 8
9 vars.update({ 9 vars.update({
10 "chromium_url": "http://src.chromium.org/svn", 10 "chromium_url": "http://src.chromium.org/svn",
11 "dartium_base": "http://src.chromium.org", 11 "dartium_base": "http://src.chromium.org",
12 "dartium_chromium_branch": "/chrome/branches/dart/1847/src", 12 "dartium_chromium_branch": "/chrome/branches/dart/1847/src",
13 "dartium_chromium_revision": "258268", 13 "dartium_chromium_revision": "258268",
14 "chromium_base_revision": "251904", 14 "chromium_base_revision": "251904",
15 "dart_branch": "/branches/1.3", 15 "dart_branch": "/branches/1.3",
16 "dartium_webkit_branch": "/blink/branches/dart/1847_stable", 16 "dartium_webkit_branch": "/blink/branches/dart/1847_stable",
17 "dartium_webkit_revision": "171707", 17 "dartium_webkit_revision": "171778",
18 "bootstrap_css_rev" : "@28387", 18 "bootstrap_css_rev" : "@28387",
19 19
20 "co19_rev": "@672", 20 "co19_rev": "@672",
21 }) 21 })
22 22
23 def massage_deps(deps): 23 def massage_deps(deps):
24 for key, value in deps.items(): 24 for key, value in deps.items():
25 if value is None: continue 25 if value is None: continue
26 26
27 if value.startswith('/trunk'): 27 if value.startswith('/trunk'):
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 hooks.append({ 76 hooks.append({
77 # Set the revision for a lazily downloaded reference build of chromium, 77 # Set the revision for a lazily downloaded reference build of chromium,
78 # with which to run perf tests. 78 # with which to run perf tests.
79 'name': 'set_reference_build', 79 'name': 'set_reference_build',
80 'pattern': '.', 80 'pattern': '.',
81 'action': ['python', 81 'action': ['python',
82 'src/dart/tools/bots/set_reference_build_revision.py', 82 'src/dart/tools/bots/set_reference_build_revision.py',
83 Var('chromium_base_revision')], 83 Var('chromium_base_revision')],
84 }) 84 })
OLDNEW
« no previous file with comments | « dart/tools/VERSION ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698