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

Side by Side Diff: components/view_manager/BUILD.gn

Issue 1138073007: Nukes the windowmanager interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 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
« no previous file with comments | « BUILD.gn ('k') | components/view_manager/DEPS » ('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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
8 8
9 mojo_native_application("view_manager") { 9 mojo_native_application("view_manager") {
10 sources = [ 10 sources = [
11 "main.cc", 11 "main.cc",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 ":view_manager_lib", 15 ":view_manager_lib",
16 "//base", 16 "//base",
17 "//components/view_manager/public/interfaces", 17 "//components/view_manager/public/interfaces",
18 "//components/window_manager/public/interfaces",
19 "//mojo/application", 18 "//mojo/application",
20 "//mojo/converters/geometry", 19 "//mojo/converters/geometry",
21 "//mojo/environment:chromium", 20 "//mojo/environment:chromium",
22 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", 21 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
23 ] 22 ]
24 } 23 }
25 24
26 source_set("view_manager_lib") { 25 source_set("view_manager_lib") {
27 sources = [ 26 sources = [
28 "access_policy.h", 27 "access_policy.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 ] 72 ]
74 73
75 deps = [ 74 deps = [
76 "//base", 75 "//base",
77 "//cc/surfaces", 76 "//cc/surfaces",
78 "//cc/surfaces:surface_id", 77 "//cc/surfaces:surface_id",
79 "//components/native_viewport/public/interfaces", 78 "//components/native_viewport/public/interfaces",
80 "//components/surfaces/public/interfaces", 79 "//components/surfaces/public/interfaces",
81 "//components/view_manager/public/cpp:common", 80 "//components/view_manager/public/cpp:common",
82 "//components/view_manager/public/interfaces", 81 "//components/view_manager/public/interfaces",
83 "//components/window_manager/public/interfaces",
84 "//mojo/application", 82 "//mojo/application",
85 "//mojo/application/public/interfaces", 83 "//mojo/application/public/interfaces",
86 "//mojo/common", 84 "//mojo/common",
87 "//mojo/common:tracing_impl", 85 "//mojo/common:tracing_impl",
88 "//mojo/converters/geometry", 86 "//mojo/converters/geometry",
89 "//mojo/converters/input_events", 87 "//mojo/converters/input_events",
90 "//mojo/converters/surfaces", 88 "//mojo/converters/surfaces",
91 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", 89 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
92 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 90 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
93 "//ui/mojo/geometry:interfaces", 91 "//ui/mojo/geometry:interfaces",
94 "//ui/mojo/events:interfaces", 92 "//ui/mojo/events:interfaces",
95 "//ui/gfx", 93 "//ui/gfx",
96 "//ui/gfx/geometry", 94 "//ui/gfx/geometry",
97 ] 95 ]
98 96
99 data_deps = [ 97 data_deps = [
100 "//components/native_viewport", 98 "//components/native_viewport",
101 "//components/surfaces", 99 "//components/surfaces",
102
103 # TODO(msw|sky): VM and WM connect to each other; avoid circular dependency.
104 #"//components/window_manager:lib",
105 ] 100 ]
106 } 101 }
107 102
108 source_set("test_support") { 103 source_set("test_support") {
109 testonly = true 104 testonly = true
110 105
111 sources = [ 106 sources = [
112 "test_change_tracker.cc", 107 "test_change_tracker.cc",
113 "test_change_tracker.h", 108 "test_change_tracker.h",
114 ] 109 ]
(...skipping 24 matching lines...) Expand all
139 ] 134 ]
140 135
141 deps = [ 136 deps = [
142 ":test_support", 137 ":test_support",
143 ":view_manager_lib", 138 ":view_manager_lib",
144 "//base", 139 "//base",
145 "//base/test:test_config", 140 "//base/test:test_config",
146 "//components/native_viewport/public/cpp:args", 141 "//components/native_viewport/public/cpp:args",
147 "//components/view_manager/public/cpp:common", 142 "//components/view_manager/public/cpp:common",
148 "//components/view_manager/public/interfaces", 143 "//components/view_manager/public/interfaces",
149 "//components/window_manager/public/interfaces",
150 "//mojo/application/public/interfaces", 144 "//mojo/application/public/interfaces",
151 "//mojo/converters/geometry", 145 "//mojo/converters/geometry",
152 "//mojo/converters/input_events", 146 "//mojo/converters/input_events",
153 "//mojo/environment:chromium", 147 "//mojo/environment:chromium",
154 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", 148 "//third_party/mojo/src/mojo/edk/test:run_all_unittests",
155 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", 149 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
156 "//ui/mojo/geometry:interfaces", 150 "//ui/mojo/geometry:interfaces",
157 "//ui/mojo/events:interfaces", 151 "//ui/mojo/events:interfaces",
158 "//testing/gtest", 152 "//testing/gtest",
159 "//ui/gfx", 153 "//ui/gfx",
(...skipping 14 matching lines...) Expand all
174 "view_manager_client_apptest.cc", 168 "view_manager_client_apptest.cc",
175 "view_manager_service_apptest.cc", 169 "view_manager_service_apptest.cc",
176 ] 170 ]
177 171
178 deps = [ 172 deps = [
179 ":test_support", 173 ":test_support",
180 "//base", 174 "//base",
181 "//base/test:test_config", 175 "//base/test:test_config",
182 "//components/view_manager/public/cpp", 176 "//components/view_manager/public/cpp",
183 "//components/view_manager/public/interfaces", 177 "//components/view_manager/public/interfaces",
184 "//components/window_manager/public/interfaces",
185 "//mojo/application", 178 "//mojo/application",
186 "//mojo/application:test_support", 179 "//mojo/application:test_support",
187 "//mojo/common", 180 "//mojo/common",
188 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", 181 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings",
189 "//ui/mojo/geometry:interfaces", 182 "//ui/mojo/geometry:interfaces",
190 "//ui/mojo/geometry:util", 183 "//ui/mojo/geometry:util",
191 ] 184 ]
185
186 data_deps = [ ":view_manager" ]
192 } 187 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | components/view_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698