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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 "@132604f107368f617a3073ba2d515b78641ceeed", | 522 "@132604f107368f617a3073ba2d515b78641ceeed", |
523 | 523 |
524 # Used on Linux only. CrOS already has a copy. | 524 # Used on Linux only. CrOS already has a copy. |
525 "src/third_party/cros_dbus_cplusplus/source": | 525 "src/third_party/cros_dbus_cplusplus/source": |
526 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 526 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
527 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 527 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
528 | 528 |
529 # For Linux and Chromium OS. | 529 # For Linux and Chromium OS. |
530 "src/third_party/cros_system_api": | 530 "src/third_party/cros_system_api": |
531 Var("chromiumos_git") + "/platform/system_api.git" + | 531 Var("chromiumos_git") + "/platform/system_api.git" + |
532 "@fe53c8f602e01b8da327573db74be384b39695a4", | 532 "@1a1724c66ebed6cca383d8fd0d23ca9b29ef80a3", |
533 | 533 |
534 # Note that this is different from Android's freetype repo. | 534 # Note that this is different from Android's freetype repo. |
535 "src/third_party/freetype2/src": | 535 "src/third_party/freetype2/src": |
536 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 536 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
537 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 537 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
538 | 538 |
539 # Build tools for targeting ChromeOS. | 539 # Build tools for targeting ChromeOS. |
540 "src/third_party/chromite": | 540 "src/third_party/chromite": |
541 Var("chromiumos_git") + "/chromite.git" + | 541 Var("chromiumos_git") + "/chromite.git" + |
542 "@785fedc51fc430445d8f397440012ea3b489bac9", | 542 "@785fedc51fc430445d8f397440012ea3b489bac9", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 680 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
681 "pattern": ".", | 681 "pattern": ".", |
682 "action": ["python", "src/build/gyp_chromium"], | 682 "action": ["python", "src/build/gyp_chromium"], |
683 }, | 683 }, |
684 { | 684 { |
685 # Check for landmines (reasons to clobber the build). | 685 # Check for landmines (reasons to clobber the build). |
686 "pattern": ".", | 686 "pattern": ".", |
687 "action": ["python", "src/build/landmines.py"], | 687 "action": ["python", "src/build/landmines.py"], |
688 }, | 688 }, |
689 ] | 689 ] |
OLD | NEW |