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

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

Issue 2778153002: Add missing header files to GN files (Closed)
Patch Set: fix merge Created 3 years, 8 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
« no previous file with comments | « ppapi/thunk/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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. It contains only the public headers. The
8 # implementation (and private haders) are in 'internal'. 8 # implementation (and private haders) are in 'internal'.
9 source_set("cpp") { 9 source_set("cpp") {
10 sources = [ 10 sources = [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 source_set("internal") { 48 source_set("internal") {
49 # This target is an implementation detail and is intended only to be used by 49 # This target is an implementation detail and is intended only to be used by
50 # the 'cpp' target. 50 # the 'cpp' target.
51 visibility = [ 51 visibility = [
52 ":cpp", 52 ":cpp",
53 "//services/ui/demo:lib", 53 "//services/ui/demo:lib",
54 ] 54 ]
55 55
56 sources = [ 56 sources = [
57 "client_compositor_frame_sink.cc", 57 "client_compositor_frame_sink.cc",
58 "client_compositor_frame_sink.h",
58 "property_type_converters.cc", 59 "property_type_converters.cc",
59 "raster_thread_helper.cc", 60 "raster_thread_helper.cc",
60 ] 61 ]
61 62
62 deps = [ 63 deps = [
63 "//base", 64 "//base",
64 "//cc", 65 "//cc",
65 "//cc/surfaces", 66 "//cc/surfaces",
66 "//cc/surfaces:surface_id", 67 "//cc/surfaces:surface_id",
67 "//mojo/public/cpp/bindings", 68 "//mojo/public/cpp/bindings",
(...skipping 11 matching lines...) Expand all
79 data_deps = [ 80 data_deps = [
80 "//services/ui", 81 "//services/ui",
81 ] 82 ]
82 83
83 defines = [ "GL_GLEXT_PROTOTYPES" ] 84 defines = [ "GL_GLEXT_PROTOTYPES" ]
84 85
85 if (use_ozone) { 86 if (use_ozone) {
86 deps += [ "//ui/ozone" ] 87 deps += [ "//ui/ozone" ]
87 } 88 }
88 } 89 }
OLDNEW
« no previous file with comments | « ppapi/thunk/BUILD.gn ('k') | third_party/WebKit/Source/core/dom/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698