| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//chrome/chrome_tests.gni") | 6 import("//chrome/chrome_tests.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib | 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib |
| 10 # (embed_js_in_cpp action) | 10 # (embed_js_in_cpp action) |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 executable("chromedriver") { | 177 executable("chromedriver") { |
| 178 sources = [ | 178 sources = [ |
| 179 "server/chromedriver_server.cc", | 179 "server/chromedriver_server.cc", |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 182 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 183 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 183 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 184 | 184 |
| 185 deps = [ | 185 deps = [ |
| 186 ":lib", | 186 ":lib", |
| 187 "//build/config/sanitizers:deps", |
| 187 ] | 188 ] |
| 188 } | 189 } |
| 189 | 190 |
| 190 # TODO(GYP): Delete this after we've converted everything to GN. | 191 # TODO(GYP): Delete this after we've converted everything to GN. |
| 191 # The _run targets exist only for compatibility w/ GYP. | 192 # The _run targets exist only for compatibility w/ GYP. |
| 192 group("chromedriver_unittests_run") { | 193 group("chromedriver_unittests_run") { |
| 193 testonly = true | 194 testonly = true |
| 194 deps = [ | 195 deps = [ |
| 195 ":chromedriver_unittests", | 196 ":chromedriver_unittests", |
| 196 ] | 197 ] |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ":lib", | 237 ":lib", |
| 237 "//base", | 238 "//base", |
| 238 "//base/test:run_all_unittests", | 239 "//base/test:run_all_unittests", |
| 239 "//net", | 240 "//net", |
| 240 "//net:http_server", | 241 "//net:http_server", |
| 241 "//net:test_support", | 242 "//net:test_support", |
| 242 "//testing/gtest", | 243 "//testing/gtest", |
| 243 "//url", | 244 "//url", |
| 244 ] | 245 ] |
| 245 } | 246 } |
| OLD | NEW |