| 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": "114007", | 8 "webkit_revision": "114007", |
| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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@129652", |
| 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@130226", | 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@" + |
| 202 Var("webkit_revision"), | 202 Var("webkit_revision"), |
| 203 "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": | 203 "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": |
| 204 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + | 204 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + |
| 205 Var("webkit_revision"), | 205 Var("webkit_revision"), |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 "pattern": ".", | 527 "pattern": ".", |
| 528 "action": ["python", "src/build/util/lastchange.py", | 528 "action": ["python", "src/build/util/lastchange.py", |
| 529 "-o", "src/build/util/LASTCHANGE"], | 529 "-o", "src/build/util/LASTCHANGE"], |
| 530 }, | 530 }, |
| 531 { | 531 { |
| 532 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 532 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 533 "pattern": ".", | 533 "pattern": ".", |
| 534 "action": ["python", "src/build/gyp_chromium"], | 534 "action": ["python", "src/build/gyp_chromium"], |
| 535 }, | 535 }, |
| 536 ] | 536 ] |
| OLD | NEW |