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

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

Issue 1147633002: Manually roll deps for dartium to fix .gitignore (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",
11 "dartium_base": "http://src.chromium.org", 11 "dartium_base": "http://src.chromium.org",
12 "dartium_chromium_branch": "master", 12 "dartium_chromium_branch": "master",
13 "dartium_chromium_commit": "5daf3bceac78c2038362cda6250e3201e5899ece", 13 "dartium_chromium_commit": "62a7524d4f71c9e0858d24b0aa1bbff3a2d09bff",
14 "chromium_base_revision": "297060", 14 "chromium_base_revision": "297060",
15 "dartium_webkit_branch": "/blink/branches/dart/dartium", 15 "dartium_webkit_branch": "/blink/branches/dart/dartium",
16 "dartium_webkit_revision": "195133", 16 "dartium_webkit_revision": "195133",
17 17
18 "args_tag": "@0.13.0", 18 "args_tag": "@0.13.0",
19 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51", 19 "barback_rev" : "@29ee90dbcf77cfd64632fa2797a4c8a4f29a4b51",
20 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", 20 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e",
21 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", 21 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d",
22 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", 22 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd",
23 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7", 23 "http_rev" : "@9b93e1542c753090c50b46ef1592d44bc858bfe7",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 hooks.append({ 192 hooks.append({
193 # 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
194 # webkit_revision number so that chrome remote devtools pulls assets from 194 # webkit_revision number so that chrome remote devtools pulls assets from
195 # the right place. 195 # the right place.
196 "name": "lastchange", 196 "name": "lastchange",
197 "pattern": ".", 197 "pattern": ".",
198 "action": ["python", "-c", 198 "action": ["python", "-c",
199 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" + 199 "f=open('src/build/util/LASTCHANGE.blink','w'); f.write('LASTCHANGE=" +
200 Var('webkit_revision') + "\\n')" ], 200 Var('webkit_revision') + "\\n')" ],
201 }) 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