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 "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": "95596", | 7 "webkit_revision": "95596", |
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": "6736", | 10 "nacl_revision": "6736", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "src/sdch/open-vcdiff": | 56 "src/sdch/open-vcdiff": |
57 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", | 57 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", |
58 | 58 |
59 "src/testing/gtest": | 59 "src/testing/gtest": |
60 (Var("googlecode_url") % "googletest") + "/trunk@560", | 60 (Var("googlecode_url") % "googletest") + "/trunk@560", |
61 | 61 |
62 "src/testing/gmock": | 62 "src/testing/gmock": |
63 (Var("googlecode_url") % "googlemock") + "/trunk@374", | 63 (Var("googlecode_url") % "googlemock") + "/trunk@374", |
64 | 64 |
65 "src/third_party/angle": | 65 "src/third_party/angle": |
66 (Var("googlecode_url") % "angleproject") + "/trunk@754", | 66 (Var("googlecode_url") % "angleproject") + "/trunk@762", |
67 | 67 |
68 # Note that this is *not* where we check out WebKit -- this just | 68 # Note that this is *not* where we check out WebKit -- this just |
69 # puts some extra files into place for the real WebKit checkout to | 69 # puts some extra files into place for the real WebKit checkout to |
70 # happen. See lines mentioning "webkit_revision" for the real | 70 # happen. See lines mentioning "webkit_revision" for the real |
71 # WebKit checkout. | 71 # WebKit checkout. |
72 "src/third_party/WebKit": | 72 "src/third_party/WebKit": |
73 "/trunk/deps/third_party/WebKit@76115", | 73 "/trunk/deps/third_party/WebKit@76115", |
74 | 74 |
75 "src/third_party/icu": | 75 "src/third_party/icu": |
76 "/trunk/deps/third_party/icu46@101184", | 76 "/trunk/deps/third_party/icu46@101184", |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 # which takes ~20s, but clang speeds up builds by more than 20s. | 434 # which takes ~20s, but clang speeds up builds by more than 20s. |
435 "pattern": ".", | 435 "pattern": ".", |
436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], | 436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], |
437 }, | 437 }, |
438 { | 438 { |
439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 439 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
440 "pattern": ".", | 440 "pattern": ".", |
441 "action": ["python", "src/build/gyp_chromium"], | 441 "action": ["python", "src/build/gyp_chromium"], |
442 }, | 442 }, |
443 ] | 443 ] |
OLD | NEW |