Chromium Code Reviews| 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", |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 "display_observer.cc", | 23 "display_observer.cc", |
| 24 "display_observer.h", | 24 "display_observer.h", |
| 25 "display_switches.cc", | 25 "display_switches.cc", |
| 26 "display_switches.h", | 26 "display_switches.h", |
| 27 "fake_display_delegate.cc", | 27 "fake_display_delegate.cc", |
| 28 "fake_display_delegate.h", | 28 "fake_display_delegate.h", |
| 29 "fake_display_snapshot.cc", | 29 "fake_display_snapshot.cc", |
| 30 "fake_display_snapshot.h", | 30 "fake_display_snapshot.h", |
| 31 "ios/screen_ios.mm", | 31 "ios/screen_ios.mm", |
| 32 "mac/screen_mac.mm", | 32 "mac/screen_mac.mm", |
| 33 "mojo/display_snapshot_mojo.cc", | |
|
kylechar
2017/02/10 21:40:29
I would move these files so they are src/ui/displa
| |
| 34 "mojo/display_snapshot_mojo.h", | |
| 33 "screen.cc", | 35 "screen.cc", |
| 34 "screen.h", | 36 "screen.h", |
| 35 "screen_aura.cc", | 37 "screen_aura.cc", |
| 36 "screen_base.cc", | 38 "screen_base.cc", |
| 37 "screen_base.h", | 39 "screen_base.h", |
| 38 "win/display_info.cc", | 40 "win/display_info.cc", |
| 39 "win/display_info.h", | 41 "win/display_info.h", |
| 40 "win/dpi.cc", | 42 "win/dpi.cc", |
| 41 "win/dpi.h", | 43 "win/dpi.h", |
| 42 "win/scaling_util.cc", | 44 "win/scaling_util.cc", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 180 sources -= [ "display_change_notifier_unittest.cc" ] | 182 sources -= [ "display_change_notifier_unittest.cc" ] |
| 181 } | 183 } |
| 182 | 184 |
| 183 if (is_chromeos && use_x11) { | 185 if (is_chromeos && use_x11) { |
| 184 sources += [ | 186 sources += [ |
| 185 "manager/chromeos/x11/display_util_x11_unittest.cc", | 187 "manager/chromeos/x11/display_util_x11_unittest.cc", |
| 186 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 188 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
| 187 ] | 189 ] |
| 188 } | 190 } |
| 189 } | 191 } |
| OLD | NEW |