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": "61334", | 4 "webkit_revision": "61334", |
5 "ffmpeg_revision": "49485", | 5 "ffmpeg_revision": "49485", |
6 "skia_revision": "576", | 6 "skia_revision": "576", |
7 "chromium_git": "http://src.chromium.org/git", | 7 "chromium_git": "http://src.chromium.org/git", |
8 "swig_revision": "40423", | 8 "swig_revision": "40423", |
9 "nacl_revision": "2441", | 9 "nacl_revision": "2441", |
10 "libvpx_revision": "47941", | 10 "libvpx_revision": "47941", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 # to map them here. In practice, these do not take up much space. | 93 # to map them here. In practice, these do not take up much space. |
94 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 94 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
95 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 95 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
96 Var("webkit_revision"), | 96 Var("webkit_revision"), |
97 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": | 97 "src/chrome/test/data/layout_tests/LayoutTests/fast/js/resources": |
98 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + | 98 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + |
99 Var("webkit_revision"), | 99 Var("webkit_revision"), |
100 "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": | 100 "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": |
101 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + | 101 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + |
102 Var("webkit_revision"), | 102 Var("webkit_revision"), |
| 103 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/appcache": |
| 104 Var("webkit_trunk") + "/LayoutTests/http/tests/appcache@" + |
| 105 Var("webkit_revision"), |
103 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": | 106 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": |
104 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + | 107 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + |
105 Var("webkit_revision"), | 108 Var("webkit_revision"), |
106 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": | 109 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": |
107 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + | 110 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + |
108 Var("webkit_revision"), | 111 Var("webkit_revision"), |
109 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": | 112 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": |
110 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + | 113 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + |
111 Var("webkit_revision"), | 114 Var("webkit_revision"), |
112 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers"
: | 115 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium/fast/workers"
: |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 }, | 289 }, |
287 { | 290 { |
288 # Workaround XCode dependecies problem. | 291 # Workaround XCode dependecies problem. |
289 # TODO(bradnelson): remove this when fixed. | 292 # TODO(bradnelson): remove this when fixed. |
290 "pattern": ".", | 293 "pattern": ".", |
291 "action": ["python", | 294 "action": ["python", |
292 "src/build/mac/clobber_generated_headers.py"], | 295 "src/build/mac/clobber_generated_headers.py"], |
293 }, | 296 }, |
294 ] | 297 ] |
295 | 298 |
OLD | NEW |