Skip to content

Commit 31754f6

Browse files
authored
Merge pull request #1 from sendbird/develop
Sync with SendBirdWebRTC 1.1.1
2 parents 7eccfc6 + d13ef15 commit 31754f6

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,4 @@
7171
/xcodebuild
7272
/.vscode
7373
!webrtc/*
74+
out_ios_libs

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
This repository is a private branch of [Google's WebRTC Source](https://chromium.googlesource.com/external/webrtc.git).
2+
3+
This repository is used to compile [SendBirdWebRTC](https://github.com/sendbird/sendbird-webrtc-ios), and keep track of SendBird's changes.
4+
5+
In order to use this repository as a reflection of Google's Public WebRTC source, refer to this [medium guide](https://medium.com/@bilalbayasut/github-how-to-make-a-fork-of-public-repository-private-6ee8cacaf9d3) to fork public repository into this private repository.
6+
7+
---
8+
19
**WebRTC is a free, open software project** that provides browsers and mobile
210
applications with Real-Time Communications (RTC) capabilities via simple APIs.
311
The WebRTC components have been optimized to best serve this purpose.

sdk/objc/api/peerconnection/RTCPeerConnection.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ RTC_OBJC_EXPORT
343343

344344
typedef void (^RTCStatisticsCompletionHandler)(RTC_OBJC_TYPE(RTCStatisticsReport) *);
345345

346+
RTC_OBJC_EXPORT
346347
@interface RTC_OBJC_TYPE (RTCPeerConnection)
347348
(Stats)
348349

tools_webrtc/ios/build_ios_libs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
SDK_FRAMEWORK_NAME = 'WebRTC.framework'
3434

3535
DEFAULT_ARCHS = ENABLED_ARCHS = ['arm64', 'arm', 'x64', 'x86']
36-
IOS_DEPLOYMENT_TARGET = '10.0'
37-
LIBVPX_BUILD_VP9 = False
36+
IOS_DEPLOYMENT_TARGET = '9.0'
37+
LIBVPX_BUILD_VP9 = True
3838

3939
sys.path.append(os.path.join(SCRIPT_DIR, '..', 'libs'))
4040
from generate_licenses import LicenseBuilder
@@ -59,7 +59,7 @@ def _ParseArgs():
5959
'If specified together with -c, deletes the dir.')
6060
parser.add_argument('-r', '--revision', type=int, default=0,
6161
help='Specifies a revision number to embed if building the framework.')
62-
parser.add_argument('-e', '--bitcode', action='store_true', default=False,
62+
parser.add_argument('-e', '--bitcode', action='store_true', default=True,
6363
help='Compile with bitcode.')
6464
parser.add_argument('--verbose', action='store_true', default=False,
6565
help='Debug logging.')

0 commit comments

Comments
 (0)