Webrtc 编译

Reference:

http://blog.csdn.net/luansxx/article/details/11563433

http://www.webrtc.org/reference/getting-started

 

1. Check out as usual:

gclient config http://webrtc.googlecode.com/svn/trunk

echo "target_os = ['android', 'unix']" >> .gclient

gclient sync --revision trunk@4876 --froce

 

2. Generate ninja makefiles:

cd trunk

source ./build/android/envsetup.sh

gclient runhooks --force

 

3. Build and Install Demo app:

ninja -C out/Debug WebRTCDemo

adb install -r webrtc/video_engine/test/android/bin/WebRTCDemo-debug.apk

 

你可能感兴趣的:(WebRTC)