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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 | 553 |
554 # For Linux and Chromium OS. | 554 # For Linux and Chromium OS. |
555 "src/third_party/cros_system_api": | 555 "src/third_party/cros_system_api": |
556 Var("chromiumos_git") + "/platform/system_api.git" + | 556 Var("chromiumos_git") + "/platform/system_api.git" + |
557 "@e22943ecb452a3395d8b58ca9c2aaa838afce2d5", | 557 "@e22943ecb452a3395d8b58ca9c2aaa838afce2d5", |
558 | 558 |
559 # Note that this is different from Android's freetype repo. | 559 # Note that this is different from Android's freetype repo. |
560 "src/third_party/freetype2/src": | 560 "src/third_party/freetype2/src": |
561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
562 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 562 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 563 |
| 564 # Build tools for targeting ChromeOS. |
| 565 "src/third_party/chromite": |
| 566 Var("chromiumos_git") + "/chromite.git" + |
| 567 "@1d8a25be640e27cbac454995239cd71f34b5f613", |
| 568 |
| 569 # Dependency of chromite.git. |
| 570 "src/third_party/pyelftools": |
| 571 Var("chromiumos_git") + "/third_party/pyelftools.git" + |
| 572 "@bdc1d380acd88d4bfaf47265008091483b0d614e", |
563 }, | 573 }, |
564 "android": { | 574 "android": { |
565 "src/third_party/android_tools": | 575 "src/third_party/android_tools": |
566 Var("chromium_git") + "/android_tools.git" + | 576 Var("chromium_git") + "/android_tools.git" + |
567 "@02d3db3c400baa959883006dc697c6cbd70c5194", | 577 "@02d3db3c400baa959883006dc697c6cbd70c5194", |
568 | 578 |
569 "src/third_party/aosp": | 579 "src/third_party/aosp": |
570 "/trunk/deps/third_party/aosp@148330", | 580 "/trunk/deps/third_party/aosp@148330", |
571 | 581 |
572 "src/third_party/apache-mime4j": | 582 "src/third_party/apache-mime4j": |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 696 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
687 "pattern": ".", | 697 "pattern": ".", |
688 "action": ["python", "src/build/gyp_chromium"], | 698 "action": ["python", "src/build/gyp_chromium"], |
689 }, | 699 }, |
690 { | 700 { |
691 # Check for landmines (reasons to clobber the build). | 701 # Check for landmines (reasons to clobber the build). |
692 "pattern": ".", | 702 "pattern": ".", |
693 "action": ["python", "src/build/landmines.py"], | 703 "action": ["python", "src/build/landmines.py"], |
694 }, | 704 }, |
695 ] | 705 ] |
OLD | NEW |