Change log:67eba1f62b..3c3851d3caFull diff:67eba1f62b..3c3851d3caThis CL also includes all the required updates to remove the jcaller object from the parameter list of methods that don't need it. Changed dependencies * src/base:a0992bdcd3..4ee11af5ff* src/build:e36ae524d9..4ae7e91430* src/ios:a87556eeec..429f84ccae* src/testing:f391f81ac8..313b861b55* src/third_party:dc1d83593b..dc539d589f* src/third_party/depot_tools:e3614ad6f5..c10743f873* src/tools:97c481e2cf..b74bc013c1DEPS diff:67eba1f62b..3c3851d3ca/DEPS No update to Clang. TBR=chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com, BUG=None No-Try: True Change-Id: I284a086d320c2df7a33152098a196f5af813375a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/147261 Reviewed-by: Oleh Prypin <oprypin@webrtc.org> Reviewed-by: Sami Kalliomäki <sakal@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28698}
This directory holds a Java implementation of the webrtc::PeerConnection API, as
well as the JNI glue C++ code that lets the Java implementation reuse the C++
implementation of the same API.
To build the Java API and related tests, make sure you have a WebRTC checkout
with Android specific parts. This can be used for linux development as well by
configuring gn appropriately, as it is a superset of the webrtc checkout:
fetch --nohooks webrtc_android
gclient sync
You also must generate GN projects with:
--args='target_os="android" target_cpu="arm"'
More information on getting the code, compiling and running the AppRTCMobile
app can be found at:
https://webrtc.org/native-code/android/
To use the Java API, start by looking at the public interface of
org.webrtc.PeerConnection{,Factory} and the org.webrtc.PeerConnectionTest.
To understand the implementation of the API, see the native code in src/jni/pc/.