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": "57002", | 4 "webkit_revision": "57002", |
5 "ffmpeg_revision": "42726", | 5 "ffmpeg_revision": "42726", |
6 "skia_revision": "504", | 6 "skia_revision": "504", |
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": "1915", | 9 "nacl_revision": "1915", |
10 } | 10 } |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 Var("webkit_revision"), | 88 Var("webkit_revision"), |
89 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": | 89 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": |
90 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + | 90 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + |
91 Var("webkit_revision"), | 91 Var("webkit_revision"), |
92 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": | 92 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": |
93 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + | 93 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + |
94 Var("webkit_revision"), | 94 Var("webkit_revision"), |
95 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": | 95 "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": |
96 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + | 96 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + |
97 Var("webkit_revision"), | 97 Var("webkit_revision"), |
| 98 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-mac/fast/even
ts": |
| 99 Var("webkit_trunk") + "/LayoutTests/platform/chromium-mac/fast/events@" + |
| 100 Var("webkit_revision"), |
| 101 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-mac/http/test
s/workers": |
| 102 Var("webkit_trunk") + "/LayoutTests/platform/chromium-mac/http/tests/workers
@" + |
| 103 Var("webkit_revision"), |
| 104 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-mac/storage/d
omstorage": |
| 105 Var("webkit_trunk") + "/LayoutTests/platform/chromium-mac/storage/domstorage
@" + |
| 106 Var("webkit_revision"), |
| 107 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/even
ts": |
| 108 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/events@" + |
| 109 Var("webkit_revision"), |
| 110 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/fast/work
ers": |
| 111 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/fast/workers@" + |
| 112 Var("webkit_revision"), |
| 113 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/http/test
s/workers": |
| 114 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/http/tests/workers
@" + |
| 115 Var("webkit_revision"), |
| 116 "src/chrome/test/data/layout_tests/LayoutTests/platform/chromium-win/storage/d
omstorage": |
| 117 Var("webkit_trunk") + "/LayoutTests/platform/chromium-win/storage/domstorage
@" + |
| 118 Var("webkit_revision"), |
98 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": | 119 "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": |
99 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + | 120 Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + |
100 Var("webkit_revision"), | 121 Var("webkit_revision"), |
101 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": | 122 "src/chrome/test/data/layout_tests/LayoutTests/websocket/tests/workers": |
102 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + | 123 Var("webkit_trunk") + "/LayoutTests/websocket/tests/workers@" + |
103 Var("webkit_revision"), | 124 Var("webkit_revision"), |
104 | 125 |
105 "src/third_party/swig/Lib": | 126 "src/third_party/swig/Lib": |
106 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 127 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
107 | 128 |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 "action": ["python", "src/build/gyp_chromium"], | 250 "action": ["python", "src/build/gyp_chromium"], |
230 }, | 251 }, |
231 { | 252 { |
232 # Workaround XCode dependecies problem. | 253 # Workaround XCode dependecies problem. |
233 # TODO(bradnelson): remove this when fixed. | 254 # TODO(bradnelson): remove this when fixed. |
234 "pattern": ".", | 255 "pattern": ".", |
235 "action": ["python", | 256 "action": ["python", |
236 "src/build/mac/clobber_generated_headers.py"], | 257 "src/build/mac/clobber_generated_headers.py"], |
237 }, | 258 }, |
238 ] | 259 ] |
OLD | NEW |