| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 "src/chrome/test/data/perf/frame_rate/content": | 145 "src/chrome/test/data/perf/frame_rate/content": |
| 146 "/trunk/deps/frame_rate/content@93671", | 146 "/trunk/deps/frame_rate/content@93671", |
| 147 | 147 |
| 148 "src/chrome/test/data/perf/third_party/octane": | 148 "src/chrome/test/data/perf/third_party/octane": |
| 149 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", | 149 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", |
| 150 | 150 |
| 151 "src/third_party/bidichecker": | 151 "src/third_party/bidichecker": |
| 152 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 152 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
| 153 | 153 |
| 154 "src/third_party/v8-i18n": |
| 155 (Var("googlecode_url") % "v8-i18n") + "/trunk@191", |
| 156 |
| 154 # When roll to another webgl conformance tests revision, please goto | 157 # When roll to another webgl conformance tests revision, please goto |
| 155 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. | 158 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. |
| 156 "src/third_party/webgl_conformance": | 159 "src/third_party/webgl_conformance": |
| 157 "/trunk/deps/third_party/webgl/sdk/tests@202601", | 160 "/trunk/deps/third_party/webgl/sdk/tests@202601", |
| 158 | 161 |
| 159 "src/third_party/swig/Lib": | 162 "src/third_party/swig/Lib": |
| 160 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 163 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
| 161 | 164 |
| 162 # Make sure you update the two functional.DEPS and webdriver.DEPS too. | 165 # Make sure you update the two functional.DEPS and webdriver.DEPS too. |
| 163 "src/third_party/webdriver/pylib": | 166 "src/third_party/webdriver/pylib": |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 "pattern": ".", | 622 "pattern": ".", |
| 620 "action": ["python", "src/build/gyp_chromium"], | 623 "action": ["python", "src/build/gyp_chromium"], |
| 621 }, | 624 }, |
| 622 { | 625 { |
| 623 # Check for landmines (reasons to clobber the build). | 626 # Check for landmines (reasons to clobber the build). |
| 624 "name": "landmines", | 627 "name": "landmines", |
| 625 "pattern": ".", | 628 "pattern": ".", |
| 626 "action": ["python", "src/build/landmines.py"], | 629 "action": ["python", "src/build/landmines.py"], |
| 627 }, | 630 }, |
| 628 ] | 631 ] |
| OLD | NEW |