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

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

Issue 2434923002: Handle modified displays in mustash. (Closed)
Patch Set: Fixes after initial review. Created 4 years, 2 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("display") { 8 source_set("display") {
9 sources = [ 9 sources = [
10 "platform_screen.cc", 10 "platform_screen.cc",
11 "platform_screen.h", 11 "platform_screen.h",
12 "platform_screen_delegate.h", 12 "platform_screen_delegate.h",
13 "viewport_metrics.h",
13 ] 14 ]
14 15
15 deps = [ 16 deps = [
16 "//base", 17 "//base",
17 "//services/service_manager/public/cpp", 18 "//services/service_manager/public/cpp",
18 "//ui/display", 19 "//ui/display",
19 "//ui/gfx", 20 "//ui/gfx",
20 ] 21 ]
21 22
22 if (use_ozone && is_chromeos) { 23 if (use_ozone && is_chromeos) {
(...skipping 28 matching lines...) Expand all
51 "//base/test:test_support", 52 "//base/test:test_support",
52 "//testing/gmock", 53 "//testing/gmock",
53 "//testing/gtest", 54 "//testing/gtest",
54 "//ui/display", 55 "//ui/display",
55 "//ui/gfx", 56 "//ui/gfx",
56 "//ui/gfx:test_support", 57 "//ui/gfx:test_support",
57 "//ui/ozone", 58 "//ui/ozone",
58 ] 59 ]
59 } 60 }
60 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698