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 "chromeos/apply_content_protection_task.cc", | 10 "chromeos/apply_content_protection_task.cc", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "chromeos/x11/native_display_event_dispatcher_x11.h", | 34 "chromeos/x11/native_display_event_dispatcher_x11.h", |
35 "display_export.h", | 35 "display_export.h", |
36 "display_switches.cc", | 36 "display_switches.cc", |
37 "display_switches.h", | 37 "display_switches.h", |
38 "manager/display_layout.cc", | 38 "manager/display_layout.cc", |
39 "manager/display_layout.h", | 39 "manager/display_layout.h", |
40 "manager/display_layout_builder.cc", | 40 "manager/display_layout_builder.cc", |
41 "manager/display_layout_builder.h", | 41 "manager/display_layout_builder.h", |
42 "win/display_info.cc", | 42 "win/display_info.cc", |
43 "win/display_info.h", | 43 "win/display_info.h", |
| 44 "win/dpi.cc", |
| 45 "win/dpi.h", |
44 "win/screen_win.cc", | 46 "win/screen_win.cc", |
45 "win/screen_win.h", | 47 "win/screen_win.h", |
46 "win/screen_win_display.cc", | 48 "win/screen_win_display.cc", |
47 "win/screen_win_display.h", | 49 "win/screen_win_display.h", |
48 ] | 50 ] |
49 | 51 |
50 defines = [ "DISPLAY_IMPLEMENTATION" ] | 52 defines = [ "DISPLAY_IMPLEMENTATION" ] |
51 | 53 |
52 deps = [ | 54 deps = [ |
53 "//base", | 55 "//base", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 ] | 172 ] |
171 } | 173 } |
172 | 174 |
173 if (is_chromeos && use_ozone) { | 175 if (is_chromeos && use_ozone) { |
174 sources -= [ | 176 sources -= [ |
175 "chromeos/x11/display_util_x11_unittest.cc", | 177 "chromeos/x11/display_util_x11_unittest.cc", |
176 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 178 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
177 ] | 179 ] |
178 } | 180 } |
179 } | 181 } |
OLD | NEW |