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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "src/chrome/test/data/perf/frame_rate/content": | 161 "src/chrome/test/data/perf/frame_rate/content": |
162 "/trunk/deps/frame_rate/content@93671", | 162 "/trunk/deps/frame_rate/content@93671", |
163 | 163 |
164 "src/chrome/test/data/perf/third_party/octane": | 164 "src/chrome/test/data/perf/third_party/octane": |
165 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", | 165 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", |
166 | 166 |
167 "src/third_party/bidichecker": | 167 "src/third_party/bidichecker": |
168 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 168 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
169 | 169 |
170 "src/third_party/v8-i18n": | 170 "src/third_party/v8-i18n": |
171 (Var("googlecode_url") % "v8-i18n") + "/trunk@160", | 171 (Var("googlecode_url") % "v8-i18n") + "/trunk@163", |
172 | 172 |
173 # When roll to another webgl conformance tests revision, please goto | 173 # When roll to another webgl conformance tests revision, please goto |
174 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. | 174 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. |
175 "src/third_party/webgl_conformance": | 175 "src/third_party/webgl_conformance": |
176 "/trunk/deps/third_party/webgl/sdk/tests@170088", | 176 "/trunk/deps/third_party/webgl/sdk/tests@170088", |
177 | 177 |
178 # We run these layout tests as UI tests. Since many of the buildbots that | 178 # We run these layout tests as UI tests. Since many of the buildbots that |
179 # run layout tests do NOT have access to the LayoutTest directory, we need | 179 # run layout tests do NOT have access to the LayoutTest directory, we need |
180 # to map them here. In practice, these do not take up much space. | 180 # to map them here. In practice, these do not take up much space. |
181 "src/content/test/data/layout_tests/LayoutTests/fast/events": | 181 "src/content/test/data/layout_tests/LayoutTests/fast/events": |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 666 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
667 "pattern": ".", | 667 "pattern": ".", |
668 "action": ["python", "src/build/gyp_chromium"], | 668 "action": ["python", "src/build/gyp_chromium"], |
669 }, | 669 }, |
670 { | 670 { |
671 # Check for landmines (reasons to clobber the build). | 671 # Check for landmines (reasons to clobber the build). |
672 "pattern": ".", | 672 "pattern": ".", |
673 "action": ["python", "src/build/landmines.py"], | 673 "action": ["python", "src/build/landmines.py"], |
674 }, | 674 }, |
675 ] | 675 ] |
OLD | NEW |