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

Side by Side Diff: ash/mus/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 | « ash/common/system/tray/system_tray_controller.cc ('k') | ash/mus/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.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 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
11 source_set("lib") { 11 source_set("lib") {
12 sources = [ 12 sources = [
13 "accelerators/accelerator_controller_delegate_mus.cc", 13 "accelerators/accelerator_controller_delegate_mus.cc",
14 "accelerators/accelerator_controller_delegate_mus.h", 14 "accelerators/accelerator_controller_delegate_mus.h",
15 "accelerators/accelerator_controller_registrar.cc", 15 "accelerators/accelerator_controller_registrar.cc",
16 "accelerators/accelerator_controller_registrar.h", 16 "accelerators/accelerator_controller_registrar.h",
17 "accelerators/accelerator_handler.h", 17 "accelerators/accelerator_handler.h",
18 "accelerators/accelerator_ids.h", 18 "accelerators/accelerator_ids.h",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 ] 99 ]
100 100
101 public_deps = [ 101 public_deps = [
102 "//ash", 102 "//ash",
103 "//ash/public/interfaces", 103 "//ash/public/interfaces",
104 "//base", 104 "//base",
105 "//base:i18n", 105 "//base:i18n",
106 "//mash/public/interfaces", 106 "//mash/public/interfaces",
107 "//mash/session/public/interfaces", 107 "//mash/session/public/interfaces",
108 "//mojo/common:common_base", 108 "//mojo/common:common_base",
109 "//services/shell/public/cpp", 109 "//services/service_manager/public/cpp",
110 "//services/tracing/public/cpp", 110 "//services/tracing/public/cpp",
111 "//services/ui/common:mus_common", 111 "//services/ui/common:mus_common",
112 "//services/ui/public/cpp", 112 "//services/ui/public/cpp",
113 "//services/ui/public/interfaces", 113 "//services/ui/public/interfaces",
114 "//services/ui/public/interfaces/display", 114 "//services/ui/public/interfaces/display",
115 "//skia", 115 "//skia",
116 "//ui/aura", 116 "//ui/aura",
117 "//ui/events", 117 "//ui/events",
118 "//ui/gfx", 118 "//ui/gfx",
119 "//ui/gfx/geometry", 119 "//ui/gfx/geometry",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 output_name = "ash" 152 output_name = "ash"
153 153
154 sources = [ 154 sources = [
155 "main.cc", 155 "main.cc",
156 ] 156 ]
157 157
158 deps = [ 158 deps = [
159 ":lib", 159 ":lib",
160 ":resources", 160 ":resources",
161 ":resources_200", 161 ":resources_200",
162 "//services/shell/public/cpp", 162 "//services/service_manager/public/cpp",
163 ] 163 ]
164 164
165 # TODO(beng): This target relies on //mash/session, but there is a cycle so we 165 # TODO(beng): This target relies on //mash/session, but there is a cycle so we
166 # can't state that dependency here. 166 # can't state that dependency here.
167 data_deps = [ 167 data_deps = [
168 ":manifest", 168 ":manifest",
169 "//services/ui", 169 "//services/ui",
170 ] 170 ]
171 171
172 resources = [ 172 resources = [
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 deps = [ 257 deps = [
258 ":lib", 258 ":lib",
259 ":resources", 259 ":resources",
260 "//ash", 260 "//ash",
261 "//ash/common/test:test_support", 261 "//ash/common/test:test_support",
262 "//ash/public/interfaces", 262 "//ash/public/interfaces",
263 "//base", 263 "//base",
264 "//base/test:test_config", 264 "//base/test:test_config",
265 "//base/test:test_support", 265 "//base/test:test_support",
266 "//mojo/public/cpp/system", 266 "//mojo/public/cpp/system",
267 "//services/shell/public/cpp:service_test_support", 267 "//services/service_manager/public/cpp:service_test_support",
268 "//services/ui/common:mus_common", 268 "//services/ui/common:mus_common",
269 "//services/ui/public/cpp", 269 "//services/ui/public/cpp",
270 "//services/ui/public/cpp/tests:test_support", 270 "//services/ui/public/cpp/tests:test_support",
271 "//services/ui/public/cpp/tests:unittest_support", 271 "//services/ui/public/cpp/tests:unittest_support",
272 "//services/ui/public/interfaces", 272 "//services/ui/public/interfaces",
273 "//skia", 273 "//skia",
274 "//testing/gtest", 274 "//testing/gtest",
275 "//ui/aura", 275 "//ui/aura",
276 "//ui/base", 276 "//ui/base",
277 "//ui/base:test_support", 277 "//ui/base:test_support",
278 "//ui/display", 278 "//ui/display",
279 "//ui/events", 279 "//ui/events",
280 "//ui/events:test_support", 280 "//ui/events:test_support",
281 "//ui/gfx:test_support", 281 "//ui/gfx:test_support",
282 "//ui/gfx/geometry", 282 "//ui/gfx/geometry",
283 "//ui/gfx/geometry/mojo", 283 "//ui/gfx/geometry/mojo",
284 "//ui/message_center", 284 "//ui/message_center",
285 "//ui/views:test_support", 285 "//ui/views:test_support",
286 "//ui/views/mus", 286 "//ui/views/mus",
287 ] 287 ]
288 288
289 data_deps = [ 289 data_deps = [
290 ":mus", 290 ":mus",
291 "//mash/quick_launch", 291 "//mash/quick_launch",
292 ] 292 ]
293 293
294 defines = [ "NOTIMPLEMENTED_POLICY=5" ] 294 defines = [ "NOTIMPLEMENTED_POLICY=5" ]
295 } 295 }
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_controller.cc ('k') | ash/mus/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698