Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions webrtc-jni/src/main/cpp/dependencies/webrtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,17 @@ endif()

set(ENV{PATH} "${WEBRTC_SRC_DIR}/depot_tools${PATH_SEP}$ENV{PATH}")

# Since depot_tools d4e95894 the fetch wrapper runs the hermetic Python that
# only exists after the bootstrap, which fetch used to perform itself. The
# Windows wrapper still bootstraps on its own.
if(UNIX)
message(STATUS "WebRTC: bootstrap depot tools")
execute_command(
COMMAND ensure_bootstrap
WORKING_DIRECTORY "${WEBRTC_SRC_DIR}/depot_tools"
)
endif()

file(MAKE_DIRECTORY ${WEBRTC_DIR})

message(STATUS "WebRTC: fetch")
Expand Down