Chromium Code Reviews| 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": "84350", | 7 "webkit_revision": "84350", | 
| 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": "4920", | 10 "nacl_revision": "4920", | 
| 11 "nacl_tools_revision": "4802", | 11 "nacl_tools_revision": "4802", | 
| 12 "libjingle_revision": "55", | 12 "libjingle_revision": "55", | 
| 13 "libvpx_revision": "81610", | 13 "libvpx_revision": "81610", | 
| 14 "ffmpeg_revision": "82126", | 14 "ffmpeg_revision": "82126", | 
| 15 "skia_revision": "1144", | 15 "skia_revision": "1144", | 
| 16 "v8_revision": "7673", | 16 "v8_revision": "7673", | 
| 17 "libphonenumber_revision": "r156", | |
| 
 
dhollowa
2011/04/25 20:09:20
None of the other version numbers have the "r" pre
 
GeorgeY
2011/04/27 00:41:45
AFAIK, it is passed verbatim to svn. Will check.
 
 | |
| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 | 218 | 
| 218 "src/third_party/flac": | 219 "src/third_party/flac": | 
| 219 "/trunk/deps/third_party/flac@75901", | 220 "/trunk/deps/third_party/flac@75901", | 
| 220 | 221 | 
| 221 # Needed to support nacl browser test jig. | 222 # Needed to support nacl browser test jig. | 
| 222 "src/third_party/pylib": | 223 "src/third_party/pylib": | 
| 223 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 224 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), | 
| 224 "src/third_party/scons-2.0.1": | 225 "src/third_party/scons-2.0.1": | 
| 225 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 226 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + | 
| 226 Var("nacl_tools_revision"), | 227 Var("nacl_tools_revision"), | 
| 228 | |
| 229 "src/third_party/libphonenumber/cpp": | |
| 230 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp@" + | |
| 231 Var("libphonenumber_revision"), | |
| 227 } | 232 } | 
| 228 | 233 | 
| 229 | 234 | 
| 230 deps_os = { | 235 deps_os = { | 
| 231 "win": { | 236 "win": { | 
| 232 "src/chrome/tools/test/reference_build/chrome": | 237 "src/chrome/tools/test/reference_build/chrome": | 
| 233 "/trunk/deps/reference_builds/chrome@70122", | 238 "/trunk/deps/reference_builds/chrome@70122", | 
| 234 | 239 | 
| 235 "src/third_party/cygwin": | 240 "src/third_party/cygwin": | 
| 236 "/trunk/deps/third_party/cygwin@66844", | 241 "/trunk/deps/third_party/cygwin@66844", | 
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 350 ] | 355 ] | 
| 351 | 356 | 
| 352 | 357 | 
| 353 hooks = [ | 358 hooks = [ | 
| 354 { | 359 { | 
| 355 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 360 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 
| 356 "pattern": ".", | 361 "pattern": ".", | 
| 357 "action": ["python", "src/build/gyp_chromium"], | 362 "action": ["python", "src/build/gyp_chromium"], | 
| 358 }, | 363 }, | 
| 359 ] | 364 ] | 
| OLD | NEW |