| 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/compiler/pgo/pgo.gni") | 8 import("//build/config/compiler/pgo/pgo.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/locales.gni") | 10 import("//build/config/locales.gni") |
| (...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 public_deps = [ | 1330 public_deps = [ |
| 1331 "//chrome/browser/resources:component_extension_resources", | 1331 "//chrome/browser/resources:component_extension_resources", |
| 1332 "//chrome/browser/resources:invalidations_resources", | 1332 "//chrome/browser/resources:invalidations_resources", |
| 1333 "//chrome/browser/resources:net_internals_resources", | 1333 "//chrome/browser/resources:net_internals_resources", |
| 1334 "//chrome/browser/resources:options_resources", | 1334 "//chrome/browser/resources:options_resources", |
| 1335 "//chrome/browser/resources:password_manager_internals_resources", | 1335 "//chrome/browser/resources:password_manager_internals_resources", |
| 1336 "//chrome/browser/resources:policy_resources", | 1336 "//chrome/browser/resources:policy_resources", |
| 1337 "//chrome/browser/resources:settings_resources", | 1337 "//chrome/browser/resources:settings_resources", |
| 1338 "//chrome/browser/resources:task_scheduler_internals_resources", | 1338 "//chrome/browser/resources:task_scheduler_internals_resources", |
| 1339 "//chrome/browser/resources:translate_internals_resources", | 1339 "//chrome/browser/resources:translate_internals_resources", |
| 1340 "//chrome/browser/resources:webapks_ui_resources", |
| 1340 ] | 1341 ] |
| 1341 | 1342 |
| 1342 if (is_chromeos) { | 1343 if (is_chromeos) { |
| 1343 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ] | 1344 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ] |
| 1344 public_deps += [ "//chrome/browser/resources/chromeos/select_to_speak" ] | 1345 public_deps += [ "//chrome/browser/resources/chromeos/select_to_speak" ] |
| 1345 } | 1346 } |
| 1346 | 1347 |
| 1347 if (enable_extensions) { | 1348 if (enable_extensions) { |
| 1348 public_deps += [ | 1349 public_deps += [ |
| 1349 "//chrome/browser/resources:quota_internals_resources", | 1350 "//chrome/browser/resources:quota_internals_resources", |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1596 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1597 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1597 "//chrome/tools/build/linux/chrome-wrapper", | 1598 "//chrome/tools/build/linux/chrome-wrapper", |
| 1598 "//third_party/xdg-utils/scripts/xdg-mime", | 1599 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1599 "//third_party/xdg-utils/scripts/xdg-settings", | 1600 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1600 ] | 1601 ] |
| 1601 outputs = [ | 1602 outputs = [ |
| 1602 "$root_out_dir/{{source_file_part}}", | 1603 "$root_out_dir/{{source_file_part}}", |
| 1603 ] | 1604 ] |
| 1604 } | 1605 } |
| 1605 } | 1606 } |
| OLD | NEW |