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

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

Issue 2082573006: [iOS/GN] Replace the last to gyp-mac-tool commands with standalone scripts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: return 0 Created 4 years, 6 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 | build/config/ios/write_framework_hmap.py » ('j') | 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 65c062748c26f28a299e9cf1e493b8b6a1ede63a..21df1847fab0f5793afe1e3671072d09fa0389dd 100644
--- a/build/config/ios/rules.gni
+++ b/build/config/ios/rules.gni
@@ -428,7 +428,7 @@ template("ios_framework_bundle") {
_compile_headers_map_target = _target_name + "_compile_headers_map"
action(_compile_headers_map_target) {
visibility = [ ":$_framework_headers_target" ]
- script = "$root_out_dir/gyp-mac-tool"
+ script = "//build/config/ios/write_framework_hmap.py"
outputs = [
_header_map_filename,
]
@@ -448,7 +448,6 @@ template("ios_framework_bundle") {
set_sources_assignment_filter([])
args = [
- "compile-ios-framework-header-map",
rebase_path(_header_map_filename),
rebase_path(_framework_root, root_out_dir),
] + rebase_path(sources, root_out_dir)
@@ -457,14 +456,11 @@ template("ios_framework_bundle") {
_create_module_map_target = _target_name + "_module_map"
action(_create_module_map_target) {
visibility = [ ":$_framework_headers_target" ]
- script = "$root_out_dir/gyp-mac-tool"
+ script = "//build/config/ios/write_framework_modulemap.py"
outputs = [
"$_framework_root/Modules/module.modulemap",
]
- args = [
- "package-ios-framework",
- rebase_path("$_framework_root", root_out_dir),
- ]
+ args = [ rebase_path("$_framework_root", root_out_dir) ]
}
_copy_public_headers_target = _target_name + "_copy_public_headers"
« no previous file with comments | « no previous file | build/config/ios/write_framework_hmap.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698