| OLD | NEW |
| 1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
| 2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
| 3 | 3 |
| 4 vars = { | 4 vars = { |
| 5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
| 7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
| 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
| 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "@132604f107368f617a3073ba2d515b78641ceeed", | 556 "@132604f107368f617a3073ba2d515b78641ceeed", |
| 557 | 557 |
| 558 # Used on Linux only. CrOS already has a copy. | 558 # Used on Linux only. CrOS already has a copy. |
| 559 "src/third_party/cros_dbus_cplusplus/source": | 559 "src/third_party/cros_dbus_cplusplus/source": |
| 560 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 560 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
| 561 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 561 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
| 562 | 562 |
| 563 # For Linux and Chromium OS. | 563 # For Linux and Chromium OS. |
| 564 "src/third_party/cros_system_api": | 564 "src/third_party/cros_system_api": |
| 565 Var("chromiumos_git") + "/platform/system_api.git" + | 565 Var("chromiumos_git") + "/platform/system_api.git" + |
| 566 "@705ea59383ffed988873427b89dd6ef87b982fdb", | 566 "@330a47fba93b9acef48503646413554cd5053b7a", |
| 567 | 567 |
| 568 # Note that this is different from Android's freetype repo. | 568 # Note that this is different from Android's freetype repo. |
| 569 "src/third_party/freetype2/src": | 569 "src/third_party/freetype2/src": |
| 570 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 570 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
| 571 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 571 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 572 | 572 |
| 573 # Build tools for targeting ChromeOS. | 573 # Build tools for targeting ChromeOS. |
| 574 "src/third_party/chromite": | 574 "src/third_party/chromite": |
| 575 Var("chromiumos_git") + "/chromite.git" + | 575 Var("chromiumos_git") + "/chromite.git" + |
| 576 "@1d8a25be640e27cbac454995239cd71f34b5f613", | 576 "@1d8a25be640e27cbac454995239cd71f34b5f613", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 705 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 706 "pattern": ".", | 706 "pattern": ".", |
| 707 "action": ["python", "src/build/gyp_chromium"], | 707 "action": ["python", "src/build/gyp_chromium"], |
| 708 }, | 708 }, |
| 709 { | 709 { |
| 710 # Check for landmines (reasons to clobber the build). | 710 # Check for landmines (reasons to clobber the build). |
| 711 "pattern": ".", | 711 "pattern": ".", |
| 712 "action": ["python", "src/build/landmines.py"], | 712 "action": ["python", "src/build/landmines.py"], |
| 713 }, | 713 }, |
| 714 ] | 714 ] |
| OLD | NEW |