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

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

Issue 11469030: Removed the 'touch_version.py' runhook in the DEPS file (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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/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",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 Var("multivm_url") + "/tools@" + Var("dartium_tools_revision"), 48 Var("multivm_url") + "/tools@" + Var("dartium_tools_revision"),
49 }) 49 })
50 50
51 hooks[-1:-1] = [{ 51 hooks[-1:-1] = [{
52 "pattern": ".", 52 "pattern": ".",
53 "action": ["python", "src/dartium_tools/export_overrides.py"], 53 "action": ["python", "src/dartium_tools/export_overrides.py"],
54 }, 54 },
55 { 55 {
56 "pattern": "dart", 56 "pattern": "dart",
57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"], 57 "action": ["python", "src/dartium_tools/generate_dart_vm_version.py"],
58 },
59 {
60 # A change to any file causes an updated modification time for VERSION
61 # so that the Dart VM version reported through the Dart C API will be
62 # properly setup.
63 "pattern": "dart",
64 "action": ["python", "src/dart/tools/touch_version.py"],
65 }] 58 }]
OLDNEW
« no previous file with comments | « deps/all.deps/DEPS ('k') | deps/standalone.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698