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": "93781", | 7 "webkit_revision": "93781", |
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": "6539", | 10 "nacl_revision": "6539", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "src/sdch/open-vcdiff": | 54 "src/sdch/open-vcdiff": |
55 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", | 55 (Var("googlecode_url") % "open-vcdiff") + "/trunk@28", |
56 | 56 |
57 "src/testing/gtest": | 57 "src/testing/gtest": |
58 (Var("googlecode_url") % "googletest") + "/trunk@560", | 58 (Var("googlecode_url") % "googletest") + "/trunk@560", |
59 | 59 |
60 "src/testing/gmock": | 60 "src/testing/gmock": |
61 (Var("googlecode_url") % "googlemock") + "/trunk@374", | 61 (Var("googlecode_url") % "googlemock") + "/trunk@374", |
62 | 62 |
63 "src/third_party/angle": | 63 "src/third_party/angle": |
64 (Var("googlecode_url") % "angleproject") + "/trunk@738", | 64 (Var("googlecode_url") % "angleproject") + "/trunk@731", |
65 | 65 |
66 # Note that this is *not* where we check out WebKit -- this just | 66 # Note that this is *not* where we check out WebKit -- this just |
67 # puts some extra files into place for the real WebKit checkout to | 67 # puts some extra files into place for the real WebKit checkout to |
68 # happen. See lines mentioning "webkit_revision" for the real | 68 # happen. See lines mentioning "webkit_revision" for the real |
69 # WebKit checkout. | 69 # WebKit checkout. |
70 "src/third_party/WebKit": | 70 "src/third_party/WebKit": |
71 "/trunk/deps/third_party/WebKit@76115", | 71 "/trunk/deps/third_party/WebKit@76115", |
72 | 72 |
73 "src/third_party/icu": | 73 "src/third_party/icu": |
74 "/trunk/deps/third_party/icu46@93875", | 74 "/trunk/deps/third_party/icu46@93875", |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 "--file-hash", "linux_x86_newlib", | 415 "--file-hash", "linux_x86_newlib", |
416 Var("nacl_toolchain_linux_x86_newlib_hash"), | 416 Var("nacl_toolchain_linux_x86_newlib_hash"), |
417 ], | 417 ], |
418 }, | 418 }, |
419 { | 419 { |
420 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 420 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
421 "pattern": ".", | 421 "pattern": ".", |
422 "action": ["python", "src/build/gyp_chromium"], | 422 "action": ["python", "src/build/gyp_chromium"], |
423 }, | 423 }, |
424 ] | 424 ] |
OLD | NEW |