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

Side by Side Diff: trunk/src/DEPS

Issue 13878025: Revert 195273 "Switching to gyp revision 1617." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 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 | « 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 # When adding a new dependency, please update the top-level .gitignore file 1 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory. 2 # to list the dependency's destination directory.
3 3
4 vars = { 4 vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it. 5 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry. 6 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 7 "googlecode_url": "http://%s.googlecode.com/svn",
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
9 "webkit_trunk": "http://src.chromium.org/blink/trunk", 9 "webkit_trunk": "http://src.chromium.org/blink/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "src/third_party/leveldatabase/src": 110 "src/third_party/leveldatabase/src":
111 (Var("googlecode_url") % "leveldb") + "/trunk@72", 111 (Var("googlecode_url") % "leveldb") + "/trunk@72",
112 112
113 "src/third_party/snappy/src": 113 "src/third_party/snappy/src":
114 (Var("googlecode_url") % "snappy") + "/trunk@63", 114 (Var("googlecode_url") % "snappy") + "/trunk@63",
115 115
116 "src/tools/grit": 116 "src/tools/grit":
117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115", 117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115",
118 118
119 "src/tools/gyp": 119 "src/tools/gyp":
120 (Var("googlecode_url") % "gyp") + "/trunk@1617", 120 (Var("googlecode_url") % "gyp") + "/trunk@1611",
121 121
122 "src/tools/swarm_client": 122 "src/tools/swarm_client":
123 "/trunk/tools/swarm_client@" + Var("swarm_revision"), 123 "/trunk/tools/swarm_client@" + Var("swarm_revision"),
124 124
125 "src/v8": 125 "src/v8":
126 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), 126 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"),
127 127
128 "src/native_client": 128 "src/native_client":
129 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), 129 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"),
130 130
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
695 "pattern": ".", 695 "pattern": ".",
696 "action": ["python", "src/build/gyp_chromium"], 696 "action": ["python", "src/build/gyp_chromium"],
697 }, 697 },
698 { 698 {
699 # Check for landmines (reasons to clobber the build). 699 # Check for landmines (reasons to clobber the build).
700 "pattern": ".", 700 "pattern": ".",
701 "action": ["python", "src/build/landmines.py"], 701 "action": ["python", "src/build/landmines.py"],
702 }, 702 },
703 ] 703 ]
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