| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 deps += [ | 141 deps += [ |
| 142 "//chrome/browser/resources:component_extension_resources", | 142 "//chrome/browser/resources:component_extension_resources", |
| 143 "//chrome/browser/resources:options_resources", | 143 "//chrome/browser/resources:options_resources", |
| 144 "//chrome/browser/resources:quota_internals_resources", | 144 "//chrome/browser/resources:quota_internals_resources", |
| 145 "//chrome/browser/resources:settings_resources", | 145 "//chrome/browser/resources:settings_resources", |
| 146 "//chrome/browser/resources:sync_file_system_internals_resources", | 146 "//chrome/browser/resources:sync_file_system_internals_resources", |
| 147 "//content/browser/devtools:devtools_resources", | 147 "//content/browser/devtools:devtools_resources", |
| 148 ] | 148 ] |
| 149 } | 149 } |
| 150 if (is_chromeos) { | 150 if (is_chromeos) { |
| 151 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] | 151 sources += [ |
| 152 deps += [ "//ui/file_manager:resources" ] | 152 "$root_gen_dir/components/chrome_apps/chrome_apps_resources.pak", |
| 153 "$root_gen_dir/ui/file_manager/file_manager_resources.pak", |
| 154 ] |
| 155 deps += [ |
| 156 "//components/chrome_apps:resources", |
| 157 "//ui/file_manager:resources", |
| 158 ] |
| 153 } | 159 } |
| 154 if (enable_extensions) { | 160 if (enable_extensions) { |
| 155 sources += [ | 161 sources += [ |
| 156 "$root_gen_dir/extensions/extensions_renderer_resources.pak", | 162 "$root_gen_dir/extensions/extensions_renderer_resources.pak", |
| 157 "$root_gen_dir/extensions/extensions_resources.pak", | 163 "$root_gen_dir/extensions/extensions_resources.pak", |
| 158 ] | 164 ] |
| 159 deps += [ "//extensions:extensions_resources" ] | 165 deps += [ "//extensions:extensions_resources" ] |
| 160 } | 166 } |
| 161 } | 167 } |
| 162 } | 168 } |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ":${target_name}_locales", | 258 ":${target_name}_locales", |
| 253 ] | 259 ] |
| 254 if (enable_hidpi) { | 260 if (enable_hidpi) { |
| 255 public_deps += [ ":${target_name}_200_percent" ] | 261 public_deps += [ ":${target_name}_200_percent" ] |
| 256 } | 262 } |
| 257 if (defined(invoker.public_deps)) { | 263 if (defined(invoker.public_deps)) { |
| 258 public_deps += invoker.public_deps | 264 public_deps += invoker.public_deps |
| 259 } | 265 } |
| 260 } | 266 } |
| 261 } | 267 } |
| OLD | NEW |