| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1278 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources | 1278 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources |
| 1279 group("extra_resources") { | 1279 group("extra_resources") { |
| 1280 public_deps = [ | 1280 public_deps = [ |
| 1281 "//chrome/browser/resources:component_extension_resources", | 1281 "//chrome/browser/resources:component_extension_resources", |
| 1282 "//chrome/browser/resources:invalidations_resources", | 1282 "//chrome/browser/resources:invalidations_resources", |
| 1283 "//chrome/browser/resources:net_internals_resources", | 1283 "//chrome/browser/resources:net_internals_resources", |
| 1284 "//chrome/browser/resources:options_resources", | 1284 "//chrome/browser/resources:options_resources", |
| 1285 "//chrome/browser/resources:password_manager_internals_resources", | 1285 "//chrome/browser/resources:password_manager_internals_resources", |
| 1286 "//chrome/browser/resources:policy_resources", | 1286 "//chrome/browser/resources:policy_resources", |
| 1287 "//chrome/browser/resources:settings_resources", | 1287 "//chrome/browser/resources:settings_resources", |
| 1288 "//chrome/browser/resources:task_scheduler_internals_resources", |
| 1288 "//chrome/browser/resources:translate_internals_resources", | 1289 "//chrome/browser/resources:translate_internals_resources", |
| 1289 ] | 1290 ] |
| 1290 | 1291 |
| 1291 if (is_chromeos) { | 1292 if (is_chromeos) { |
| 1292 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ] | 1293 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ] |
| 1293 } | 1294 } |
| 1294 | 1295 |
| 1295 if (enable_extensions) { | 1296 if (enable_extensions) { |
| 1296 public_deps += [ | 1297 public_deps += [ |
| 1297 "//chrome/browser/resources:quota_internals_resources", | 1298 "//chrome/browser/resources:quota_internals_resources", |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1585 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1586 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1586 "//chrome/tools/build/linux/chrome-wrapper", | 1587 "//chrome/tools/build/linux/chrome-wrapper", |
| 1587 "//third_party/xdg-utils/scripts/xdg-mime", | 1588 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1588 "//third_party/xdg-utils/scripts/xdg-settings", | 1589 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1589 ] | 1590 ] |
| 1590 outputs = [ | 1591 outputs = [ |
| 1591 "$root_out_dir/{{source_file_part}}", | 1592 "$root_out_dir/{{source_file_part}}", |
| 1592 ] | 1593 ] |
| 1593 } | 1594 } |
| 1594 } | 1595 } |
| OLD | NEW |