Commit 1f2c9b78 authored by mikecase's avatar mikecase Committed by Commit bot

Add config to gclient to pull in Chromedriver test deps.

BUG=

Review-Url: https://codereview.chromium.org/2166443002
parent 5ef2ca1b
......@@ -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'))
\ No newline at end of file
......@@ -17,6 +17,7 @@ TEST_CONFIGS = [
'build_internal',
'build_internal_scripts_slave',
'catapult',
'chromedriver',
'chrome_internal',
'chromium',
'chromium_lkcr',
......
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