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

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

Issue 2392063003: mus: Use TooltipManagerAura in NativeWidgetMus. (Closed)
Patch Set: Add comment 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
« no previous file with comments | « no previous file | ui/views/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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ":internal", 66 ":internal",
67 ":internal_or_test", 67 ":internal_or_test",
68 ] 68 ]
69 } 69 }
70 70
71 # This target is for use internally and by tests. 71 # This target is for use internally and by tests.
72 source_set("internal_or_test") { 72 source_set("internal_or_test") {
73 visibility = [ 73 visibility = [
74 "./*", 74 "./*",
75 "//services/ui/ws:mus_ws_unittests", 75 "//services/ui/ws:mus_ws_unittests",
76 "//ui/views/mus:views_mus_unittests",
76 ] 77 ]
77 78
78 sources = [ 79 sources = [
79 "window_private.h", 80 "window_private.h",
80 ] 81 ]
81 82
82 deps = [ 83 deps = [
83 "//base", 84 "//base",
84 "//mojo/public/cpp/bindings", 85 "//mojo/public/cpp/bindings",
85 ] 86 ]
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 data_deps = [ 150 data_deps = [
150 "//services/ui", 151 "//services/ui",
151 ] 152 ]
152 153
153 defines = [ "GL_GLEXT_PROTOTYPES" ] 154 defines = [ "GL_GLEXT_PROTOTYPES" ]
154 155
155 if (use_ozone) { 156 if (use_ozone) {
156 deps += [ "//ui/ozone" ] 157 deps += [ "//ui/ozone" ]
157 } 158 }
158 } 159 }
OLDNEW
« no previous file with comments | « no previous file | ui/views/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698