OLD | NEW |
1 vars = { | 1 vars = { |
2 # Use this googlecode_url variable only if there is an internal mirror for it. | 2 # Use this googlecode_url variable only if there is an internal mirror for it. |
3 # If you do not know, use the full path while defining your new deps entry. | 3 # If you do not know, use the full path while defining your new deps entry. |
4 "googlecode_url": "http://%s.googlecode.com/svn", | 4 "googlecode_url": "http://%s.googlecode.com/svn", |
5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "115733", | 8 "webkit_revision": "115733", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 | 181 |
182 "src/third_party/bidichecker": | 182 "src/third_party/bidichecker": |
183 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 183 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
184 | 184 |
185 "src/third_party/v8-i18n": | 185 "src/third_party/v8-i18n": |
186 (Var("googlecode_url") % "v8-i18n") + "/trunk@32", | 186 (Var("googlecode_url") % "v8-i18n") + "/trunk@32", |
187 | 187 |
188 # When roll to another webgl conformance tests revision, please goto | 188 # When roll to another webgl conformance tests revision, please goto |
189 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. | 189 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. |
190 "src/third_party/webgl_conformance": | 190 "src/third_party/webgl_conformance": |
191 "/trunk/deps/third_party/webgl/sdk/tests@129652", | 191 "/trunk/deps/third_party/webgl/sdk/tests@134742", |
192 | 192 |
193 # We should use the same software_rendering_list.json for all branches. | 193 # We should use the same software_rendering_list.json for all branches. |
194 "src/chrome/browser/resources/software_rendering_list": | 194 "src/chrome/browser/resources/software_rendering_list": |
195 "/trunk/deps/gpu/software_rendering_list@132008", | 195 "/trunk/deps/gpu/software_rendering_list@132008", |
196 | 196 |
197 # We run these layout tests as UI tests. Since many of the buildbots that | 197 # We run these layout tests as UI tests. Since many of the buildbots that |
198 # run layout tests do NOT have access to the LayoutTest directory, we need | 198 # run layout tests do NOT have access to the LayoutTest directory, we need |
199 # to map them here. In practice, these do not take up much space. | 199 # to map them here. In practice, these do not take up much space. |
200 "src/content/test/data/layout_tests/LayoutTests/fast/events": | 200 "src/content/test/data/layout_tests/LayoutTests/fast/events": |
201 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 201 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 "pattern": ".", | 533 "pattern": ".", |
534 "action": ["python", "src/build/util/lastchange.py", | 534 "action": ["python", "src/build/util/lastchange.py", |
535 "-o", "src/build/util/LASTCHANGE"], | 535 "-o", "src/build/util/LASTCHANGE"], |
536 }, | 536 }, |
537 { | 537 { |
538 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 538 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
539 "pattern": ".", | 539 "pattern": ".", |
540 "action": ["python", "src/build/gyp_chromium"], | 540 "action": ["python", "src/build/gyp_chromium"], |
541 }, | 541 }, |
542 ] | 542 ] |
OLD | NEW |