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

Side by Side Diff: chrome/BUILD.gn

Issue 1395073002: Policy Ui sends correct translations for risk tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Description corrected. Created 5 years, 1 month 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 | « build/ios/grit_whitelist.txt ('k') | chrome/browser/browser_resources.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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/locales.gni") 7 import("//build/config/locales.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/config/win/manifest.gni") 10 import("//build/config/win/manifest.gni")
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 } 544 }
545 } 545 }
546 546
547 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources 547 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources
548 group("extra_resources") { 548 group("extra_resources") {
549 public_deps = [ 549 public_deps = [
550 "//chrome/browser/resources:invalidations_resources", 550 "//chrome/browser/resources:invalidations_resources",
551 "//chrome/browser/resources:memory_internals_resources", 551 "//chrome/browser/resources:memory_internals_resources",
552 "//chrome/browser/resources:net_internals_resources", 552 "//chrome/browser/resources:net_internals_resources",
553 "//chrome/browser/resources:password_manager_internals_resources", 553 "//chrome/browser/resources:password_manager_internals_resources",
554 "//chrome/browser/resources:policy_resources",
554 "//chrome/browser/resources:signin_internals_resources", 555 "//chrome/browser/resources:signin_internals_resources",
555 "//chrome/browser/resources:translate_internals_resources", 556 "//chrome/browser/resources:translate_internals_resources",
556 ] 557 ]
557 if (!is_ios) { 558 if (!is_ios) {
558 public_deps += [ 559 public_deps += [
559 "//chrome/browser/resources:component_extension_resources", 560 "//chrome/browser/resources:component_extension_resources",
560 "//chrome/browser/resources:options_resources", 561 "//chrome/browser/resources:options_resources",
561 "//chrome/browser/resources:settings_resources", 562 "//chrome/browser/resources:settings_resources",
562 ] 563 ]
563 } 564 }
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 repack("packed_extra_resources") { 622 repack("packed_extra_resources") {
622 visibility = [ "./*" ] 623 visibility = [ "./*" ]
623 sources = [ 624 sources = [
624 "$root_gen_dir/chrome/browser_resources.pak", 625 "$root_gen_dir/chrome/browser_resources.pak",
625 "$root_gen_dir/chrome/chrome_unscaled_resources.pak", 626 "$root_gen_dir/chrome/chrome_unscaled_resources.pak",
626 "$root_gen_dir/chrome/common_resources.pak", 627 "$root_gen_dir/chrome/common_resources.pak",
627 "$root_gen_dir/chrome/invalidations_resources.pak", 628 "$root_gen_dir/chrome/invalidations_resources.pak",
628 "$root_gen_dir/chrome/memory_internals_resources.pak", 629 "$root_gen_dir/chrome/memory_internals_resources.pak",
629 "$root_gen_dir/chrome/net_internals_resources.pak", 630 "$root_gen_dir/chrome/net_internals_resources.pak",
630 "$root_gen_dir/chrome/password_manager_internals_resources.pak", 631 "$root_gen_dir/chrome/password_manager_internals_resources.pak",
632 "$root_gen_dir/chrome/policy_resources.pak",
631 "$root_gen_dir/chrome/signin_internals_resources.pak", 633 "$root_gen_dir/chrome/signin_internals_resources.pak",
632 "$root_gen_dir/chrome/translate_internals_resources.pak", 634 "$root_gen_dir/chrome/translate_internals_resources.pak",
633 "$root_gen_dir/components/components_resources.pak", 635 "$root_gen_dir/components/components_resources.pak",
634 "$root_gen_dir/net/net_resources.pak", 636 "$root_gen_dir/net/net_resources.pak",
635 "$root_gen_dir/ui/resources/webui_resources.pak", 637 "$root_gen_dir/ui/resources/webui_resources.pak",
636 ] 638 ]
637 deps = [ 639 deps = [
638 "//chrome/browser:resources", 640 "//chrome/browser:resources",
639 "//chrome/app/theme:chrome_unscaled_resources", 641 "//chrome/app/theme:chrome_unscaled_resources",
640 "//chrome/common:resources", 642 "//chrome/common:resources",
641 "//chrome/browser/resources:invalidations_resources", 643 "//chrome/browser/resources:invalidations_resources",
642 "//chrome/browser/resources:memory_internals_resources", 644 "//chrome/browser/resources:memory_internals_resources",
643 "//chrome/browser/resources:net_internals_resources", 645 "//chrome/browser/resources:net_internals_resources",
644 "//chrome/browser/resources:password_manager_internals_resources", 646 "//chrome/browser/resources:password_manager_internals_resources",
647 "//chrome/browser/resources:policy_resources",
645 "//chrome/browser/resources:signin_internals_resources", 648 "//chrome/browser/resources:signin_internals_resources",
646 "//chrome/browser/resources:translate_internals_resources", 649 "//chrome/browser/resources:translate_internals_resources",
647 "//components/resources", 650 "//components/resources",
648 "//net:net_resources", 651 "//net:net_resources",
649 "//ui/resources", 652 "//ui/resources",
650 ] 653 ]
651 654
652 if (!is_ios && !is_android) { 655 if (!is_ios && !is_android) {
653 # New paks should be added here by default. 656 # New paks should be added here by default.
654 sources += [ 657 sources += [
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1047 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1045 "//chrome/tools/build/linux/chrome-wrapper", 1048 "//chrome/tools/build/linux/chrome-wrapper",
1046 "//third_party/xdg-utils/scripts/xdg-mime", 1049 "//third_party/xdg-utils/scripts/xdg-mime",
1047 "//third_party/xdg-utils/scripts/xdg-settings", 1050 "//third_party/xdg-utils/scripts/xdg-settings",
1048 ] 1051 ]
1049 outputs = [ 1052 outputs = [
1050 "$root_out_dir/{{source_file_part}}", 1053 "$root_out_dir/{{source_file_part}}",
1051 ] 1054 ]
1052 } 1055 }
1053 } 1056 }
OLDNEW
« no previous file with comments | « build/ios/grit_whitelist.txt ('k') | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698