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": "93717", | 7 "webkit_revision": "93717", |
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": "6499", | 10 "nacl_revision": "6499", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 (Var("googlecode_url") % "google-cache-invalidation-api") + | 87 (Var("googlecode_url") % "google-cache-invalidation-api") + |
88 "/trunk/src/google@135", | 88 "/trunk/src/google@135", |
89 | 89 |
90 "src/third_party/leveldatabase/src": | 90 "src/third_party/leveldatabase/src": |
91 (Var("googlecode_url") % "leveldb") + "/trunk@47", | 91 (Var("googlecode_url") % "leveldb") + "/trunk@47", |
92 | 92 |
93 "src/third_party/snappy/src": | 93 "src/third_party/snappy/src": |
94 (Var("googlecode_url") % "snappy") + "/trunk@37", | 94 (Var("googlecode_url") % "snappy") + "/trunk@37", |
95 | 95 |
96 "src/tools/gyp": | 96 "src/tools/gyp": |
97 (Var("googlecode_url") % "gyp") + "/trunk@1013", | 97 (Var("googlecode_url") % "gyp") + "/trunk@1014", |
98 | 98 |
99 "src/v8": | 99 "src/v8": |
100 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), | 100 (Var("googlecode_url") % "v8") + "/trunk@" + Var("v8_revision"), |
101 | 101 |
102 "src/native_client": | 102 "src/native_client": |
103 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), | 103 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), |
104 | 104 |
105 "src/native_client/src/third_party/ppapi": | 105 "src/native_client/src/third_party/ppapi": |
106 # TODO(brettw) enable the From() line instead when checkdeps is fixed. | 106 # TODO(brettw) enable the From() line instead when checkdeps is fixed. |
107 #From("src/native_client", "native_client/src/third_party/ppapi"), | 107 #From("src/native_client", "native_client/src/third_party/ppapi"), |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
421 "--file-hash", "linux_x86_newlib", | 421 "--file-hash", "linux_x86_newlib", |
422 Var("nacl_toolchain_linux_x86_newlib_hash"), | 422 Var("nacl_toolchain_linux_x86_newlib_hash"), |
423 ], | 423 ], |
424 }, | 424 }, |
425 { | 425 { |
426 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 426 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
427 "pattern": ".", | 427 "pattern": ".", |
428 "action": ["python", "src/build/gyp_chromium"], | 428 "action": ["python", "src/build/gyp_chromium"], |
429 }, | 429 }, |
430 ] | 430 ] |
OLD | NEW |