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": "50487", | 4 "webkit_revision": "50487", |
5 "ffmpeg_revision": "30374", | 5 "ffmpeg_revision": "30374", |
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@417", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@417", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 "src/third_party/WebKit/JavaScriptCore": | 57 "src/third_party/WebKit/JavaScriptCore": |
58 Var("webkit_trunk") + "/JavaScriptCore@" + Var("webkit_revision"), | 58 Var("webkit_trunk") + "/JavaScriptCore@" + Var("webkit_revision"), |
59 | 59 |
60 "src/third_party/WebKit/WebCore": | 60 "src/third_party/WebKit/WebCore": |
61 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), | 61 Var("webkit_trunk") + "/WebCore@" + Var("webkit_revision"), |
62 | 62 |
63 "src/third_party/WebKit/WebKit/chromium": | 63 "src/third_party/WebKit/WebKit/chromium": |
64 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), | 64 Var("webkit_trunk") + "/WebKit/chromium@" + Var("webkit_revision"), |
65 | 65 |
| 66 "src/third_party/ots": |
| 67 "http://ots.googlecode.com/svn/trunk@4", |
| 68 |
66 "src/third_party/tcmalloc/tcmalloc": | 69 "src/third_party/tcmalloc/tcmalloc": |
67 "http://google-perftools.googlecode.com/svn/trunk@77", | 70 "http://google-perftools.googlecode.com/svn/trunk@77", |
68 | 71 |
69 "src/tools/page_cycler/acid3": | 72 "src/tools/page_cycler/acid3": |
70 "/trunk/deps/page_cycler/acid3@19546", | 73 "/trunk/deps/page_cycler/acid3@19546", |
71 | 74 |
72 # We run these layout tests as UI tests. Since many of the buildbots that | 75 # We run these layout tests as UI tests. Since many of the buildbots that |
73 # run layout tests do NOT have access to the LayoutTest directory, we need | 76 # run layout tests do NOT have access to the LayoutTest directory, we need |
74 # to map them here. In practice, these do not take up much space. | 77 # to map them here. In practice, these do not take up much space. |
75 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 78 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "$matching_files"], | 214 "$matching_files"], |
212 }, | 215 }, |
213 { | 216 { |
214 # Workaround XCode dependecies problem. | 217 # Workaround XCode dependecies problem. |
215 # TODO(bradnelson): remove this when fixed. | 218 # TODO(bradnelson): remove this when fixed. |
216 "pattern": ".", | 219 "pattern": ".", |
217 "action": ["python", | 220 "action": ["python", |
218 "src/build/mac/clobber_generated_headers.py"], | 221 "src/build/mac/clobber_generated_headers.py"], |
219 }, | 222 }, |
220 ] | 223 ] |
OLD | NEW |