summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 19:24:02 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-30 19:24:02 +0000
commit942b563f859f7f73a2865549dbf89781a887d0f1 (patch)
tree5c95b49512e258212b2b2a77b5f65cb861112637 /build
parentfaabdffdcf2bb5124bb9dbbddcf45eece71a4365 (diff)
downloadchromium_src-942b563f859f7f73a2865549dbf89781a887d0f1.zip
chromium_src-942b563f859f7f73a2865549dbf89781a887d0f1.tar.gz
chromium_src-942b563f859f7f73a2865549dbf89781a887d0f1.tar.bz2
- 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
Diffstat (limited to 'build')
-rw-r--r--build/all.gyp19
1 files changed, 18 insertions, 1 deletions
diff --git a/build/all.gyp b/build/all.gyp
index 1c79811..1349cda 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -19,6 +19,7 @@
{
'target_name': 'All',
'type': 'none',
+ 'xcode_create_dependents_test_runner': 1,
'dependencies': [
'../base/base.gyp:*',
'../media/media.gyp:*',
@@ -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',
+ ],
+ },
+ ],
+ }],
+ ],
}
-