| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/locales.gni") | 5 import("//build/config/locales.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 import("chrome_repack_locales.gni") | 9 import("chrome_repack_locales.gni") |
| 10 | 10 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ] | 161 sources += [ "$root_gen_dir/headless/headless_lib_resources.pak" ] |
| 162 deps += [ "//headless:resources" ] | 162 deps += [ "//headless:resources" ] |
| 163 } | 163 } |
| 164 if (enable_extensions) { | 164 if (enable_extensions) { |
| 165 sources += [ | 165 sources += [ |
| 166 "$root_gen_dir/extensions/extensions_renderer_resources.pak", | 166 "$root_gen_dir/extensions/extensions_renderer_resources.pak", |
| 167 "$root_gen_dir/extensions/extensions_resources.pak", | 167 "$root_gen_dir/extensions/extensions_resources.pak", |
| 168 ] | 168 ] |
| 169 deps += [ "//extensions:extensions_resources" ] | 169 deps += [ "//extensions:extensions_resources" ] |
| 170 } | 170 } |
| 171 if (is_android) { |
| 172 sources += [ "$root_gen_dir/chrome/webapks_ui_resources.pak" ] |
| 173 deps += [ "//chrome/browser/resources:webapks_ui_resources" ] |
| 174 } |
| 171 } | 175 } |
| 172 } | 176 } |
| 173 | 177 |
| 174 # Defines repack() targets used by Chrome. Specifically: | 178 # Defines repack() targets used by Chrome. Specifically: |
| 175 # * chrome_100_percent.pak | 179 # * chrome_100_percent.pak |
| 176 # * chrome_200_percent.pak (optionally) | 180 # * chrome_200_percent.pak (optionally) |
| 177 # * resources.pak | 181 # * resources.pak |
| 178 # * locale .pak files | 182 # * locale .pak files |
| 179 # | 183 # |
| 180 # Paramters: | 184 # Paramters: |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 ":${target_name}_locales", | 266 ":${target_name}_locales", |
| 263 ] | 267 ] |
| 264 if (enable_hidpi) { | 268 if (enable_hidpi) { |
| 265 public_deps += [ ":${target_name}_200_percent" ] | 269 public_deps += [ ":${target_name}_200_percent" ] |
| 266 } | 270 } |
| 267 if (defined(invoker.public_deps)) { | 271 if (defined(invoker.public_deps)) { |
| 268 public_deps += invoker.public_deps | 272 public_deps += invoker.public_deps |
| 269 } | 273 } |
| 270 } | 274 } |
| 271 } | 275 } |
| OLD | NEW |