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

Side by Side Diff: DEPS

Issue 6241018: Pull in gmock through DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/testing
Patch Set: don't use svn mirror for now Created 9 years, 10 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 | testing/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "76687", 7 "webkit_revision": "76687",
8 "chromium_git": "http://git.chromium.org/git", 8 "chromium_git": "http://git.chromium.org/git",
9 "swig_revision": "69281", 9 "swig_revision": "69281",
10 "nacl_revision": "4209", 10 "nacl_revision": "4209",
(...skipping 15 matching lines...) Expand all
26 26
27 "src/seccompsandbox": 27 "src/seccompsandbox":
28 (Var("googlecode_url") % "seccompsandbox") + "/trunk@153", 28 (Var("googlecode_url") % "seccompsandbox") + "/trunk@153",
29 29
30 "src/sdch/open-vcdiff": 30 "src/sdch/open-vcdiff":
31 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", 31 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28",
32 32
33 "src/testing/gtest": 33 "src/testing/gtest":
34 (Var("googlecode_url") % "googletest") + "/trunk@492", 34 (Var("googlecode_url") % "googletest") + "/trunk@492",
35 35
36 "src/testing/gmock":
37 "http://googlemock.googlecode.com/svn/trunk@300",
Evan Martin 2011/01/27 19:35:44 README.chromium says current revision 282. Does i
Nico 2011/01/27 19:42:21 Yes, it matters. 282 doesn't work. (It got updated
38
36 "src/third_party/angle": 39 "src/third_party/angle":
37 (Var("googlecode_url") % "angleproject") + "/trunk@537", 40 (Var("googlecode_url") % "angleproject") + "/trunk@537",
38 41
39 "src/third_party/WebKit": 42 "src/third_party/WebKit":
40 "/trunk/deps/third_party/WebKit@71605", 43 "/trunk/deps/third_party/WebKit@71605",
41 44
42 "src/third_party/icu": 45 "src/third_party/icu":
43 "/trunk/deps/third_party/icu42@69864", 46 "/trunk/deps/third_party/icu42@69864",
44 47
45 "src/third_party/hunspell": 48 "src/third_party/hunspell":
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 ] 309 ]
307 310
308 311
309 hooks = [ 312 hooks = [
310 { 313 {
311 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 314 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
312 "pattern": ".", 315 "pattern": ".",
313 "action": ["python", "src/build/gyp_chromium"], 316 "action": ["python", "src/build/gyp_chromium"],
314 }, 317 },
315 ] 318 ]
OLDNEW
« no previous file with comments | « no previous file | testing/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698