| 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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 540 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
| 541 | 541 |
| 542 # For Linux and Chromium OS. | 542 # For Linux and Chromium OS. |
| 543 "src/third_party/cros_system_api": | 543 "src/third_party/cros_system_api": |
| 544 Var("chromiumos_git") + "/platform/system_api.git" + | 544 Var("chromiumos_git") + "/platform/system_api.git" + |
| 545 "@ab0914ff00db279c5a3599bdf6a19ba1e3c44634", | 545 "@ab0914ff00db279c5a3599bdf6a19ba1e3c44634", |
| 546 }, | 546 }, |
| 547 "android": { | 547 "android": { |
| 548 "src/third_party/android_tools": | 548 "src/third_party/android_tools": |
| 549 Var("chromium_git") + "/android_tools.git" + | 549 Var("chromium_git") + "/android_tools.git" + |
| 550 "@704c8ddee726aabe0e78bb88545972d2cf298190", | 550 "@fd3cfb745f17fde04c96f28c7ae748720604dd8b", |
| 551 | 551 |
| 552 "src/third_party/aosp": | 552 "src/third_party/aosp": |
| 553 "/trunk/deps/third_party/aosp@148330", | 553 "/trunk/deps/third_party/aosp@148330", |
| 554 | 554 |
| 555 "src/third_party/apache-mime4j": | 555 "src/third_party/apache-mime4j": |
| 556 "/trunk/deps/third_party/apache-mime4j@170888", | 556 "/trunk/deps/third_party/apache-mime4j@170888", |
| 557 | 557 |
| 558 "src/third_party/findbugs": | 558 "src/third_party/findbugs": |
| 559 "/trunk/deps/third_party/findbugs@163586", | 559 "/trunk/deps/third_party/findbugs@163586", |
| 560 | 560 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 662 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 663 "pattern": ".", | 663 "pattern": ".", |
| 664 "action": ["python", "src/build/gyp_chromium"], | 664 "action": ["python", "src/build/gyp_chromium"], |
| 665 }, | 665 }, |
| 666 { | 666 { |
| 667 # Check for landmines (reasons to clobber the build). | 667 # Check for landmines (reasons to clobber the build). |
| 668 "pattern": ".", | 668 "pattern": ".", |
| 669 "action": ["python", "src/build/landmines.py"], | 669 "action": ["python", "src/build/landmines.py"], |
| 670 }, | 670 }, |
| 671 ] | 671 ] |
| OLD | NEW |