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

Unified Diff: build/config/ios/rules.gni

Issue 2167933003: Keep ios_app_bundle final executable target name unchanged in fat builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios-sdk-platform-path
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ios/rules.gni
diff --git a/build/config/ios/rules.gni b/build/config/ios/rules.gni
index b0d248b107cc6b56e74b5ef0d59e06e49481372f..03c401ceb63a2ee4a3f17cc21a99d1deb9840748 100644
--- a/build/config/ios/rules.gni
+++ b/build/config/ios/rules.gni
@@ -211,7 +211,7 @@ template("ios_app_bundle") {
]
}
- _link_executable = _target_name + "_link_executable"
+ _link_executable = _target_name + "_executable"
_executable_path = "$target_out_dir/$_output_name"
if (ios_enable_code_signing) {
@@ -226,11 +226,12 @@ template("ios_app_bundle") {
# the same role as the "executable" target in a thin build, copy the
# visibility and redefine some variables.
if (_is_fat_build) {
- _lipo_executable = _target_name + "_lipo_executable"
+ _lipo_executable = _link_executable
_lipo_executable_visibility = _link_executable_visibility
_link_executable_visibility = []
_link_executable_visibility = [ ":$_lipo_executable" ]
+ _link_executable = _target_name + "_arch_executable"
_arch_executable_path = "$target_out_dir/$current_cpu/$_output_name"
}
« 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