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

Side by Side Diff: services/ui/public/cpp/BUILD.gn

Issue 2903853002: Make RendererCompositorFrameSink derive from ClientCompositorFrameSink (Closed)
Patch Set: Fixed dependency Created 3 years, 7 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 6
7 # This is the public target. It contains only the public headers. The 7 # This is the public target. The implementation (and private haders) are in
8 # implementation (and private haders) are in 'internal'. 8 # 'internal'.
9 source_set("cpp") { 9 source_set("cpp") {
10 sources = [ 10 sources = [
11 "client_compositor_frame_sink.cc",
11 "client_compositor_frame_sink.h", 12 "client_compositor_frame_sink.h",
12 "property_type_converters.h", 13 "property_type_converters.h",
13 "raster_thread_helper.h", 14 "raster_thread_helper.h",
14 ] 15 ]
15 16
16 public_deps = [ 17 public_deps = [
17 "//base", 18 "//base",
18 "//cc", 19 "//cc",
19 "//cc/surfaces", 20 "//cc/surfaces",
20 "//cc/surfaces:surface_id", 21 "//cc/surfaces:surface_id",
(...skipping 26 matching lines...) Expand all
47 48
48 source_set("internal") { 49 source_set("internal") {
49 # This target is an implementation detail and is intended only to be used by 50 # This target is an implementation detail and is intended only to be used by
50 # the 'cpp' target. 51 # the 'cpp' target.
51 visibility = [ 52 visibility = [
52 ":cpp", 53 ":cpp",
53 "//services/ui/demo:lib", 54 "//services/ui/demo:lib",
54 ] 55 ]
55 56
56 sources = [ 57 sources = [
57 "client_compositor_frame_sink.cc",
58 "client_compositor_frame_sink.h", 58 "client_compositor_frame_sink.h",
59 "property_type_converters.cc", 59 "property_type_converters.cc",
60 "raster_thread_helper.cc", 60 "raster_thread_helper.cc",
61 ] 61 ]
62 62
63 deps = [ 63 deps = [
64 "//base", 64 "//base",
65 "//cc", 65 "//cc",
66 "//cc/surfaces", 66 "//cc/surfaces",
67 "//cc/surfaces:surface_id", 67 "//cc/surfaces:surface_id",
(...skipping 12 matching lines...) Expand all
80 data_deps = [ 80 data_deps = [
81 "//services/ui", 81 "//services/ui",
82 ] 82 ]
83 83
84 defines = [ "GL_GLEXT_PROTOTYPES" ] 84 defines = [ "GL_GLEXT_PROTOTYPES" ]
85 85
86 if (use_ozone) { 86 if (use_ozone) {
87 deps += [ "//ui/ozone" ] 87 deps += [ "//ui/ozone" ]
88 } 88 }
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698