| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 test("chromedriver_tests") { | 381 test("chromedriver_tests") { |
| 382 sources = [ | 382 sources = [ |
| 383 "key_converter_unittest.cc", | 383 "key_converter_unittest.cc", |
| 384 "keycode_text_conversion_unittest.cc", | 384 "keycode_text_conversion_unittest.cc", |
| 385 "net/net_util_unittest.cc", | 385 "net/net_util_unittest.cc", |
| 386 "net/port_server_unittest.cc", | 386 "net/port_server_unittest.cc", |
| 387 "net/sync_websocket_impl_unittest.cc", | 387 "net/sync_websocket_impl_unittest.cc", |
| 388 "net/test_http_server.cc", | 388 "net/test_http_server.cc", |
| 389 "net/test_http_server.h", | 389 "net/test_http_server.h", |
| 390 "net/websocket_unittest.cc", | 390 "net/websocket_unittest.cc", |
| 391 "test_util.cc", | |
| 392 "test_util.h", | |
| 393 ] | 391 ] |
| 394 | 392 |
| 395 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 393 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 396 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 394 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 397 | 395 |
| 398 deps = [ | 396 deps = [ |
| 399 ":lib", | 397 ":lib", |
| 400 "//base", | 398 "//base", |
| 401 "//base/test:run_all_unittests", | 399 "//base/test:run_all_unittests", |
| 402 "//net", | 400 "//net", |
| 403 "//net:http_server", | 401 "//net:http_server", |
| 404 "//net:test_support", | 402 "//net:test_support", |
| 405 "//testing/gtest", | 403 "//testing/gtest", |
| 404 "//ui/events:test_support", |
| 406 "//url", | 405 "//url", |
| 407 ] | 406 ] |
| 408 } | 407 } |
| OLD | NEW |