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": "45086", | 4 "webkit_revision": "45086", |
5 } | 5 } |
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@346", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@346", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "src/third_party/WebKit/WebKitLibraries": | 49 "src/third_party/WebKit/WebKitLibraries": |
50 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 50 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
51 | 51 |
52 "src/third_party/tcmalloc/tcmalloc": | 52 "src/third_party/tcmalloc/tcmalloc": |
53 "http://google-perftools.googlecode.com/svn/trunk@74", | 53 "http://google-perftools.googlecode.com/svn/trunk@74", |
54 | 54 |
55 # TODO(jianli): Remove this once we do not need to run worker's layout tests | 55 # TODO(jianli): Remove this once we do not need to run worker's layout tests |
56 # in ui test. | 56 # in ui test. |
57 "src/chrome/test/data/workers/LayoutTests/fast/workers": | 57 "src/chrome/test/data/workers/LayoutTests/fast/workers": |
58 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), | 58 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), |
| 59 "src/chrome/test/data/workers/LayoutTests/http/tests/resources": |
| 60 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_rev
ision"), |
| 61 "src/chrome/test/data/workers/LayoutTests/http/tests/workers": |
| 62 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revis
ion"), |
| 63 "src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest": |
| 64 Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + Var("webki
t_revision"), |
59 } | 65 } |
60 | 66 |
61 | 67 |
62 deps_os = { | 68 deps_os = { |
63 "win": { | 69 "win": { |
64 "src/third_party/cygwin": | 70 "src/third_party/cygwin": |
65 "/trunk/deps/third_party/cygwin@11984", | 71 "/trunk/deps/third_party/cygwin@11984", |
66 | 72 |
67 "src/third_party/python_24": | 73 "src/third_party/python_24": |
68 "/trunk/deps/third_party/python_24@7444", | 74 "/trunk/deps/third_party/python_24@7444", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 114 |
109 | 115 |
110 hooks = [ | 116 hooks = [ |
111 { | 117 { |
112 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. | 118 # A change to a .gyp, .gypi, or to GYP itself shound run the generator. |
113 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", | 119 "pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]", |
114 "action": ["python", "src/tools/gyp/gyp_dogfood", "src/build/all.gyp"], | 120 "action": ["python", "src/tools/gyp/gyp_dogfood", "src/build/all.gyp"], |
115 }, | 121 }, |
116 ] | 122 ] |
117 | 123 |
OLD | NEW |