Commit 942b563f authored by thomasvl@chromium.org's avatar thomasvl@chromium.org

- Mark the 'All' target with for getting a runner per http://codereview.chromium.org/99223

- Add a new target to build just what's needed for the webkit layout bots.
- Roll deps for the needed GYP change.
Review URL: http://codereview.chromium.org/100208

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14969 0039d316-1c4b-4281-b951-d872f2087c98
parent faabdffd
...@@ -26,7 +26,7 @@ deps = { ...@@ -26,7 +26,7 @@ deps = {
# TODO(mark): Remove once this has moved into depot_tools. # TODO(mark): Remove once this has moved into depot_tools.
"src/tools/gyp": "src/tools/gyp":
"http://gyp.googlecode.com/svn/trunk@452", "http://gyp.googlecode.com/svn/trunk@456",
"src/v8": "src/v8":
"http://v8.googlecode.com/svn/trunk@1809", "http://v8.googlecode.com/svn/trunk@1809",
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
{ {
'target_name': 'All', 'target_name': 'All',
'type': 'none', 'type': 'none',
'xcode_create_dependents_test_runner': 1,
'dependencies': [ 'dependencies': [
'../base/base.gyp:*', '../base/base.gyp:*',
'../media/media.gyp:*', '../media/media.gyp:*',
...@@ -75,5 +76,21 @@ ...@@ -75,5 +76,21 @@
], ],
}, },
], ],
'conditions': [
['OS=="mac"', {
# Target to build everything needed for layout tests to cut down
# on what the layout test bots have to build.
'targets': [
{
'target_name': 'build_for_layout_tests',
'type': 'none',
'dependencies': [
'../chrome/chrome.gyp:image_diff',
'../webkit/tools/test_shell/test_shell.gyp:test_shell',
'../webkit/tools/test_shell/test_shell.gyp:test_shell_tests',
],
},
],
}],
],
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment