Add config to gclient to pull in Chromedriver test deps.

BUG=

Review-Url: https://codereview.chromium.org/2166443002
changes/90/365990/1
mikecase 9 years ago committed by Commit bot
parent 5ef2ca1b0f
commit 1f2c9b78ae

@ -682,3 +682,10 @@ def valgrind(c): # pragma: no cover
"""Add Valgrind binaries to the gclient solution."""
c.solutions[0].custom_deps['src/third_party/valgrind'] = \
ChromiumGitURL(c, 'chromium', 'deps', 'valgrind', 'binaries')
@config_ctx(includes=['chromium'])
def chromedriver(c):
"""Add Selenium Java tests to the gclient solution."""
c.solutions[0].custom_deps[
'src/chrome/test/chromedriver/third_party/java_tests'] = (
ChromiumGitURL(c, 'chromium', 'deps', 'webdriver'))

@ -17,6 +17,7 @@ TEST_CONFIGS = [
'build_internal',
'build_internal_scripts_slave',
'catapult',
'chromedriver',
'chrome_internal',
'chromium',
'chromium_lkcr',

Loading…
Cancel
Save