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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 91 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
92 "$root_gen_dir/chrome/browser_resources.pak", | 92 "$root_gen_dir/chrome/browser_resources.pak", |
93 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", | 93 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", |
94 "$root_gen_dir/chrome/common_resources.pak", | 94 "$root_gen_dir/chrome/common_resources.pak", |
95 "$root_gen_dir/chrome/invalidations_resources.pak", | 95 "$root_gen_dir/chrome/invalidations_resources.pak", |
96 "$root_gen_dir/chrome/net_internals_resources.pak", | 96 "$root_gen_dir/chrome/net_internals_resources.pak", |
97 "$root_gen_dir/chrome/password_manager_internals_resources.pak", | 97 "$root_gen_dir/chrome/password_manager_internals_resources.pak", |
98 "$root_gen_dir/chrome/policy_resources.pak", | 98 "$root_gen_dir/chrome/policy_resources.pak", |
99 "$root_gen_dir/chrome/task_scheduler_internals_resources.pak", | 99 "$root_gen_dir/chrome/task_scheduler_internals_resources.pak", |
100 "$root_gen_dir/chrome/translate_internals_resources.pak", | 100 "$root_gen_dir/chrome/translate_internals_resources.pak", |
| 101 "$root_gen_dir/chrome/webapks_ui_resources.pak", |
101 "$root_gen_dir/components/components_resources.pak", | 102 "$root_gen_dir/components/components_resources.pak", |
102 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 103 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", |
103 "$root_gen_dir/content/content_resources.pak", | 104 "$root_gen_dir/content/content_resources.pak", |
104 "$root_gen_dir/net/net_resources.pak", | 105 "$root_gen_dir/net/net_resources.pak", |
105 "$root_gen_dir/ui/resources/webui_resources.pak", | 106 "$root_gen_dir/ui/resources/webui_resources.pak", |
106 ] | 107 ] |
107 deps = [ | 108 deps = [ |
108 "//chrome/app/theme:chrome_unscaled_resources", | 109 "//chrome/app/theme:chrome_unscaled_resources", |
109 "//chrome/browser:resources", | 110 "//chrome/browser:resources", |
110 "//chrome/browser/resources:invalidations_resources", | 111 "//chrome/browser/resources:invalidations_resources", |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 ":${target_name}_locales", | 263 ":${target_name}_locales", |
263 ] | 264 ] |
264 if (enable_hidpi) { | 265 if (enable_hidpi) { |
265 public_deps += [ ":${target_name}_200_percent" ] | 266 public_deps += [ ":${target_name}_200_percent" ] |
266 } | 267 } |
267 if (defined(invoker.public_deps)) { | 268 if (defined(invoker.public_deps)) { |
268 public_deps += invoker.public_deps | 269 public_deps += invoker.public_deps |
269 } | 270 } |
270 } | 271 } |
271 } | 272 } |
OLD | NEW |