| Index: recipe_modules/gclient/config.py
|
| diff --git a/recipe_modules/gclient/config.py b/recipe_modules/gclient/config.py
|
| index cd2e0957eca09c7fc0c54e0b8b981d5349f59d42..d39b5d4deb083d298e78d27b3f35a87c1ae90ab0 100644
|
| --- a/recipe_modules/gclient/config.py
|
| +++ b/recipe_modules/gclient/config.py
|
| @@ -669,3 +669,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'))
|
|
|