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

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

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase 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 | « services/ui/test_wm/test_wm.cc ('k') | services/ui/ws/display.cc » ('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("//services/shell/public/cpp/service.gni") 7 import("//services/service_manager/public/cpp/service.gni")
8 import("//services/shell/public/service_manifest.gni") 8 import("//services/service_manager/public/service_manifest.gni")
9 9
10 static_library("lib") { 10 static_library("lib") {
11 sources = [ 11 sources = [
12 "accelerator.cc", 12 "accelerator.cc",
13 "accelerator.h", 13 "accelerator.h",
14 "access_policy.h", 14 "access_policy.h",
15 "access_policy_delegate.h", 15 "access_policy_delegate.h",
16 "accessibility_manager.cc", 16 "accessibility_manager.cc",
17 "accessibility_manager.h", 17 "accessibility_manager.h",
18 "animation_runner.cc", 18 "animation_runner.cc",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ] 121 ]
122 122
123 public_deps = [ 123 public_deps = [
124 "//base", 124 "//base",
125 "//cc", 125 "//cc",
126 "//cc/ipc:interfaces", 126 "//cc/ipc:interfaces",
127 "//cc/surfaces", 127 "//cc/surfaces",
128 "//cc/surfaces:surface_id", 128 "//cc/surfaces:surface_id",
129 "//mojo/common:common_base", 129 "//mojo/common:common_base",
130 "//mojo/public/cpp/bindings", 130 "//mojo/public/cpp/bindings",
131 "//services/shell/public/cpp", 131 "//services/service_manager/public/cpp",
132 "//services/shell/public/interfaces", 132 "//services/service_manager/public/interfaces",
133 "//services/tracing/public/cpp", 133 "//services/tracing/public/cpp",
134 "//services/ui/common:mus_common", 134 "//services/ui/common:mus_common",
135 "//services/ui/display", 135 "//services/ui/display",
136 "//services/ui/public/interfaces", 136 "//services/ui/public/interfaces",
137 "//services/ui/surfaces", 137 "//services/ui/surfaces",
138 "//ui/base", 138 "//ui/base",
139 "//ui/display", 139 "//ui/display",
140 "//ui/events", 140 "//ui/events",
141 "//ui/events/devices", 141 "//ui/events/devices",
142 "//ui/events/platform", 142 "//ui/events/platform",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 deps = [ 229 deps = [
230 ":lib", 230 ":lib",
231 ":test_support", 231 ":test_support",
232 "//base", 232 "//base",
233 "//base/test:test_config", 233 "//base/test:test_config",
234 "//base/test:test_support", 234 "//base/test:test_support",
235 "//cc:cc", 235 "//cc:cc",
236 "//gpu/ipc/client", 236 "//gpu/ipc/client",
237 "//mojo/public/cpp/bindings:bindings", 237 "//mojo/public/cpp/bindings:bindings",
238 "//services/shell/public/cpp:service_test_support", 238 "//services/service_manager/public/cpp:service_test_support",
239 "//services/shell/public/cpp:sources", 239 "//services/service_manager/public/cpp:sources",
240 "//services/shell/public/cpp/test:run_all_shelltests", 240 "//services/service_manager/public/cpp/test:run_all_shelltests",
241 "//services/shell/public/interfaces", 241 "//services/service_manager/public/interfaces",
242 "//services/ui/common:mus_common", 242 "//services/ui/common:mus_common",
243 "//services/ui/public/cpp", 243 "//services/ui/public/cpp",
244 "//services/ui/public/cpp:internal_or_test", 244 "//services/ui/public/cpp:internal_or_test",
245 "//services/ui/public/cpp/tests:test_support", 245 "//services/ui/public/cpp/tests:test_support",
246 "//services/ui/public/interfaces", 246 "//services/ui/public/interfaces",
247 "//services/ui/surfaces", 247 "//services/ui/surfaces",
248 "//testing/gtest", 248 "//testing/gtest",
249 "//third_party/mesa:osmesa", 249 "//third_party/mesa:osmesa",
250 "//ui/events", 250 "//ui/events",
251 "//ui/gfx", 251 "//ui/gfx",
252 "//ui/gfx:test_support", 252 "//ui/gfx:test_support",
253 "//ui/gfx/geometry", 253 "//ui/gfx/geometry",
254 "//ui/gfx/geometry/mojo", 254 "//ui/gfx/geometry/mojo",
255 "//ui/gl", 255 "//ui/gl",
256 ] 256 ]
257 257
258 if (use_x11) { 258 if (use_x11) {
259 deps += [ "//tools/xdisplaycheck" ] 259 deps += [ "//tools/xdisplaycheck" ]
260 } 260 }
261 261
262 data_deps = [ 262 data_deps = [
263 ":mus_ws_unittests_app_manifest", 263 ":mus_ws_unittests_app_manifest",
264 ] 264 ]
265 } 265 }
266 266
267 service_manifest("mus_ws_unittests_app_manifest") { 267 service_manifest("mus_ws_unittests_app_manifest") {
268 name = "mus_ws_unittests_app" 268 name = "mus_ws_unittests_app"
269 source = "mus_ws_unittests_app_manifest.json" 269 source = "mus_ws_unittests_app_manifest.json"
270 } 270 }
OLDNEW
« no previous file with comments | « services/ui/test_wm/test_wm.cc ('k') | services/ui/ws/display.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698