| 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_service.cc", |
| 20 "app_banner_client.h", | 20 "app_banner_service.h", |
| 21 "event_sender.cc", | 21 "event_sender.cc", |
| 22 "event_sender.h", | 22 "event_sender.h", |
| 23 "gamepad_controller.cc", | 23 "gamepad_controller.cc", |
| 24 "gamepad_controller.h", | 24 "gamepad_controller.h", |
| 25 "gc_controller.cc", | 25 "gc_controller.cc", |
| 26 "gc_controller.h", | 26 "gc_controller.h", |
| 27 "layout_and_paint_async_then.cc", | 27 "layout_and_paint_async_then.cc", |
| 28 "layout_and_paint_async_then.h", | 28 "layout_and_paint_async_then.h", |
| 29 "layout_dump.cc", | 29 "layout_dump.cc", |
| 30 "layout_dump.h", | 30 "layout_dump.h", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 106 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 108 | 108 |
| 109 deps = [ | 109 deps = [ |
| 110 ":resources", | 110 ":resources", |
| 111 "//base:base", | 111 "//base:base", |
| 112 "//base:i18n", | 112 "//base:i18n", |
| 113 "//cc", | 113 "//cc", |
| 114 "//cc/blink", | 114 "//cc/blink", |
| 115 "//content/public/common", |
| 115 "//gin", | 116 "//gin", |
| 116 "//gpu", | 117 "//gpu", |
| 117 "//gpu/command_buffer/client:gles2_interface", | 118 "//gpu/command_buffer/client:gles2_interface", |
| 118 "//media/midi:mojo_cpp_sources", | 119 "//media/midi:mojo_cpp_sources", |
| 119 "//net", | 120 "//net", |
| 120 "//skia", | 121 "//skia", |
| 121 "//third_party/WebKit/public:blink", | 122 "//third_party/WebKit/public:blink", |
| 122 "//ui/display", | 123 "//ui/display", |
| 123 "//ui/events:dom_keycode_converter", | 124 "//ui/events:dom_keycode_converter", |
| 124 "//ui/events:events_base", | 125 "//ui/events:events_base", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 sources = [ | 208 sources = [ |
| 208 "helper/layout_test_helper_win.cc", | 209 "helper/layout_test_helper_win.cc", |
| 209 ] | 210 ] |
| 210 | 211 |
| 211 deps = [ | 212 deps = [ |
| 212 "//build/config/sanitizers:deps", | 213 "//build/config/sanitizers:deps", |
| 213 "//build/win:default_exe_manifest", | 214 "//build/win:default_exe_manifest", |
| 214 ] | 215 ] |
| 215 } | 216 } |
| 216 } | 217 } |
| OLD | NEW |