| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 # This test covers all testable components in display. | 131 # This test covers all testable components in display. |
| 132 test("display_unittests") { | 132 test("display_unittests") { |
| 133 sources = [ | 133 sources = [ |
| 134 "display_change_notifier_unittest.cc", | 134 "display_change_notifier_unittest.cc", |
| 135 "display_list_unittest.cc", | 135 "display_list_unittest.cc", |
| 136 "display_unittest.cc", | 136 "display_unittest.cc", |
| 137 "fake_display_snapshot_unittests.cc", | 137 "fake_display_snapshot_unittests.cc", |
| 138 "manager/chromeos/apply_content_protection_task_unittest.cc", | 138 "manager/chromeos/apply_content_protection_task_unittest.cc", |
| 139 "manager/chromeos/configure_displays_task_unittest.cc", | 139 "manager/chromeos/configure_displays_task_unittest.cc", |
| 140 "manager/chromeos/display_change_observer_unittest.cc", |
| 140 "manager/chromeos/display_configurator_unittest.cc", | 141 "manager/chromeos/display_configurator_unittest.cc", |
| 141 "manager/chromeos/query_content_protection_task_unittest.cc", | 142 "manager/chromeos/query_content_protection_task_unittest.cc", |
| 142 "manager/chromeos/touchscreen_util_unittest.cc", | 143 "manager/chromeos/touchscreen_util_unittest.cc", |
| 143 "manager/chromeos/update_display_configuration_task_unittest.cc", | 144 "manager/chromeos/update_display_configuration_task_unittest.cc", |
| 144 "manager/display_layout_builder_unittest.cc", | 145 "manager/display_layout_builder_unittest.cc", |
| 145 "manager/display_layout_unittest.cc", | 146 "manager/display_layout_unittest.cc", |
| 146 "manager/display_manager_utilities_unittest.cc", | 147 "manager/display_manager_utilities_unittest.cc", |
| 147 "manager/managed_display_info_unittest.cc", | 148 "manager/managed_display_info_unittest.cc", |
| 148 "screen_unittest.cc", | 149 "screen_unittest.cc", |
| 149 "util/display_util_unittest.cc", | 150 "util/display_util_unittest.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 175 sources -= [ "display_change_notifier_unittest.cc" ] | 176 sources -= [ "display_change_notifier_unittest.cc" ] |
| 176 } | 177 } |
| 177 | 178 |
| 178 if (is_chromeos && use_x11) { | 179 if (is_chromeos && use_x11) { |
| 179 sources += [ | 180 sources += [ |
| 180 "manager/chromeos/x11/display_util_x11_unittest.cc", | 181 "manager/chromeos/x11/display_util_x11_unittest.cc", |
| 181 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 182 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 182 ] | 183 ] |
| 183 } | 184 } |
| 184 } | 185 } |
| OLD | NEW |