summaryrefslogtreecommitdiff
path: root/chromium/chrome/test/chromedriver
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/test/chromedriver')
-rw-r--r--chromium/chrome/test/chromedriver/BUILD.gn37
1 files changed, 0 insertions, 37 deletions
diff --git a/chromium/chrome/test/chromedriver/BUILD.gn b/chromium/chrome/test/chromedriver/BUILD.gn
index bde0c227921..ea5b167a2c5 100644
--- a/chromium/chrome/test/chromedriver/BUILD.gn
+++ b/chromium/chrome/test/chromedriver/BUILD.gn
@@ -56,34 +56,11 @@ action("embed_user_data_dir_in_cpp") {
args += rebase_path(files, root_build_dir)
}
-action("embed_extension_in_cpp") {
- script = "embed_extension_in_cpp.py"
-
- files = [
- "extension/background.js",
- "extension/manifest.json",
- ]
-
- inputs = [ "cpp_source.py" ] + files
- outputs = [
- "$target_gen_dir/chrome/embedded_automation_extension.cc",
- "$target_gen_dir/chrome/embedded_automation_extension.h",
- ]
-
- args = [
- "--directory",
- rebase_path("$target_gen_dir/chrome", root_build_dir),
- ]
- args += rebase_path(files, root_build_dir)
-}
-
source_set("automation_client_lib") {
sources = [
"chrome/adb.h",
"chrome/adb_impl.cc",
"chrome/adb_impl.h",
- "chrome/automation_extension.cc",
- "chrome/automation_extension.h",
"chrome/cast_tracker.cc",
"chrome/cast_tracker.h",
"chrome/chrome.h",
@@ -184,16 +161,11 @@ source_set("automation_client_lib") {
"net/websocket.h",
]
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
# Also compile the generated files.
- sources += get_target_outputs(":embed_extension_in_cpp")
sources += get_target_outputs(":embed_js_in_cpp")
sources += get_target_outputs(":embed_user_data_dir_in_cpp")
deps = [
- ":embed_extension_in_cpp",
":embed_js_in_cpp",
":embed_user_data_dir_in_cpp",
"//base",
@@ -266,9 +238,6 @@ source_set("lib") {
"window_commands.h",
]
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
if (use_x11) {
sources += [ "keycode_text_conversion_x.cc" ]
}
@@ -317,9 +286,6 @@ executable("chromedriver") {
testonly = true
sources = [ "server/chromedriver_server.cc" ]
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
deps = [
":lib",
"//build/win:default_exe_manifest",
@@ -424,9 +390,6 @@ test("chromedriver_unittests") {
"window_commands_unittest.cc",
]
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
-
data = [
"//chrome/test/data/chromedriver/",
"//chrome/test/chromedriver/log_replay/test_data",