| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "src/testing/gtest": | 66 "src/testing/gtest": |
| 67 (Var("googlecode_url") % "googletest") + "/trunk@629", | 67 (Var("googlecode_url") % "googletest") + "/trunk@629", |
| 68 | 68 |
| 69 "src/testing/gmock": | 69 "src/testing/gmock": |
| 70 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 70 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 71 | 71 |
| 72 "src/third_party/angle": | 72 "src/third_party/angle": |
| 73 (Var("googlecode_url") % "angleproject") + "/trunk@2001", | 73 (Var("googlecode_url") % "angleproject") + "/trunk@2001", |
| 74 | 74 |
| 75 "src/third_party/trace-viewer": | 75 "src/third_party/trace-viewer": |
| 76 (Var("googlecode_url") % "trace-viewer") + "/trunk@220", | 76 (Var("googlecode_url") % "trace-viewer") + "/trunk@223", |
| 77 | 77 |
| 78 # Note that this is *not* where we check out WebKit -- this just | 78 # Note that this is *not* where we check out WebKit -- this just |
| 79 # puts some extra files into place for the real WebKit checkout to | 79 # puts some extra files into place for the real WebKit checkout to |
| 80 # happen. See lines mentioning "webkit_revision" for the real | 80 # happen. See lines mentioning "webkit_revision" for the real |
| 81 # WebKit checkout. | 81 # WebKit checkout. |
| 82 "src/third_party/WebKit": | 82 "src/third_party/WebKit": |
| 83 "/trunk/deps/third_party/WebKit@76115", | 83 "/trunk/deps/third_party/WebKit@76115", |
| 84 | 84 |
| 85 "src/third_party/icu": | 85 "src/third_party/icu": |
| 86 "/trunk/deps/third_party/icu46@182486", | 86 "/trunk/deps/third_party/icu46@182486", |
| (...skipping 599 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. | 686 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 687 "pattern": ".", | 687 "pattern": ".", |
| 688 "action": ["python", "src/build/gyp_chromium"], | 688 "action": ["python", "src/build/gyp_chromium"], |
| 689 }, | 689 }, |
| 690 { | 690 { |
| 691 # Check for landmines (reasons to clobber the build). | 691 # Check for landmines (reasons to clobber the build). |
| 692 "pattern": ".", | 692 "pattern": ".", |
| 693 "action": ["python", "src/build/landmines.py"], | 693 "action": ["python", "src/build/landmines.py"], |
| 694 }, | 694 }, |
| 695 ] | 695 ] |
| OLD | NEW |