Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: recipe_modules/gclient/config.py

Issue 2166443002: Add config to gclient to pull in Chromedriver test deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Add config to gclient to pull in Chromedriver test deps. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | recipe_modules/gclient/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'))
« no previous file with comments | « no previous file | recipe_modules/gclient/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698