File tree 2 files changed +9
-9
lines changed
src/main/cpp/dependencies/webrtc
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 12
12
<packaging >pom</packaging >
13
13
14
14
<properties >
15
- <webrtc .branch>branch-heads/4606 </webrtc .branch>
15
+ <webrtc .branch>branch-heads/4515 </webrtc .branch>
16
16
<webrtc .src.dir>${user.home} /webrtc</webrtc .src.dir>
17
17
<webrtc .install.dir>${user.home} /webrtc/build</webrtc .install.dir>
18
18
<cmake .build.type>Release</cmake .build.type>
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ if(NOT EXISTS "${WEBRTC_SRC_DIR}/depot_tools")
125
125
message (STATUS "WebRTC: fetch depot tools" )
126
126
file (MAKE_DIRECTORY ${WEBRTC_SRC_DIR} )
127
127
execute_command(
128
- COMMAND git clone --depth 1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
128
+ COMMAND git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
129
129
WORKING_DIRECTORY "${WEBRTC_SRC_DIR} "
130
130
)
131
131
endif ()
@@ -136,7 +136,7 @@ file(MAKE_DIRECTORY ${WEBRTC_DIR})
136
136
137
137
message (STATUS "WebRTC: fetch" )
138
138
execute_command(
139
- COMMAND fetch --no -history -- nohooks webrtc
139
+ COMMAND fetch --nohooks webrtc
140
140
WORKING_DIRECTORY "${WEBRTC_DIR} "
141
141
)
142
142
@@ -149,12 +149,6 @@ string(REPLACE
149
149
"${DEPS_CONTENT} " )
150
150
file (WRITE "${WEBRTC_SRC} /DEPS" "${DEPS_CONTENT} " )
151
151
152
- message (STATUS "WebRTC: sync" )
153
- execute_command(
154
- COMMAND gclient sync
155
- WORKING_DIRECTORY "${WEBRTC_DIR} "
156
- )
157
-
158
152
message (STATUS "WebRTC: checkout \" ${WEBRTC_BRANCH} \" " )
159
153
execute_command(
160
154
COMMAND git checkout .
@@ -186,6 +180,12 @@ if (PATCHES)
186
180
endforeach (PATCH)
187
181
endif ()
188
182
183
+ message (STATUS "WebRTC: sync" )
184
+ execute_command(
185
+ COMMAND gclient sync
186
+ WORKING_DIRECTORY "${WEBRTC_DIR} "
187
+ )
188
+
189
189
message (STATUS "WebRTC: generate" )
190
190
set (COMPILE_ARGS "is_debug=false target_cpu=\" ${TARGET_CPU} \" rtc_include_tests=false use_rtti=true use_custom_libcxx=false symbol_level=0 rtc_use_h264=true" )
191
191
execute_command(
You can’t perform that action at this time.
0 commit comments