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

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

Issue 1145623002: Don't pull src/dart as part of dartium checkou (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 | « no previous file | 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 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, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium DEPS. 5 execfile(os.path.join(path, 'src', 'dart', 'tools', 'deps', 'dartium.deps', 'DEP S.chromium')) # Include proper Chromium 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",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 deps.update({ 74 deps.update({
75 "src": 75 "src":
76 Var("chromium_git") + "/dart/dartium/src.git" + "@" + 76 Var("chromium_git") + "/dart/dartium/src.git" + "@" +
77 Var("dartium_chromium_commit"), 77 Var("dartium_chromium_commit"),
78 78
79 "src/third_party/WebKit": 79 "src/third_party/WebKit":
80 Var("dartium_base") + Var("dartium_webkit_branch") + "@" + 80 Var("dartium_base") + Var("dartium_webkit_branch") + "@" +
81 Var("dartium_webkit_revision"), 81 Var("dartium_webkit_revision"),
82 82
83 "src/dart":
84 "git@github.com:dart-lang/sdk.git",
85
86 # Needed to run pub. 83 # Needed to run pub.
87 "src/dart/third_party/pkg/barback": 84 "src/dart/third_party/pkg/barback":
88 "https://github.com/dart-lang/barback.git" + Var("barback_rev"), 85 "https://github.com/dart-lang/barback.git" + Var("barback_rev"),
89 "src/dart/third_party/pkg/crypto": 86 "src/dart/third_party/pkg/crypto":
90 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"), 87 "https://github.com/dart-lang/crypto.git" + Var("crypto_rev"),
91 "src/dart/third_party/pkg/collection": 88 "src/dart/third_party/pkg/collection":
92 "https://github.com/dart-lang/collection.git" + Var("collection_rev"), 89 "https://github.com/dart-lang/collection.git" + Var("collection_rev"),
93 "src/dart/third_party/pkg/glob": 90 "src/dart/third_party/pkg/glob":
94 "https://github.com/dart-lang/glob.git" + Var("glob_rev"), 91 "https://github.com/dart-lang/glob.git" + Var("glob_rev"),
95 "src/dart/third_party/pkg/json_rpc_2": 92 "src/dart/third_party/pkg/json_rpc_2":
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 hooks.append({ 192 hooks.append({
196 # Peg the blink version number in LASTCHANGE.blink to be the upstream 193 # Peg the blink version number in LASTCHANGE.blink to be the upstream
197 # webkit_revision number so that chrome remote devtools pulls assets from 194 # webkit_revision number so that chrome remote devtools pulls assets from
198 # the right place. 195 # the right place.
199 "name": "lastchange", 196 "name": "lastchange",
200 "pattern": ".", 197 "pattern": ".",
201 "action": ["python", "-c", 198 "action": ["python", "-c",
202 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + 199 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
203 Var('webkit_revision') + "\\n')" ], 200 Var('webkit_revision') + "\\n')" ],
204 }) 201 })
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698