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": "50407", | 4 "webkit_revision": "50407", |
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/tcmalloc/tcmalloc": | 66 "src/third_party/tcmalloc/tcmalloc": |
67 "http://google-perftools.googlecode.com/svn/trunk@74", | 67 "http://google-perftools.googlecode.com/svn/trunk@77", |
68 | 68 |
69 "src/tools/page_cycler/acid3": | 69 "src/tools/page_cycler/acid3": |
70 "/trunk/deps/page_cycler/acid3@19546", | 70 "/trunk/deps/page_cycler/acid3@19546", |
71 | 71 |
72 # We run these layout tests as UI tests. Since many of the buildbots that | 72 # 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 | 73 # 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. | 74 # to map them here. In practice, these do not take up much space. |
75 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": | 75 "src/chrome/test/data/layout_tests/LayoutTests/fast/events": |
76 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 76 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
77 Var("webkit_revision"), | 77 Var("webkit_revision"), |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 "$matching_files"], | 211 "$matching_files"], |
212 }, | 212 }, |
213 { | 213 { |
214 # Workaround XCode dependecies problem. | 214 # Workaround XCode dependecies problem. |
215 # TODO(bradnelson): remove this when fixed. | 215 # TODO(bradnelson): remove this when fixed. |
216 "pattern": ".", | 216 "pattern": ".", |
217 "action": ["python", | 217 "action": ["python", |
218 "src/build/mac/clobber_generated_headers.py"], | 218 "src/build/mac/clobber_generated_headers.py"], |
219 }, | 219 }, |
220 ] | 220 ] |
OLD | NEW |