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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 "@132604f107368f617a3073ba2d515b78641ceeed", | 507 "@132604f107368f617a3073ba2d515b78641ceeed", |
508 | 508 |
509 # Used on Linux only. CrOS already has a copy. | 509 # Used on Linux only. CrOS already has a copy. |
510 "src/third_party/cros_dbus_cplusplus/source": | 510 "src/third_party/cros_dbus_cplusplus/source": |
511 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 511 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
512 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 512 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
513 | 513 |
514 # For Linux and Chromium OS. | 514 # For Linux and Chromium OS. |
515 "src/third_party/cros_system_api": | 515 "src/third_party/cros_system_api": |
516 Var("chromiumos_git") + "/platform/system_api.git" + | 516 Var("chromiumos_git") + "/platform/system_api.git" + |
517 "@1a1724c66ebed6cca383d8fd0d23ca9b29ef80a3", | 517 "@bbd2045029173fcde05fb26bdc5f6b4ed1c284a4", |
518 | 518 |
519 # Note that this is different from Android's freetype repo. | 519 # Note that this is different from Android's freetype repo. |
520 "src/third_party/freetype2/src": | 520 "src/third_party/freetype2/src": |
521 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 521 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
522 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 522 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
523 | 523 |
524 # Build tools for targeting ChromeOS. | 524 # Build tools for targeting ChromeOS. |
525 "src/third_party/chromite": | 525 "src/third_party/chromite": |
526 Var("chromiumos_git") + "/chromite.git" + | 526 Var("chromiumos_git") + "/chromite.git" + |
527 "@785fedc51fc430445d8f397440012ea3b489bac9", | 527 "@785fedc51fc430445d8f397440012ea3b489bac9", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
674 "pattern": ".", | 674 "pattern": ".", |
675 "action": ["python", "src/build/gyp_chromium"], | 675 "action": ["python", "src/build/gyp_chromium"], |
676 }, | 676 }, |
677 { | 677 { |
678 # Check for landmines (reasons to clobber the build). | 678 # Check for landmines (reasons to clobber the build). |
679 "pattern": ".", | 679 "pattern": ".", |
680 "action": ["python", "src/build/landmines.py"], | 680 "action": ["python", "src/build/landmines.py"], |
681 }, | 681 }, |
682 ] | 682 ] |
OLD | NEW |