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

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

Issue 80543002: co19-roll to r667 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/all.deps/DEPS ('k') | deps/dartium.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, 'clank.deps', 'DEPS.chromium')) # Include proper Chr omium DEPS. 5 execfile(os.path.join(path, 'clank.deps', 'DEPS.chromium')) # Include proper Chr omium 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_chromium_url": "http://src.chromium.org/multivm/branches/1650/chrome" , 11 "dartium_chromium_url": "http://src.chromium.org/multivm/branches/1650/chrome" ,
12 "dartium_chromium_revision": "1610", 12 "dartium_chromium_revision": "1610",
13 "clank_url": "https://chrome-internal.googlesource.com/clank/", 13 "clank_url": "https://chrome-internal.googlesource.com/clank/",
14 # This revision number should be kept in sync with the version of clank that 14 # This revision number should be kept in sync with the version of clank that
15 # uses a similar chromium revision to that mentioned just above in 15 # uses a similar chromium revision to that mentioned just above in
16 # "chromium_revision". You can check which might be a good revision at: 16 # "chromium_revision". You can check which might be a good revision at:
17 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1650 17 # https://chrome-internal.googlesource.com/clank/internal/apps/+log/1650
18 "clank_rev": "29a5033df398d9b922296a18954b15b29600aa9c", 18 "clank_rev": "29a5033df398d9b922296a18954b15b29600aa9c",
19 "chrome_internal": "https://chrome-internal.googlesource.com/", 19 "chrome_internal": "https://chrome-internal.googlesource.com/",
20 # The Dart repository URL is pulled out here so that it can be easily 20 # The Dart repository URL is pulled out here so that it can be easily
21 # updated to "https" for committers. 21 # updated to "https" for committers.
22 "dart_branch": "/branches/bleeding_edge", 22 "dart_branch": "/branches/bleeding_edge",
23 "dartium_webkit_trunk": "http://src.chromium.org/multivm/branches/1650/blink", 23 "dartium_webkit_trunk": "http://src.chromium.org/multivm/branches/1650/blink",
24 "dartium_webkit_revision": "1611", 24 "dartium_webkit_revision": "1611",
25 "bootstrap_css_rev" : "@28387", 25 "bootstrap_css_rev" : "@28387",
26 26
27 "co19_rev": "@651", 27 "co19_rev": "@667",
28 }) 28 })
29 29
30 def massage_deps(deps): 30 def massage_deps(deps):
31 for key, value in deps.items(): 31 for key, value in deps.items():
32 if value is None: continue 32 if value is None: continue
33 33
34 if value.startswith('/trunk'): 34 if value.startswith('/trunk'):
35 deps[key] = Var("chromium_url") + value 35 deps[key] = Var("chromium_url") + value
36 continue 36 continue
37 37
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "pattern": ".", 74 "pattern": ".",
75 "action": ["python", "src/dartium_tools/export_overrides.py"], 75 "action": ["python", "src/dartium_tools/export_overrides.py"],
76 }, 76 },
77 { 77 {
78 "pattern": "dart", 78 "pattern": "dart",
79 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 79 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
80 }] 80 }]
81 81
82 target_os = ['android'] 82 target_os = ['android']
83 83
OLDNEW
« no previous file with comments | « deps/all.deps/DEPS ('k') | deps/dartium.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698