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

Side by Side Diff: chrome/BUILD.gn

Issue 2403583002: More changes to support hermetic Xcode toolchain in GN. (Closed)
Patch Set: Comments from thakis. Created 4 years, 2 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
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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 sources = [ 904 sources = [
905 framework_path, 905 framework_path,
906 script, 906 script,
907 ] 907 ]
908 908
909 args = [ 909 args = [
910 rebase_path(framework_path, root_out_dir), 910 rebase_path(framework_path, root_out_dir),
911 rebase_path(output_path, root_out_dir), 911 rebase_path(output_path, root_out_dir),
912 ] 912 ]
913 913
914 if (!use_system_xcode) {
915 args += [ hermetic_xcode_path ]
916 }
917
914 outputs = [ 918 outputs = [
915 "$output_path/KeystoneRegistration.framework", 919 "$output_path/KeystoneRegistration.framework",
916 ] 920 ]
917 } 921 }
918 } else { 922 } else {
919 group("keystone_registration_framework") { 923 group("keystone_registration_framework") {
920 } 924 }
921 } 925 }
922 926
923 tweak_info_plist("chrome_framework_plist") { 927 tweak_info_plist("chrome_framework_plist") {
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1558 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1555 "//chrome/tools/build/linux/chrome-wrapper", 1559 "//chrome/tools/build/linux/chrome-wrapper",
1556 "//third_party/xdg-utils/scripts/xdg-mime", 1560 "//third_party/xdg-utils/scripts/xdg-mime",
1557 "//third_party/xdg-utils/scripts/xdg-settings", 1561 "//third_party/xdg-utils/scripts/xdg-settings",
1558 ] 1562 ]
1559 outputs = [ 1563 outputs = [
1560 "$root_out_dir/{{source_file_part}}", 1564 "$root_out_dir/{{source_file_part}}",
1561 ] 1565 ]
1562 } 1566 }
1563 } 1567 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698