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 "android/screen_android.cc", | 10 "android/screen_android.cc", |
11 "chromeos/apply_content_protection_task.cc", | 11 "chromeos/apply_content_protection_task.cc", |
12 "chromeos/apply_content_protection_task.h", | 12 "chromeos/apply_content_protection_task.h", |
13 "chromeos/configure_displays_task.cc", | 13 "chromeos/configure_displays_task.cc", |
14 "chromeos/configure_displays_task.h", | 14 "chromeos/configure_displays_task.h", |
15 "chromeos/display_configurator.cc", | 15 "chromeos/display_configurator.cc", |
16 "chromeos/display_configurator.h", | 16 "chromeos/display_configurator.h", |
17 "chromeos/display_layout_manager.h", | 17 "chromeos/display_layout_manager.h", |
18 "chromeos/display_snapshot_virtual.cc", | 18 "chromeos/display_snapshot_virtual.cc", |
19 "chromeos/display_snapshot_virtual.h", | 19 "chromeos/display_snapshot_virtual.h", |
20 "chromeos/display_util.cc", | 20 "chromeos/display_util.cc", |
21 "chromeos/display_util.h", | 21 "chromeos/display_util.h", |
22 "chromeos/query_content_protection_task.cc", | 22 "chromeos/query_content_protection_task.cc", |
23 "chromeos/query_content_protection_task.h", | 23 "chromeos/query_content_protection_task.h", |
24 "chromeos/update_display_configuration_task.cc", | 24 "chromeos/update_display_configuration_task.cc", |
25 "chromeos/update_display_configuration_task.h", | 25 "chromeos/update_display_configuration_task.h", |
| 26 "chromeos/virtual_display_delegate.cc", |
| 27 "chromeos/virtual_display_delegate.h", |
26 "chromeos/x11/display_mode_x11.cc", | 28 "chromeos/x11/display_mode_x11.cc", |
27 "chromeos/x11/display_mode_x11.h", | 29 "chromeos/x11/display_mode_x11.h", |
28 "chromeos/x11/display_snapshot_x11.cc", | 30 "chromeos/x11/display_snapshot_x11.cc", |
29 "chromeos/x11/display_snapshot_x11.h", | 31 "chromeos/x11/display_snapshot_x11.h", |
30 "chromeos/x11/display_util_x11.cc", | 32 "chromeos/x11/display_util_x11.cc", |
31 "chromeos/x11/display_util_x11.h", | 33 "chromeos/x11/display_util_x11.h", |
32 "chromeos/x11/native_display_delegate_x11.cc", | 34 "chromeos/x11/native_display_delegate_x11.cc", |
33 "chromeos/x11/native_display_delegate_x11.h", | 35 "chromeos/x11/native_display_delegate_x11.h", |
34 "chromeos/x11/native_display_event_dispatcher_x11.cc", | 36 "chromeos/x11/native_display_event_dispatcher_x11.cc", |
35 "chromeos/x11/native_display_event_dispatcher_x11.h", | 37 "chromeos/x11/native_display_event_dispatcher_x11.h", |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 sources -= [ "display_change_notifier_unittest.cc" ] | 233 sources -= [ "display_change_notifier_unittest.cc" ] |
232 } | 234 } |
233 | 235 |
234 if (is_chromeos && use_ozone) { | 236 if (is_chromeos && use_ozone) { |
235 sources -= [ | 237 sources -= [ |
236 "chromeos/x11/display_util_x11_unittest.cc", | 238 "chromeos/x11/display_util_x11_unittest.cc", |
237 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 239 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
238 ] | 240 ] |
239 } | 241 } |
240 } | 242 } |
OLD | NEW |