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", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "chromeos/x11/display_mode_x11.cc", | 26 "chromeos/x11/display_mode_x11.cc", |
27 "chromeos/x11/display_mode_x11.h", | 27 "chromeos/x11/display_mode_x11.h", |
28 "chromeos/x11/display_snapshot_x11.cc", | 28 "chromeos/x11/display_snapshot_x11.cc", |
29 "chromeos/x11/display_snapshot_x11.h", | 29 "chromeos/x11/display_snapshot_x11.h", |
30 "chromeos/x11/display_util_x11.cc", | 30 "chromeos/x11/display_util_x11.cc", |
31 "chromeos/x11/display_util_x11.h", | 31 "chromeos/x11/display_util_x11.h", |
32 "chromeos/x11/native_display_delegate_x11.cc", | 32 "chromeos/x11/native_display_delegate_x11.cc", |
33 "chromeos/x11/native_display_delegate_x11.h", | 33 "chromeos/x11/native_display_delegate_x11.h", |
34 "chromeos/x11/native_display_event_dispatcher_x11.cc", | 34 "chromeos/x11/native_display_event_dispatcher_x11.cc", |
35 "chromeos/x11/native_display_event_dispatcher_x11.h", | 35 "chromeos/x11/native_display_event_dispatcher_x11.h", |
| 36 "desktop_observer.cc", |
| 37 "desktop_observer.h", |
36 "display.cc", | 38 "display.cc", |
37 "display.h", | 39 "display.h", |
38 "display_change_notifier.cc", | 40 "display_change_notifier.cc", |
39 "display_change_notifier.h", | 41 "display_change_notifier.h", |
40 "display_export.h", | 42 "display_export.h", |
41 "display_finder.cc", | 43 "display_finder.cc", |
42 "display_finder.h", | 44 "display_finder.h", |
43 "display_observer.cc", | 45 "display_observer.cc", |
44 "display_observer.h", | 46 "display_observer.h", |
45 "display_switches.cc", | 47 "display_switches.cc", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 sources -= [ "display_change_notifier_unittest.cc" ] | 221 sources -= [ "display_change_notifier_unittest.cc" ] |
220 } | 222 } |
221 | 223 |
222 if (is_chromeos && use_ozone) { | 224 if (is_chromeos && use_ozone) { |
223 sources -= [ | 225 sources -= [ |
224 "chromeos/x11/display_util_x11_unittest.cc", | 226 "chromeos/x11/display_util_x11_unittest.cc", |
225 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 227 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
226 ] | 228 ] |
227 } | 229 } |
228 } | 230 } |
OLD | NEW |