| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 service_manifest("manifest") { | 143 service_manifest("manifest") { |
| 144 name = "ash" | 144 name = "ash" |
| 145 source = "manifest.json" | 145 source = "manifest.json" |
| 146 } | 146 } |
| 147 | 147 |
| 148 # TODO: Load locale-specific strings. | 148 # TODO: Load locale-specific strings. |
| 149 # TODO: Avoid duplication between Mash and Chrome pak files: crbug.com/628715. | 149 # TODO: Avoid duplication between Mash and Chrome pak files: crbug.com/628715. |
| 150 repack("resources") { | 150 repack("resources") { |
| 151 output = "$root_out_dir/ash_mus_resources.pak" | 151 output = "$root_out_dir/ash_mus_resources.pak" |
| 152 sources = [ | 152 sources = [ |
| 153 "$root_gen_dir/ash/common/strings/ash_strings_en-US.pak", | |
| 154 "$root_gen_dir/ash/resources/ash_resources_100_percent.pak", | 153 "$root_gen_dir/ash/resources/ash_resources_100_percent.pak", |
| 154 "$root_gen_dir/ash/strings/ash_strings_en-US.pak", |
| 155 "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_100_percent.pak", | 155 "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_100_percent.pak", |
| 156 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_en-US.pak", | 156 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_en-US.pak", |
| 157 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 157 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 158 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 158 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 159 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 159 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 160 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 160 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
| 161 ] | 161 ] |
| 162 deps = [ | 162 deps = [ |
| 163 "//ash/common/strings", | |
| 164 "//ash/resources", | 163 "//ash/resources", |
| 164 "//ash/strings", |
| 165 "//ui/chromeos/resources", | 165 "//ui/chromeos/resources", |
| 166 "//ui/chromeos/strings", | 166 "//ui/chromeos/strings", |
| 167 "//ui/resources", | 167 "//ui/resources", |
| 168 "//ui/strings", | 168 "//ui/strings", |
| 169 "//ui/views/mus:resources", | 169 "//ui/views/mus:resources", |
| 170 "//ui/views/resources", | 170 "//ui/views/resources", |
| 171 ] | 171 ] |
| 172 } | 172 } |
| 173 | 173 |
| 174 repack("resources_200") { | 174 repack("resources_200") { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 "//ui/views/mus", | 236 "//ui/views/mus", |
| 237 ] | 237 ] |
| 238 | 238 |
| 239 data_deps = [ | 239 data_deps = [ |
| 240 ":mus", | 240 ":mus", |
| 241 "//mash/quick_launch", | 241 "//mash/quick_launch", |
| 242 ] | 242 ] |
| 243 | 243 |
| 244 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 244 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 245 } | 245 } |
| OLD | NEW |