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