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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 "@132604f107368f617a3073ba2d515b78641ceeed", | 545 "@132604f107368f617a3073ba2d515b78641ceeed", |
546 | 546 |
547 # Used on Linux only. CrOS already has a copy. | 547 # Used on Linux only. CrOS already has a copy. |
548 "src/third_party/cros_dbus_cplusplus/source": | 548 "src/third_party/cros_dbus_cplusplus/source": |
549 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 549 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
550 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 550 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
551 | 551 |
552 # For Linux and Chromium OS. | 552 # For Linux and Chromium OS. |
553 "src/third_party/cros_system_api": | 553 "src/third_party/cros_system_api": |
554 Var("chromiumos_git") + "/platform/system_api.git" + | 554 Var("chromiumos_git") + "/platform/system_api.git" + |
555 "@5d39f60ce99c9133ff5932446ba46a51bf0c2b70", | 555 "@3fabe2002eae665cd108685376d6a07ccbebe533", |
556 | 556 |
557 # Note that this is different from Android's freetype repo. | 557 # Note that this is different from Android's freetype repo. |
558 "src/third_party/freetype2/src": | 558 "src/third_party/freetype2/src": |
559 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 559 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
560 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 560 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
561 | 561 |
562 # Build tools for targeting ChromeOS. | 562 # Build tools for targeting ChromeOS. |
563 "src/third_party/chromite": | 563 "src/third_party/chromite": |
564 Var("chromiumos_git") + "/chromite.git" + | 564 Var("chromiumos_git") + "/chromite.git" + |
565 "@1d8a25be640e27cbac454995239cd71f34b5f613", | 565 "@1d8a25be640e27cbac454995239cd71f34b5f613", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
695 "pattern": ".", | 695 "pattern": ".", |
696 "action": ["python", "src/build/gyp_chromium"], | 696 "action": ["python", "src/build/gyp_chromium"], |
697 }, | 697 }, |
698 { | 698 { |
699 # Check for landmines (reasons to clobber the build). | 699 # Check for landmines (reasons to clobber the build). |
700 "pattern": ".", | 700 "pattern": ".", |
701 "action": ["python", "src/build/landmines.py"], | 701 "action": ["python", "src/build/landmines.py"], |
702 }, | 702 }, |
703 ] | 703 ] |
OLD | NEW |