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

Side by Side Diff: chrome/BUILD.gn

Issue 2490253002: [Mac/GN] Create symlinks for every item //chrome:chrome_framework when versioned. (Closed)
Patch Set: Created 4 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 | « no previous file | no next file » | 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 997 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 mac_framework_bundle("chrome_framework") { 1008 mac_framework_bundle("chrome_framework") {
1009 output_name = chrome_framework_name 1009 output_name = chrome_framework_name
1010 1010
1011 if (defined(chrome_framework_version)) { 1011 if (defined(chrome_framework_version)) {
1012 framework_version = chrome_framework_version 1012 framework_version = chrome_framework_version
1013 framework_contents = [ 1013 framework_contents = [
1014 "Helpers", 1014 "Helpers",
1015 "Resources", 1015 "Resources",
1016 ] 1016 ]
1017 1017
1018 if (is_chrome_branded) {
1019 framework_contents += [ "Default Apps" ]
1020 }
1021 if (enable_nacl) {
1022 framework_contents += [ "Internet Plug-Ins" ]
1023 }
1024 if (_should_bundle_widevine) {
1025 framework_contents += [ "Libraries" ]
1026 }
1018 if (enable_xpc_notifications) { 1027 if (enable_xpc_notifications) {
1019 framework_contents += [ "XPCServices" ] 1028 framework_contents += [ "XPCServices" ]
1020 } 1029 }
1021 } 1030 }
1022 1031
1023 configs += [ "//build/config/compiler:wexit_time_destructors" ] 1032 configs += [ "//build/config/compiler:wexit_time_destructors" ]
1024 1033
1025 info_plist_target = ":chrome_framework_plist" 1034 info_plist_target = ":chrome_framework_plist"
1026 extra_substitutions = [ 1035 extra_substitutions = [
1027 "CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id", 1036 "CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id",
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1602 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1594 "//chrome/tools/build/linux/chrome-wrapper", 1603 "//chrome/tools/build/linux/chrome-wrapper",
1595 "//third_party/xdg-utils/scripts/xdg-mime", 1604 "//third_party/xdg-utils/scripts/xdg-mime",
1596 "//third_party/xdg-utils/scripts/xdg-settings", 1605 "//third_party/xdg-utils/scripts/xdg-settings",
1597 ] 1606 ]
1598 outputs = [ 1607 outputs = [
1599 "$root_out_dir/{{source_file_part}}", 1608 "$root_out_dir/{{source_file_part}}",
1600 ] 1609 ]
1601 } 1610 }
1602 } 1611 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698