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

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

Issue 291113002: Fixup deps files and VERSION file on the 1.4 branch (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.4/
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « deps/clank.deps/DEPS ('k') | deps/standalone.deps/DEPS » ('j') | 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 import gclient_utils
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": "264987", 13 "dartium_chromium_revision": "264987",
14 "chromium_base_revision": "251904", 14 "chromium_base_revision": "251904",
15 "dart_branch": "/trunk", 15 "dart_branch": "/branches/1.4",
16 "dartium_webkit_branch": "/blink/branches/dart/1847", 16 "dartium_webkit_branch": "/blink/branches/dart/1847",
17 "dartium_webkit_revision": "173334", 17 "dartium_webkit_revision": "173334",
18 "bootstrap_css_rev" : "@28387", 18 "bootstrap_css_rev" : "@28387",
19 19
20 "co19_rev": "@722", 20 "co19_rev": "@722",
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
(...skipping 49 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 | « deps/clank.deps/DEPS ('k') | deps/standalone.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698