| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("display") { | 8 component("display") { |
| 9 sources = [ | 9 sources = [ |
| 10 "display.cc", | 10 "display.cc", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "fake_display_snapshot_unittests.cc", | 140 "fake_display_snapshot_unittests.cc", |
| 141 "manager/chromeos/apply_content_protection_task_unittest.cc", | 141 "manager/chromeos/apply_content_protection_task_unittest.cc", |
| 142 "manager/chromeos/configure_displays_task_unittest.cc", | 142 "manager/chromeos/configure_displays_task_unittest.cc", |
| 143 "manager/chromeos/display_change_observer_unittest.cc", | 143 "manager/chromeos/display_change_observer_unittest.cc", |
| 144 "manager/chromeos/display_configurator_unittest.cc", | 144 "manager/chromeos/display_configurator_unittest.cc", |
| 145 "manager/chromeos/query_content_protection_task_unittest.cc", | 145 "manager/chromeos/query_content_protection_task_unittest.cc", |
| 146 "manager/chromeos/touch_transform_controller_unittest.cc", | 146 "manager/chromeos/touch_transform_controller_unittest.cc", |
| 147 "manager/chromeos/touchscreen_util_unittest.cc", | 147 "manager/chromeos/touchscreen_util_unittest.cc", |
| 148 "manager/chromeos/update_display_configuration_task_unittest.cc", | 148 "manager/chromeos/update_display_configuration_task_unittest.cc", |
| 149 "manager/display_manager_utilities_unittest.cc", | 149 "manager/display_manager_utilities_unittest.cc", |
| 150 "manager/json_converter_unittest.cc", |
| 150 "manager/managed_display_info_unittest.cc", | 151 "manager/managed_display_info_unittest.cc", |
| 151 "mojo/display_struct_traits_unittest.cc", | 152 "mojo/display_struct_traits_unittest.cc", |
| 152 "screen_unittest.cc", | 153 "screen_unittest.cc", |
| 153 "util/display_util_unittest.cc", | 154 "util/display_util_unittest.cc", |
| 154 "util/edid_parser_unittest.cc", | 155 "util/edid_parser_unittest.cc", |
| 155 "win/scaling_util_unittest.cc", | 156 "win/scaling_util_unittest.cc", |
| 156 "win/screen_win_unittest.cc", | 157 "win/screen_win_unittest.cc", |
| 157 ] | 158 ] |
| 158 | 159 |
| 159 deps = [ | 160 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 180 sources -= [ "display_change_notifier_unittest.cc" ] | 181 sources -= [ "display_change_notifier_unittest.cc" ] |
| 181 } | 182 } |
| 182 | 183 |
| 183 if (is_chromeos && use_x11) { | 184 if (is_chromeos && use_x11) { |
| 184 sources += [ | 185 sources += [ |
| 185 "manager/chromeos/x11/display_util_x11_unittest.cc", | 186 "manager/chromeos/x11/display_util_x11_unittest.cc", |
| 186 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 187 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 187 ] | 188 ] |
| 188 } | 189 } |
| 189 } | 190 } |
| OLD | NEW |