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", |
11 "display.h", | 11 "display.h", |
12 "display_change_notifier.cc", | 12 "display_change_notifier.cc", |
13 "display_change_notifier.h", | 13 "display_change_notifier.h", |
14 "display_export.h", | 14 "display_export.h", |
15 "display_finder.cc", | 15 "display_finder.cc", |
16 "display_finder.h", | 16 "display_finder.h", |
17 "display_layout.cc", | 17 "display_layout.cc", |
18 "display_layout.h", | 18 "display_layout.h", |
19 "display_layout_builder.cc", | 19 "display_layout_builder.cc", |
20 "display_layout_builder.h", | 20 "display_layout_builder.h", |
21 "display_list.cc", | 21 "display_list.cc", |
22 "display_list.h", | 22 "display_list.h", |
23 "display_observer.cc", | 23 "display_observer.cc", |
24 "display_observer.h", | 24 "display_observer.h", |
25 "display_snapshot_mojo.cc", | |
26 "display_snapshot_mojo.h", | |
27 "display_switches.cc", | 25 "display_switches.cc", |
28 "display_switches.h", | 26 "display_switches.h", |
29 "fake_display_delegate.cc", | 27 "fake_display_delegate.cc", |
30 "fake_display_delegate.h", | 28 "fake_display_delegate.h", |
31 "fake_display_snapshot.cc", | 29 "fake_display_snapshot.cc", |
32 "fake_display_snapshot.h", | 30 "fake_display_snapshot.h", |
33 "ios/screen_ios.mm", | 31 "ios/screen_ios.mm", |
34 "mac/screen_mac.mm", | 32 "mac/screen_mac.mm", |
35 "screen.cc", | 33 "screen.cc", |
36 "screen.h", | 34 "screen.h", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 sources -= [ "display_change_notifier_unittest.cc" ] | 180 sources -= [ "display_change_notifier_unittest.cc" ] |
183 } | 181 } |
184 | 182 |
185 if (is_chromeos && use_x11) { | 183 if (is_chromeos && use_x11) { |
186 sources += [ | 184 sources += [ |
187 "manager/chromeos/x11/display_util_x11_unittest.cc", | 185 "manager/chromeos/x11/display_util_x11_unittest.cc", |
188 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 186 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
189 ] | 187 ] |
190 } | 188 } |
191 } | 189 } |
OLD | NEW |