| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "display_observer.cc", | 43 "display_observer.cc", |
| 44 "display_observer.h", | 44 "display_observer.h", |
| 45 "display_switches.cc", | 45 "display_switches.cc", |
| 46 "display_switches.h", | 46 "display_switches.h", |
| 47 "ios/screen_ios.mm", | 47 "ios/screen_ios.mm", |
| 48 "mac/screen_mac.mm", | 48 "mac/screen_mac.mm", |
| 49 "manager/display_layout.cc", | 49 "manager/display_layout.cc", |
| 50 "manager/display_layout.h", | 50 "manager/display_layout.h", |
| 51 "manager/display_layout_builder.cc", | 51 "manager/display_layout_builder.cc", |
| 52 "manager/display_layout_builder.h", | 52 "manager/display_layout_builder.h", |
| 53 "manager/display_layout_store.cc", |
| 54 "manager/display_layout_store.h", |
| 53 "screen.cc", | 55 "screen.cc", |
| 54 "screen.h", | 56 "screen.h", |
| 55 "screen_aura.cc", | 57 "screen_aura.cc", |
| 56 "win/display_info.cc", | 58 "win/display_info.cc", |
| 57 "win/display_info.h", | 59 "win/display_info.h", |
| 58 "win/dpi.cc", | 60 "win/dpi.cc", |
| 59 "win/dpi.h", | 61 "win/dpi.h", |
| 60 "win/scaling_util.cc", | 62 "win/scaling_util.cc", |
| 61 "win/scaling_util.h", | 63 "win/scaling_util.h", |
| 62 "win/screen_win.cc", | 64 "win/screen_win.cc", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 sources -= [ "display_change_notifier_unittest.cc" ] | 220 sources -= [ "display_change_notifier_unittest.cc" ] |
| 219 } | 221 } |
| 220 | 222 |
| 221 if (is_chromeos && use_ozone) { | 223 if (is_chromeos && use_ozone) { |
| 222 sources -= [ | 224 sources -= [ |
| 223 "chromeos/x11/display_util_x11_unittest.cc", | 225 "chromeos/x11/display_util_x11_unittest.cc", |
| 224 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 226 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 225 ] | 227 ] |
| 226 } | 228 } |
| 227 } | 229 } |
| OLD | NEW |