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 "@6ead34613a4a1ac1911af2ecbbddd204d15305ab", | 553 "@6ead34613a4a1ac1911af2ecbbddd204d15305ab", |
554 | 554 |
555 # Note that this is different from Android's freetype repo. | 555 # Note that this is different from Android's freetype repo. |
556 "src/third_party/freetype2/src": | 556 "src/third_party/freetype2/src": |
557 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 557 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
558 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 558 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
559 }, | 559 }, |
560 "android": { | 560 "android": { |
561 "src/third_party/android_tools": | 561 "src/third_party/android_tools": |
562 Var("chromium_git") + "/android_tools.git" + | 562 Var("chromium_git") + "/android_tools.git" + |
563 "@c92dbd7072f264fc90434221b01ab093f807bba6", | 563 "@4745ecc25a0a36c24e355ee3e6bd87f63b6a48c7", |
564 | 564 |
565 "src/third_party/aosp": | 565 "src/third_party/aosp": |
566 "/trunk/deps/third_party/aosp@148330", | 566 "/trunk/deps/third_party/aosp@148330", |
567 | 567 |
568 "src/third_party/apache-mime4j": | 568 "src/third_party/apache-mime4j": |
569 "/trunk/deps/third_party/apache-mime4j@170888", | 569 "/trunk/deps/third_party/apache-mime4j@170888", |
570 | 570 |
571 "src/third_party/findbugs": | 571 "src/third_party/findbugs": |
572 "/trunk/deps/third_party/findbugs@163586", | 572 "/trunk/deps/third_party/findbugs@163586", |
573 | 573 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
676 "pattern": ".", | 676 "pattern": ".", |
677 "action": ["python", "src/build/gyp_chromium"], | 677 "action": ["python", "src/build/gyp_chromium"], |
678 }, | 678 }, |
679 { | 679 { |
680 # Check for landmines (reasons to clobber the build). | 680 # Check for landmines (reasons to clobber the build). |
681 "pattern": ".", | 681 "pattern": ".", |
682 "action": ["python", "src/build/landmines.py"], | 682 "action": ["python", "src/build/landmines.py"], |
683 }, | 683 }, |
684 ] | 684 ] |
OLD | NEW |