OLD | NEW |
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/shell/public/cpp/service.gni") |
8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 deps = [ | 85 deps = [ |
86 "//components/user_manager", | 86 "//components/user_manager", |
87 "//ui/app_list/presenter", | 87 "//ui/app_list/presenter", |
88 "//ui/message_center", | 88 "//ui/message_center", |
89 ] | 89 ] |
90 | 90 |
91 public_deps = [ | 91 public_deps = [ |
92 "//ash", | 92 "//ash", |
93 "//ash/public/interfaces", | 93 "//ash/public/interfaces", |
94 "//base", | 94 "//base", |
| 95 "//mash/public/interfaces", |
95 "//mash/session/public/interfaces", | 96 "//mash/session/public/interfaces", |
96 "//mojo/common:common_base", | 97 "//mojo/common:common_base", |
97 "//services/shell/public/cpp", | 98 "//services/shell/public/cpp", |
98 "//services/tracing/public/cpp", | 99 "//services/tracing/public/cpp", |
99 "//services/ui/common:mus_common", | 100 "//services/ui/common:mus_common", |
100 "//services/ui/public/cpp", | 101 "//services/ui/public/cpp", |
101 "//services/ui/public/interfaces", | 102 "//services/ui/public/interfaces", |
102 "//skia", | 103 "//skia", |
103 "//ui/aura", | 104 "//ui/aura", |
104 "//ui/events", | 105 "//ui/events", |
105 "//ui/gfx", | 106 "//ui/gfx", |
106 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
107 "//ui/gfx/geometry/mojo", | 108 "//ui/gfx/geometry/mojo", |
108 "//ui/resources", | 109 "//ui/resources", |
109 "//ui/strings", | 110 "//ui/strings", |
110 "//ui/views", | 111 "//ui/views", |
111 "//ui/views/mus:for_mojo_application", | 112 "//ui/views/mus:for_mojo_application", |
112 ] | 113 ] |
113 | 114 |
| 115 data_deps = [ |
| 116 "//ash/touch_hud/mus:touch_hud", |
| 117 ] |
| 118 |
114 if (is_chromeos) { | 119 if (is_chromeos) { |
115 deps += [ | 120 deps += [ |
116 "//chromeos", | 121 "//chromeos", |
117 "//chromeos:power_manager_proto", | 122 "//chromeos:power_manager_proto", |
118 "//device/bluetooth", | 123 "//device/bluetooth", |
119 ] | 124 ] |
120 } | 125 } |
121 } | 126 } |
122 | 127 |
123 service("mus") { | 128 service("mus") { |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 "//ui/views/mus", | 230 "//ui/views/mus", |
226 ] | 231 ] |
227 | 232 |
228 data_deps = [ | 233 data_deps = [ |
229 ":mus", | 234 ":mus", |
230 "//mash/quick_launch", | 235 "//mash/quick_launch", |
231 ] | 236 ] |
232 | 237 |
233 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 238 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
234 } | 239 } |
OLD | NEW |