OLD | NEW |
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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "101035", | 8 "webkit_revision": "101035", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "src/sdch/open-vcdiff": | 53 "src/sdch/open-vcdiff": |
54 (Var("googlecode_url") % "open-vcdiff") + "/trunk@40", | 54 (Var("googlecode_url") % "open-vcdiff") + "/trunk@40", |
55 | 55 |
56 "src/testing/gtest": | 56 "src/testing/gtest": |
57 (Var("googlecode_url") % "googletest") + "/trunk@560", | 57 (Var("googlecode_url") % "googletest") + "/trunk@560", |
58 | 58 |
59 "src/testing/gmock": | 59 "src/testing/gmock": |
60 (Var("googlecode_url") % "googlemock") + "/trunk@374", | 60 (Var("googlecode_url") % "googlemock") + "/trunk@374", |
61 | 61 |
62 "src/third_party/angle": | 62 "src/third_party/angle": |
63 (Var("googlecode_url") % "angleproject") + "/trunk@887", | 63 (Var("googlecode_url") % "angleproject") + "/trunk@889", |
64 | 64 |
65 # Note that this is *not* where we check out WebKit -- this just | 65 # Note that this is *not* where we check out WebKit -- this just |
66 # puts some extra files into place for the real WebKit checkout to | 66 # puts some extra files into place for the real WebKit checkout to |
67 # happen. See lines mentioning "webkit_revision" for the real | 67 # happen. See lines mentioning "webkit_revision" for the real |
68 # WebKit checkout. | 68 # WebKit checkout. |
69 "src/third_party/WebKit": | 69 "src/third_party/WebKit": |
70 "/trunk/deps/third_party/WebKit@76115", | 70 "/trunk/deps/third_party/WebKit@76115", |
71 | 71 |
72 "src/third_party/icu": | 72 "src/third_party/icu": |
73 "/trunk/deps/third_party/icu46@107982", | 73 "/trunk/deps/third_party/icu46@107982", |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 # which takes ~20s, but clang speeds up builds by more than 20s. | 439 # which takes ~20s, but clang speeds up builds by more than 20s. |
440 "pattern": ".", | 440 "pattern": ".", |
441 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 441 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
442 }, | 442 }, |
443 { | 443 { |
444 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 444 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
445 "pattern": ".", | 445 "pattern": ".", |
446 "action": ["python", "src/build/gyp_chromium"], | 446 "action": ["python", "src/build/gyp_chromium"], |
447 }, | 447 }, |
448 ] | 448 ] |
OLD | NEW |