| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| 11 component("test_runner") { | 11 component("test_runner") { |
| 12 testonly = true | 12 testonly = true |
| 13 | 13 |
| 14 defines = [ "TEST_RUNNER_IMPLEMENTATION" ] | 14 defines = [ "TEST_RUNNER_IMPLEMENTATION" ] |
| 15 | 15 |
| 16 sources = [ | 16 sources = [ |
| 17 "accessibility_controller.cc", | 17 "accessibility_controller.cc", |
| 18 "accessibility_controller.h", | 18 "accessibility_controller.h", |
| 19 "app_banner_client.cc", | 19 "app_banner_client.cc", |
| 20 "app_banner_client.h", | 20 "app_banner_client.h", |
| 21 "composite_async_then.cc", |
| 22 "composite_async_then.h", |
| 21 "event_sender.cc", | 23 "event_sender.cc", |
| 22 "event_sender.h", | 24 "event_sender.h", |
| 23 "gamepad_controller.cc", | 25 "gamepad_controller.cc", |
| 24 "gamepad_controller.h", | 26 "gamepad_controller.h", |
| 25 "gc_controller.cc", | 27 "gc_controller.cc", |
| 26 "gc_controller.h", | 28 "gc_controller.h", |
| 27 "layout_and_paint_async_then.cc", | |
| 28 "layout_and_paint_async_then.h", | |
| 29 "layout_dump.cc", | 29 "layout_dump.cc", |
| 30 "layout_dump.h", | 30 "layout_dump.h", |
| 31 "layout_test_runtime_flags.cc", | 31 "layout_test_runtime_flags.cc", |
| 32 "layout_test_runtime_flags.h", | 32 "layout_test_runtime_flags.h", |
| 33 "mock_color_chooser.cc", | 33 "mock_color_chooser.cc", |
| 34 "mock_color_chooser.h", | 34 "mock_color_chooser.h", |
| 35 "mock_content_settings_client.cc", | 35 "mock_content_settings_client.cc", |
| 36 "mock_content_settings_client.h", | 36 "mock_content_settings_client.h", |
| 37 "mock_credential_manager_client.cc", | 37 "mock_credential_manager_client.cc", |
| 38 "mock_credential_manager_client.h", | 38 "mock_credential_manager_client.h", |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 if (is_mac) { | 208 if (is_mac) { |
| 209 libs = [ "AppKit.framework" ] | 209 libs = [ "AppKit.framework" ] |
| 210 } | 210 } |
| 211 | 211 |
| 212 deps = [ | 212 deps = [ |
| 213 "//build/config/sanitizers:deps", | 213 "//build/config/sanitizers:deps", |
| 214 "//build/win:default_exe_manifest", | 214 "//build/win:default_exe_manifest", |
| 215 ] | 215 ] |
| 216 } | 216 } |
| 217 } | 217 } |
| OLD | NEW |