Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: ui/display/BUILD.gn

Issue 2688413007: Add display::GetDisplayNearestView (Closed)
Patch Set: updated log #2 Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 16 matching lines...) Expand all
27 "display_switches.cc", 27 "display_switches.cc",
28 "display_switches.h", 28 "display_switches.h",
29 "fake_display_delegate.cc", 29 "fake_display_delegate.cc",
30 "fake_display_delegate.h", 30 "fake_display_delegate.h",
31 "fake_display_snapshot.cc", 31 "fake_display_snapshot.cc",
32 "fake_display_snapshot.h", 32 "fake_display_snapshot.h",
33 "ios/screen_ios.mm", 33 "ios/screen_ios.mm",
34 "mac/screen_mac.mm", 34 "mac/screen_mac.mm",
35 "screen.cc", 35 "screen.cc",
36 "screen.h", 36 "screen.h",
37 "screen_android.cc",
37 "screen_aura.cc", 38 "screen_aura.cc",
38 "screen_base.cc", 39 "screen_base.cc",
39 "screen_base.h", 40 "screen_base.h",
40 "win/display_info.cc", 41 "win/display_info.cc",
41 "win/display_info.h", 42 "win/display_info.h",
42 "win/dpi.cc", 43 "win/dpi.cc",
43 "win/dpi.h", 44 "win/dpi.h",
44 "win/scaling_util.cc", 45 "win/scaling_util.cc",
45 "win/scaling_util.h", 46 "win/scaling_util.h",
46 "win/screen_win.cc", 47 "win/screen_win.cc",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 sources -= [ "display_change_notifier_unittest.cc" ] 183 sources -= [ "display_change_notifier_unittest.cc" ]
183 } 184 }
184 185
185 if (is_chromeos && use_x11) { 186 if (is_chromeos && use_x11) {
186 sources += [ 187 sources += [
187 "manager/chromeos/x11/display_util_x11_unittest.cc", 188 "manager/chromeos/x11/display_util_x11_unittest.cc",
188 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", 189 "manager/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc",
189 ] 190 ]
190 } 191 }
191 } 192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698