| 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 14 matching lines...) Expand all Loading... |
| 25 "chromeos/x11/display_mode_x11.cc", | 25 "chromeos/x11/display_mode_x11.cc", |
| 26 "chromeos/x11/display_mode_x11.h", | 26 "chromeos/x11/display_mode_x11.h", |
| 27 "chromeos/x11/display_snapshot_x11.cc", | 27 "chromeos/x11/display_snapshot_x11.cc", |
| 28 "chromeos/x11/display_snapshot_x11.h", | 28 "chromeos/x11/display_snapshot_x11.h", |
| 29 "chromeos/x11/display_util_x11.cc", | 29 "chromeos/x11/display_util_x11.cc", |
| 30 "chromeos/x11/display_util_x11.h", | 30 "chromeos/x11/display_util_x11.h", |
| 31 "chromeos/x11/native_display_delegate_x11.cc", | 31 "chromeos/x11/native_display_delegate_x11.cc", |
| 32 "chromeos/x11/native_display_delegate_x11.h", | 32 "chromeos/x11/native_display_delegate_x11.h", |
| 33 "chromeos/x11/native_display_event_dispatcher_x11.cc", | 33 "chromeos/x11/native_display_event_dispatcher_x11.cc", |
| 34 "chromeos/x11/native_display_event_dispatcher_x11.h", | 34 "chromeos/x11/native_display_event_dispatcher_x11.h", |
| 35 "display.h", |
| 35 "display_export.h", | 36 "display_export.h", |
| 37 "display_observer.h", |
| 36 "display_switches.cc", | 38 "display_switches.cc", |
| 37 "display_switches.h", | 39 "display_switches.h", |
| 38 "manager/display_layout.cc", | 40 "manager/display_layout.cc", |
| 39 "manager/display_layout.h", | 41 "manager/display_layout.h", |
| 40 "manager/display_layout_builder.cc", | 42 "manager/display_layout_builder.cc", |
| 41 "manager/display_layout_builder.h", | 43 "manager/display_layout_builder.h", |
| 44 "screen.h", |
| 42 "win/display_info.cc", | 45 "win/display_info.cc", |
| 43 "win/display_info.h", | 46 "win/display_info.h", |
| 44 "win/dpi.cc", | 47 "win/dpi.cc", |
| 45 "win/dpi.h", | 48 "win/dpi.h", |
| 46 "win/screen_win.cc", | 49 "win/screen_win.cc", |
| 47 "win/screen_win.h", | 50 "win/screen_win.h", |
| 48 "win/screen_win_display.cc", | 51 "win/screen_win_display.cc", |
| 49 "win/screen_win_display.h", | 52 "win/screen_win_display.h", |
| 50 ] | 53 ] |
| 51 | 54 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ] | 175 ] |
| 173 } | 176 } |
| 174 | 177 |
| 175 if (is_chromeos && use_ozone) { | 178 if (is_chromeos && use_ozone) { |
| 176 sources -= [ | 179 sources -= [ |
| 177 "chromeos/x11/display_util_x11_unittest.cc", | 180 "chromeos/x11/display_util_x11_unittest.cc", |
| 178 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 181 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 179 ] | 182 ] |
| 180 } | 183 } |
| 181 } | 184 } |
| OLD | NEW |