| 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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
| 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| 8 "webkit_revision": "108945", | 8 "webkit_revision": "108945", |
| 9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
| 10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 | 377 |
| 378 # Binaries for nacl sdk. | 378 # Binaries for nacl sdk. |
| 379 "src/third_party/nacl_sdk_binaries": | 379 "src/third_party/nacl_sdk_binaries": |
| 380 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 380 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
| 381 }, | 381 }, |
| 382 "mac": { | 382 "mac": { |
| 383 "src/chrome/tools/test/reference_build/chrome_mac": | 383 "src/chrome/tools/test/reference_build/chrome_mac": |
| 384 "/trunk/deps/reference_builds/chrome_mac@89574", | 384 "/trunk/deps/reference_builds/chrome_mac@89574", |
| 385 | 385 |
| 386 "src/third_party/GTM": | 386 "src/third_party/GTM": |
| 387 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@459", | 387 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@516", |
| 388 "src/third_party/pdfsqueeze": | 388 "src/third_party/pdfsqueeze": |
| 389 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 389 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
| 390 "src/third_party/lighttpd": | 390 "src/third_party/lighttpd": |
| 391 "/trunk/deps/third_party/lighttpd@33737", | 391 "/trunk/deps/third_party/lighttpd@33737", |
| 392 | 392 |
| 393 "src/third_party/swig/mac": | 393 "src/third_party/swig/mac": |
| 394 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), | 394 "/trunk/deps/third_party/swig/mac@" + Var("swig_revision"), |
| 395 | 395 |
| 396 "src/rlz": | 396 "src/rlz": |
| 397 (Var("googlecode_url") % "rlz") + "/trunk@" + Var("rlz_revision"), | 397 (Var("googlecode_url") % "rlz") + "/trunk@" + Var("rlz_revision"), |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 "pattern": ".", | 511 "pattern": ".", |
| 512 "action": ["python", "src/build/util/lastchange.py", | 512 "action": ["python", "src/build/util/lastchange.py", |
| 513 "-o", "src/build/util/LASTCHANGE"], | 513 "-o", "src/build/util/LASTCHANGE"], |
| 514 }, | 514 }, |
| 515 { | 515 { |
| 516 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 516 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 517 "pattern": ".", | 517 "pattern": ".", |
| 518 "action": ["python", "src/build/gyp_chromium"], | 518 "action": ["python", "src/build/gyp_chromium"], |
| 519 }, | 519 }, |
| 520 ] | 520 ] |
| OLD | NEW |