diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 01:55:27 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-26 01:55:27 +0000 |
commit | da58c9cf8cb374a06e511ab6b59b47f21c6549d4 (patch) | |
tree | 8ecb188bf992e4409496599e19ddd3886e87099b | |
parent | 0de764e26db70294974f67061ab2d991c739e27f (diff) | |
download | chromium_src-da58c9cf8cb374a06e511ab6b59b47f21c6549d4.zip chromium_src-da58c9cf8cb374a06e511ab6b59b47f21c6549d4.tar.gz chromium_src-da58c9cf8cb374a06e511ab6b59b47f21c6549d4.tar.bz2 |
Add webdriver py bindings to functional.DEPS.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7744036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98379 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | DEPS | 1 | ||||
-rw-r--r-- | chrome/test/functional.DEPS/DEPS | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -224,6 +224,7 @@ deps = { # WebDriver keeps client and test code separate, and merges when the # python egg is installed. We run tests directly from src, so import # the code into the structure expected by the tests. + # Make sure you update chrome/test/functional.DEPS/DEPS too. "src/third_party/webdriver/python/selenium": "http://selenium.googlecode.com/svn/trunk/py/selenium@13487", "src/third_party/webdriver/python/selenium/test": diff --git a/chrome/test/functional.DEPS/DEPS b/chrome/test/functional.DEPS/DEPS index 5990ffb..b9bc7eb 100644 --- a/chrome/test/functional.DEPS/DEPS +++ b/chrome/test/functional.DEPS/DEPS @@ -9,6 +9,8 @@ deps = { 'src/third_party/simplejson': '/trunk/src/third_party/simplejson', 'src/third_party/tlslite': '/trunk/src/third_party/tlslite', 'src/third_party/psutil': '/trunk/src/third_party/psutil', + 'src/third_party/webdriver/python/selenium': + 'http://selenium.googlecode.com/svn/trunk/py/selenium@13487', } deps_os = { |