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

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

Issue 2675743002: PPAPI: Make output protection API work with mus+ash (Closed)
Patch Set: Fix build error Created 3 years, 10 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 "screen_manager.cc", 10 "screen_manager.cc",
11 "screen_manager.h", 11 "screen_manager.h",
12 "screen_manager_delegate.h", 12 "screen_manager_delegate.h",
13 "viewport_metrics.cc", 13 "viewport_metrics.cc",
14 "viewport_metrics.h", 14 "viewport_metrics.h",
15 ] 15 ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//services/service_manager/public/cpp", 19 "//services/service_manager/public/cpp",
20 "//ui/display", 20 "//ui/display",
21 "//ui/gfx", 21 "//ui/gfx",
22 ] 22 ]
23 23
24 if (use_ozone && is_chromeos) { 24 if (use_ozone && is_chromeos) {
25 sources += [ 25 sources += [
26 "output_protection.cc",
27 "output_protection.h",
26 "screen_manager_ozone_internal.cc", 28 "screen_manager_ozone_internal.cc",
27 "screen_manager_ozone_internal.h", 29 "screen_manager_ozone_internal.h",
28 ] 30 ]
29 31
30 deps += [ 32 deps += [
31 "//chromeos", 33 "//chromeos",
32 "//services/ui/public/interfaces/display", 34 "//services/ui/public/interfaces/display",
33 "//skia", 35 "//skia",
34 "//ui/display/manager", 36 "//ui/display/manager",
35 "//ui/ozone", 37 "//ui/ozone",
(...skipping 26 matching lines...) Expand all
62 "//ui/gfx", 64 "//ui/gfx",
63 "//ui/gfx:test_support", 65 "//ui/gfx:test_support",
64 "//ui/ozone", 66 "//ui/ozone",
65 ] 67 ]
66 68
67 data_deps = [ 69 data_deps = [
68 "//ui/resources:ui_test_pak_data", 70 "//ui/resources:ui_test_pak_data",
69 ] 71 ]
70 } 72 }
71 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698