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": "82942", | 7 "webkit_revision": "82942", |
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": "4559", | 10 "nacl_revision": "4559", |
11 "nacl_tools_revision": "4632", | 11 "nacl_tools_revision": "4632", |
12 "libjingle_revision": "55", | 12 "libjingle_revision": "55", |
13 "libvpx_revision": "76510", | 13 "libvpx_revision": "76510", |
14 "ffmpeg_revision": "79854", | 14 "ffmpeg_revision": "79854", |
15 "skia_revision": "1044", | 15 "skia_revision": "1044", |
16 "v8_revision": "7491", | 16 "v8_revision": "7491", |
17 "libphonenumber_revision": "r156", | |
17 } | 18 } |
18 | 19 |
19 deps = { | 20 deps = { |
20 "src/breakpad/src": | 21 "src/breakpad/src": |
21 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@786", | 22 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@786", |
22 | 23 |
23 "src/build/util/support": | 24 "src/build/util/support": |
24 "/trunk/deps/support@20411", | 25 "/trunk/deps/support@20411", |
25 | 26 |
26 "src/googleurl": | 27 "src/googleurl": |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 | 213 |
213 "src/third_party/flac": | 214 "src/third_party/flac": |
214 "/trunk/deps/third_party/flac@75901", | 215 "/trunk/deps/third_party/flac@75901", |
215 | 216 |
216 # Needed to support nacl browser test jig. | 217 # Needed to support nacl browser test jig. |
217 "src/third_party/pylib": | 218 "src/third_party/pylib": |
218 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 219 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), |
219 "src/third_party/scons-2.0.1": | 220 "src/third_party/scons-2.0.1": |
220 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 221 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + |
221 Var("nacl_tools_revision"), | 222 Var("nacl_tools_revision"), |
223 | |
224 "src/third_party/libphonenumber/cpp": | |
225 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp@" + Var("libphonenu mber_revision"), | |
dhollowa
2011/04/06 15:02:55
nit: 80 cols
GeorgeY
2011/04/07 00:00:39
Fixed, but I think the limit is about source code
| |
222 } | 226 } |
223 | 227 |
224 | 228 |
225 deps_os = { | 229 deps_os = { |
226 "win": { | 230 "win": { |
227 "src/chrome/tools/test/reference_build/chrome": | 231 "src/chrome/tools/test/reference_build/chrome": |
228 "/trunk/deps/reference_builds/chrome@70122", | 232 "/trunk/deps/reference_builds/chrome@70122", |
229 | 233 |
230 "src/third_party/cygwin": | 234 "src/third_party/cygwin": |
231 "/trunk/deps/third_party/cygwin@66844", | 235 "/trunk/deps/third_party/cygwin@66844", |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
345 ] | 349 ] |
346 | 350 |
347 | 351 |
348 hooks = [ | 352 hooks = [ |
349 { | 353 { |
350 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 354 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
351 "pattern": ".", | 355 "pattern": ".", |
352 "action": ["python", "src/build/gyp_chromium"], | 356 "action": ["python", "src/build/gyp_chromium"], |
353 }, | 357 }, |
354 ] | 358 ] |
OLD | NEW |