Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/BUILD.gn

Issue 1722493002: Project Eraser: Kill chrome://memory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chrome_browser_ui.gypi. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/chromium_strings.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 582
583 if (enable_extensions) { 583 if (enable_extensions) {
584 public_deps += [ "//chrome/common:extensions_api_resources" ] 584 public_deps += [ "//chrome/common:extensions_api_resources" ]
585 } 585 }
586 } 586 }
587 587
588 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources 588 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources
589 group("extra_resources") { 589 group("extra_resources") {
590 public_deps = [ 590 public_deps = [
591 "//chrome/browser/resources:invalidations_resources", 591 "//chrome/browser/resources:invalidations_resources",
592 "//chrome/browser/resources:memory_internals_resources",
593 "//chrome/browser/resources:net_internals_resources", 592 "//chrome/browser/resources:net_internals_resources",
594 "//chrome/browser/resources:password_manager_internals_resources", 593 "//chrome/browser/resources:password_manager_internals_resources",
595 "//chrome/browser/resources:policy_resources", 594 "//chrome/browser/resources:policy_resources",
596 "//chrome/browser/resources:translate_internals_resources", 595 "//chrome/browser/resources:translate_internals_resources",
597 ] 596 ]
598 if (!is_ios) { 597 if (!is_ios) {
599 public_deps += [ 598 public_deps += [
600 "//chrome/browser/resources:component_extension_resources", 599 "//chrome/browser/resources:component_extension_resources",
601 "//chrome/browser/resources:options_resources", 600 "//chrome/browser/resources:options_resources",
602 "//chrome/browser/resources:settings_resources", 601 "//chrome/browser/resources:settings_resources",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 } 657 }
659 } 658 }
660 659
661 repack("packed_extra_resources") { 660 repack("packed_extra_resources") {
662 visibility = [ "./*" ] 661 visibility = [ "./*" ]
663 sources = [ 662 sources = [
664 "$root_gen_dir/chrome/browser_resources.pak", 663 "$root_gen_dir/chrome/browser_resources.pak",
665 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", 664 "$root_gen_dir/chrome/chrome_unscaled_resources.pak",
666 "$root_gen_dir/chrome/common_resources.pak", 665 "$root_gen_dir/chrome/common_resources.pak",
667 "$root_gen_dir/chrome/invalidations_resources.pak", 666 "$root_gen_dir/chrome/invalidations_resources.pak",
668 "$root_gen_dir/chrome/memory_internals_resources.pak",
669 "$root_gen_dir/chrome/net_internals_resources.pak", 667 "$root_gen_dir/chrome/net_internals_resources.pak",
670 "$root_gen_dir/chrome/password_manager_internals_resources.pak", 668 "$root_gen_dir/chrome/password_manager_internals_resources.pak",
671 "$root_gen_dir/chrome/policy_resources.pak", 669 "$root_gen_dir/chrome/policy_resources.pak",
672 "$root_gen_dir/chrome/translate_internals_resources.pak", 670 "$root_gen_dir/chrome/translate_internals_resources.pak",
673 "$root_gen_dir/components/components_resources.pak", 671 "$root_gen_dir/components/components_resources.pak",
674 "$root_gen_dir/net/net_resources.pak", 672 "$root_gen_dir/net/net_resources.pak",
675 "$root_gen_dir/ui/resources/webui_resources.pak", 673 "$root_gen_dir/ui/resources/webui_resources.pak",
676 ] 674 ]
677 deps = [ 675 deps = [
678 "//chrome/app/theme:chrome_unscaled_resources", 676 "//chrome/app/theme:chrome_unscaled_resources",
679 "//chrome/browser:resources", 677 "//chrome/browser:resources",
680 "//chrome/browser/resources:invalidations_resources", 678 "//chrome/browser/resources:invalidations_resources",
681 "//chrome/browser/resources:memory_internals_resources",
682 "//chrome/browser/resources:net_internals_resources", 679 "//chrome/browser/resources:net_internals_resources",
683 "//chrome/browser/resources:password_manager_internals_resources", 680 "//chrome/browser/resources:password_manager_internals_resources",
684 "//chrome/browser/resources:policy_resources", 681 "//chrome/browser/resources:policy_resources",
685 "//chrome/browser/resources:translate_internals_resources", 682 "//chrome/browser/resources:translate_internals_resources",
686 "//chrome/common:resources", 683 "//chrome/common:resources",
687 "//components/resources", 684 "//components/resources",
688 "//net:net_resources", 685 "//net:net_resources",
689 "//ui/resources", 686 "//ui/resources",
690 ] 687 ]
691 688
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1112 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1109 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1113 "//chrome/tools/build/linux/chrome-wrapper", 1110 "//chrome/tools/build/linux/chrome-wrapper",
1114 "//third_party/xdg-utils/scripts/xdg-mime", 1111 "//third_party/xdg-utils/scripts/xdg-mime",
1115 "//third_party/xdg-utils/scripts/xdg-settings", 1112 "//third_party/xdg-utils/scripts/xdg-settings",
1116 ] 1113 ]
1117 outputs = [ 1114 outputs = [
1118 "$root_out_dir/{{source_file_part}}", 1115 "$root_out_dir/{{source_file_part}}",
1119 ] 1116 ]
1120 } 1117 }
1121 } 1118 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/chromium_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698