diff options
author | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-13 03:11:21 +0000 |
---|---|---|
committer | kkania@chromium.org <kkania@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-13 03:11:21 +0000 |
commit | 7cc2c91be249eff44e492eea4ffc095abc4e0b59 (patch) | |
tree | cc58213c6285a91254729fefdbb26dbebdf9d795 /chrome/chrome_tests.gypi | |
parent | 8f7c7cd0eb53a8336a2db1d2b90818305e76706b (diff) | |
download | chromium_src-7cc2c91be249eff44e492eea4ffc095abc4e0b59.zip chromium_src-7cc2c91be249eff44e492eea4ffc095abc4e0b59.tar.gz chromium_src-7cc2c91be249eff44e492eea4ffc095abc4e0b59.tar.bz2 |
Implement Value command in ChromeDriver.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6482014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74748 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_tests.gypi')
-rw-r--r-- | chrome/chrome_tests.gypi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index ff26102..b20a8bf 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -736,6 +736,8 @@ 'test/webdriver/session_manager.cc', 'test/webdriver/utility_functions.h', 'test/webdriver/utility_functions.cc', + 'test/webdriver/webdriver_key_converter.h', + 'test/webdriver/webdriver_key_converter.cc', 'test/webdriver/commands/command.h', 'test/webdriver/commands/command.cc', 'test/webdriver/commands/create_session.h', @@ -761,8 +763,8 @@ 'test/webdriver/commands/url_command.cc', 'test/webdriver/commands/webdriver_command.h', 'test/webdriver/commands/webdriver_command.cc', - 'test/webdriver/commands/webelement_command.h', - 'test/webdriver/commands/webelement_command.cc', + 'test/webdriver/commands/webelement_commands.h', + 'test/webdriver/commands/webelement_commands.cc', ], 'conditions': [ ['OS=="linux"', { @@ -837,6 +839,7 @@ 'chromedriver_lib', '../base/base.gyp:test_support_base', '../testing/gtest.gyp:gtest', + '../skia/skia.gyp:skia', ], 'include_dirs': [ '..', @@ -844,6 +847,7 @@ 'sources': [ '../base/test/run_all_unittests.cc', 'test/webdriver/utility_functions_unittest.cc', + 'test/webdriver/webdriver_key_converter_unittest.cc', ], 'conditions': [ ['OS=="win"', { |