| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 action("embed_js_in_cpp") { | 8 action("embed_js_in_cpp") { |
| 9 script = "embed_js_in_cpp.py" | 9 script = "embed_js_in_cpp.py" |
| 10 | 10 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 executable("chromedriver") { | 310 executable("chromedriver") { |
| 311 sources = [ | 311 sources = [ |
| 312 "server/chromedriver_server.cc", | 312 "server/chromedriver_server.cc", |
| 313 ] | 313 ] |
| 314 | 314 |
| 315 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 315 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 316 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 316 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 317 | 317 |
| 318 deps = [ | 318 deps = [ |
| 319 ":lib", | 319 ":lib", |
| 320 "//build/config/sanitizers:deps", | 320 "//build/config:exe_and_shlib_deps", |
| 321 "//build/win:default_exe_manifest", | 321 "//build/win:default_exe_manifest", |
| 322 ] | 322 ] |
| 323 } | 323 } |
| 324 | 324 |
| 325 test("chromedriver_unittests") { | 325 test("chromedriver_unittests") { |
| 326 sources = [ | 326 sources = [ |
| 327 "capabilities_unittest.cc", | 327 "capabilities_unittest.cc", |
| 328 "chrome/browser_info_unittest.cc", | 328 "chrome/browser_info_unittest.cc", |
| 329 "chrome/chrome_finder_unittest.cc", | 329 "chrome/chrome_finder_unittest.cc", |
| 330 "chrome/console_logger_unittest.cc", | 330 "chrome/console_logger_unittest.cc", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 "//base", | 403 "//base", |
| 404 "//base/test:run_all_unittests", | 404 "//base/test:run_all_unittests", |
| 405 "//net", | 405 "//net", |
| 406 "//net:http_server", | 406 "//net:http_server", |
| 407 "//net:test_support", | 407 "//net:test_support", |
| 408 "//testing/gtest", | 408 "//testing/gtest", |
| 409 "//ui/events:test_support", | 409 "//ui/events:test_support", |
| 410 "//url", | 410 "//url", |
| 411 ] | 411 ] |
| 412 } | 412 } |
| OLD | NEW |