| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "src/third_party/pyelftools": | 447 "src/third_party/pyelftools": |
| 448 Var("chromiumos_git") + "/third_party/pyelftools.git" + | 448 Var("chromiumos_git") + "/third_party/pyelftools.git" + |
| 449 "@bdc1d380acd88d4bfaf47265008091483b0d614e", | 449 "@bdc1d380acd88d4bfaf47265008091483b0d614e", |
| 450 | 450 |
| 451 "src/third_party/undoview": | 451 "src/third_party/undoview": |
| 452 "/trunk/deps/third_party/undoview@119694", | 452 "/trunk/deps/third_party/undoview@119694", |
| 453 }, | 453 }, |
| 454 "android": { | 454 "android": { |
| 455 "src/third_party/android_tools": | 455 "src/third_party/android_tools": |
| 456 Var("chromium_git") + "/android_tools.git" + | 456 Var("chromium_git") + "/android_tools.git" + |
| 457 "@eda719cf5bf102f38b17fe4f583fbc5fde581be6", | 457 "@881586ca84f2fb8e82faa9c8d645416d175d0f01", |
| 458 | 458 |
| 459 "src/third_party/aosp": | 459 "src/third_party/aosp": |
| 460 "/trunk/deps/third_party/aosp@148330", | 460 "/trunk/deps/third_party/aosp@148330", |
| 461 | 461 |
| 462 "src/third_party/apache-mime4j": | 462 "src/third_party/apache-mime4j": |
| 463 "/trunk/deps/third_party/apache-mime4j@170888", | 463 "/trunk/deps/third_party/apache-mime4j@170888", |
| 464 | 464 |
| 465 "src/third_party/findbugs": | 465 "src/third_party/findbugs": |
| 466 "/trunk/deps/third_party/findbugs@163586", | 466 "/trunk/deps/third_party/findbugs@163586", |
| 467 | 467 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 "pattern": ".", | 618 "pattern": ".", |
| 619 "action": ["python", "src/build/gyp_chromium"], | 619 "action": ["python", "src/build/gyp_chromium"], |
| 620 }, | 620 }, |
| 621 { | 621 { |
| 622 # Check for landmines (reasons to clobber the build). | 622 # Check for landmines (reasons to clobber the build). |
| 623 "name": "landmines", | 623 "name": "landmines", |
| 624 "pattern": ".", | 624 "pattern": ".", |
| 625 "action": ["python", "src/build/landmines.py"], | 625 "action": ["python", "src/build/landmines.py"], |
| 626 }, | 626 }, |
| 627 ] | 627 ] |
| OLD | NEW |