pristineio / webrtc-build-scripts

A set of build scripts useful for building WebRTC libraries for Android and iOS.
BSD 3-Clause "New" or "Revised" License
1.13k stars 447 forks source link

get_webrtc does not seem to invoke "git pull" in libwebrtc src #147

Closed ibc closed 8 years ago

ibc commented 8 years ago

Should get_webrtc produce a git pull of the libwebrtc source? I don't see that (testing for iOS).

kolencherry commented 8 years ago

get_webrtc calls update2Revision, which configures gclient and calls sync. sync executes a gclient sync, which updates/clones the associated webrtc repositories. The deps for the underlying webrtc library use a multiple VCSes. gclient performs the appropriate commands (behind the scenes) to keep them up to date.

ibc commented 8 years ago

Thanks.