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 "display.cc", |
36 "display.h", | 37 "display.h", |
37 "display_change_notifier.cc", | 38 "display_change_notifier.cc", |
38 "display_change_notifier.h", | 39 "display_change_notifier.h", |
39 "display_export.h", | 40 "display_export.h", |
40 "display_finder.cc", | 41 "display_finder.cc", |
41 "display_finder.h", | 42 "display_finder.h", |
42 "display_observer.cc", | 43 "display_observer.cc", |
43 "display_observer.h", | 44 "display_observer.h", |
44 "display_switches.cc", | 45 "display_switches.cc", |
45 "display_switches.h", | 46 "display_switches.h", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 testonly = true | 136 testonly = true |
136 sources = [ | 137 sources = [ |
137 "chromeos/test/action_logger.cc", | 138 "chromeos/test/action_logger.cc", |
138 "chromeos/test/action_logger.h", | 139 "chromeos/test/action_logger.h", |
139 "chromeos/test/action_logger_util.cc", | 140 "chromeos/test/action_logger_util.cc", |
140 "chromeos/test/action_logger_util.h", | 141 "chromeos/test/action_logger_util.h", |
141 "chromeos/test/test_display_layout_manager.cc", | 142 "chromeos/test/test_display_layout_manager.cc", |
142 "chromeos/test/test_display_layout_manager.h", | 143 "chromeos/test/test_display_layout_manager.h", |
143 "chromeos/test/test_native_display_delegate.cc", | 144 "chromeos/test/test_native_display_delegate.cc", |
144 "chromeos/test/test_native_display_delegate.h", | 145 "chromeos/test/test_native_display_delegate.h", |
| 146 "test/display_test_util.h", |
145 "test/test_screen.cc", | 147 "test/test_screen.cc", |
146 "test/test_screen.h", | 148 "test/test_screen.h", |
147 ] | 149 ] |
148 | 150 |
149 public_deps = [ | 151 public_deps = [ |
150 ":display", | 152 ":display", |
151 ] | 153 ] |
152 deps = [ | 154 deps = [ |
153 "//base", | 155 "//base", |
154 "//ui/display/types", | 156 "//ui/display/types", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 sources -= [ "display_change_notifier_unittest.cc" ] | 207 sources -= [ "display_change_notifier_unittest.cc" ] |
206 } | 208 } |
207 | 209 |
208 if (is_chromeos && use_ozone) { | 210 if (is_chromeos && use_ozone) { |
209 sources -= [ | 211 sources -= [ |
210 "chromeos/x11/display_util_x11_unittest.cc", | 212 "chromeos/x11/display_util_x11_unittest.cc", |
211 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 213 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
212 ] | 214 ] |
213 } | 215 } |
214 } | 216 } |
OLD | NEW |