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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
8 import("//services/service_manager/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 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 ":lib", | 133 ":lib", |
134 ":resources", | 134 ":resources", |
135 ":resources_200", | 135 ":resources_200", |
136 "//services/service_manager/public/cpp", | 136 "//services/service_manager/public/cpp", |
137 ] | 137 ] |
138 | 138 |
139 # TODO(beng): This target relies on //mash/session, but there is a cycle so we | 139 # TODO(beng): This target relies on //mash/session, but there is a cycle so we |
140 # can't state that dependency here. | 140 # can't state that dependency here. |
141 data_deps = [ | 141 data_deps = [ |
142 ":manifest", | 142 ":manifest", |
143 ":resources", | |
144 ":resources_200", | |
145 "//services/ui", | 143 "//services/ui", |
146 ] | 144 ] |
| 145 |
| 146 resources = [ |
| 147 "$root_out_dir/ash_mus_resources.pak", |
| 148 "$root_out_dir/ash_mus_resources_200.pak", |
| 149 ] |
147 } | 150 } |
148 | 151 |
149 service_manifest("manifest") { | 152 service_manifest("manifest") { |
150 name = "ash" | 153 name = "ash" |
151 source = "manifest.json" | 154 source = "manifest.json" |
152 } | 155 } |
153 | 156 |
154 # TODO: Load locale-specific strings. | 157 # TODO: Load locale-specific strings. |
155 # TODO: Avoid duplication between Mash and Chrome pak files: crbug.com/628715. | 158 # TODO: Avoid duplication between Mash and Chrome pak files: crbug.com/628715. |
156 repack("resources") { | 159 repack("resources") { |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 "//ui/views/mus", | 248 "//ui/views/mus", |
246 ] | 249 ] |
247 | 250 |
248 data_deps = [ | 251 data_deps = [ |
249 ":mus", | 252 ":mus", |
250 "//mash/quick_launch", | 253 "//mash/quick_launch", |
251 ] | 254 ] |
252 | 255 |
253 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 256 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
254 } | 257 } |
OLD | NEW |