diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-04 22:37:54 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-04 22:37:54 +0000 |
commit | 4baf7e87a13c753a1537b8abfd7f0916fbfe69cd (patch) | |
tree | a4381d9f70f7d711118592db6713ae1f277ce164 /build | |
parent | 7dac0741e8d8db31cf9ac9dcb5a13270a2b34beb (diff) | |
download | chromium_src-4baf7e87a13c753a1537b8abfd7f0916fbfe69cd.zip chromium_src-4baf7e87a13c753a1537b8abfd7f0916fbfe69cd.tar.gz chromium_src-4baf7e87a13c753a1537b8abfd7f0916fbfe69cd.tar.bz2 |
Add new target for building qa-related targets on the qa waterfall.
Only depend on pyautolib if the target exists.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6368109
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/all.gyp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/build/all.gyp b/build/all.gyp index ce18cdf..52d1238 100644 --- a/build/all.gyp +++ b/build/all.gyp @@ -217,7 +217,21 @@ '../chrome/chrome.gyp:gpu_tests', '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree', ], - } + }, # target_name: chromium_gpu_builder + { + 'target_name': 'chromium_builder_qa', + 'type': 'none', + 'dependencies': [ + '../chrome/chrome.gyp:chromedriver', + ], + 'conditions': [ + ['OS=="mac" or OS=="win" or (OS=="linux" and target_arch==python_arch)', { + 'dependencies': [ + '../chrome/chrome.gyp:pyautolib', + ], + }], # 'OS=="mac" or OS=="win" or (OS=="linux" and target_arch==python_arch)' + ], + }, # target_name: chromium_builder_qa ], 'conditions': [ ['OS=="mac"', { |