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

Unified Diff: webrtc/build/ios/build_ios_libs.sh

Issue 1895713002: Move logic of gyp_webrtc into gyp_webrtc.py (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix PyLint warning Created 4 years, 8 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 | « webrtc/build/gyp_webrtc.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/build/ios/build_ios_libs.sh
diff --git a/webrtc/build/ios/build_ios_libs.sh b/webrtc/build/ios/build_ios_libs.sh
index a01d128373eb216f499d0a800700e26b690b8b61..56175520fc8cf917eafad69da35d4cce58c3eaf5 100755
--- a/webrtc/build/ios/build_ios_libs.sh
+++ b/webrtc/build/ios/build_ios_libs.sh
@@ -16,7 +16,7 @@ set -e
# Globals.
SCRIPT_DIR=$(cd $(dirname $0) && pwd)
WEBRTC_BASE_DIR=${SCRIPT_DIR}/../../..
-GYP_WEBRTC_SCRIPT=${WEBRTC_BASE_DIR}/webrtc/build/gyp_webrtc
+GYP_WEBRTC_SCRIPT=${WEBRTC_BASE_DIR}/webrtc/build/gyp_webrtc.py
EXPORT_HEADERS_SCRIPT=${SCRIPT_DIR}/export_headers.py
MERGE_SCRIPT=${SCRIPT_DIR}/merge_ios_libs.py
@@ -70,7 +70,7 @@ clang_xcode=1 ios_override_visibility=1"
# GYP generation requires relative path for some reason.
pushd ${WEBRTC_BASE_DIR}
- webrtc/build/gyp_webrtc webrtc/build/ios/merge_ios_libs.gyp
+ ${GYP_WEBRTC_SCRIPT} webrtc/build/ios/merge_ios_libs.gyp
popd
if [[ ${USE_LEGACY_API} -eq 1 ]]; then
ninja -C ${ninja_output_dir}/${flavor} libjingle_peerconnection_objc_no_op
« no previous file with comments | « webrtc/build/gyp_webrtc.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698