| OLD | NEW |
| 1 vars = { | 1 vars = { |
| 2 "webkit_trunk": | 2 "webkit_trunk": |
| 3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
| 4 "webkit_revision": "48642", | 4 "webkit_revision": "48642", |
| 5 "ffmpeg_revision": "26428", | 5 "ffmpeg_revision": "26428", |
| 6 } | 6 } |
| 7 | 7 |
| 8 deps = { | 8 deps = { |
| 9 "src/breakpad/src": | 9 "src/breakpad/src": |
| 10 "http://google-breakpad.googlecode.com/svn/trunk/src@391", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@391", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 "src/tools/page_cycler/acid3": | 60 "src/tools/page_cycler/acid3": |
| 61 "/trunk/deps/page_cycler/acid3@19546", | 61 "/trunk/deps/page_cycler/acid3@19546", |
| 62 | 62 |
| 63 # We run these layout tests as UI tests. Since many of the buildbots that | 63 # We run these layout tests as UI tests. Since many of the buildbots that |
| 64 # run layout tests do NOT have access to the LayoutTest directory, we need | 64 # run layout tests do NOT have access to the LayoutTest directory, we need |
| 65 # to map them here. In practice, these do not take up much space. | 65 # to map them here. In practice, these do not take up much space. |
| 66 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 66 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
| 67 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 67 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
| 68 Var("webkit_revision"), | 68 Var("webkit_revision"), |
| 69 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": |
| 70 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + |
| 71 Var("webkit_revision"), |
| 69 "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": | 72 "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": |
| 70 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + | 73 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + |
| 71 Var("webkit_revision"), | 74 Var("webkit_revision"), |
| 72 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": | 75 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": |
| 73 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + | 76 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + |
| 74 Var("webkit_revision"), | 77 Var("webkit_revision"), |
| 75 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": | 78 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": |
| 76 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + | 79 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + |
| 77 Var("webkit_revision"), | 80 Var("webkit_revision"), |
| 78 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": | 81 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 178 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 176 "pattern": ".", | 179 "pattern": ".", |
| 177 "action": ["python", "src/build/gyp_chromium"], | 180 "action": ["python", "src/build/gyp_chromium"], |
| 178 }, | 181 }, |
| 179 { | 182 { |
| 180 # Workaround IncrediBuild problem. http://crbug.com/17706. | 183 # Workaround IncrediBuild problem. http://crbug.com/17706. |
| 181 "pattern": "\\.grd$", | 184 "pattern": "\\.grd$", |
| 182 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 185 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
| 183 }, | 186 }, |
| 184 ] | 187 ] |
| OLD | NEW |