Built from this commit:
commit c6b4e547a89b0628f80e057d27fc2fb89d651f3f
Author: pbos <pbos@webrtc.org>
Date: Sat Nov 5 03:10:22 2016 -0700
Add fuzzer for H264 bitstream parser.
BUG=webrtc:6454
R=kthelgason@webrtc.org
Review-Url: https://codereview.webrtc.org/2430703002
Cr-Commit-Position: refs/heads/master@{#14936}
We don't currently have an automated build (cocoapod/carthage) setup for
the WebRTC.framework. Instead, I fetched the WebRTC upstream source and
followed the setup instructions here:
https://webrtc.org/native-code/ios/
Once the build environment was set up and the WebRTC source
downloaded I ran:
# `webrtc` being the root of the fetched repository
cd webrtc
# build a fat framework
src/webrtc/build/ios/build_ios_libs.sh
# Put it in our frameworks search path
mv src/webrtc/ios_libs_out/WebRTC.framework ../Signal-iOS/Carthage/Builds
7 lines
93 B
Plaintext
7 lines
93 B
Plaintext
framework module WebRTC {
|
|
umbrella header "WebRTC.h"
|
|
|
|
export *
|
|
module * { export * }
|
|
}
|