Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 142955b

Browse files
authored
Use stdlib intead of libevent for taskqueue impl. (#493)
1 parent 1450f9b commit 142955b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/build_android.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ def get_location(arch, debug):
2020
def gn_gen(arch, debug):
2121
print '\n> generating args for', arch, ('debug' if debug else 'release')
2222
output_location = get_location(arch, debug)
23-
gn_args = '--args=target_os=\"android\" is_component_build=false rtc_include_tests=false '\
23+
gn_args = '--args=target_os=\"android\" rtc_build_libevent=false rtc_enable_libevent=false '\
24+
'is_component_build=false rtc_include_tests=false '\
2425
'target_cpu=\"' + arch +\
2526
'\" is_debug=' + ('true' if debug else 'false') +\
2627
' rtc_use_h265=true'

0 commit comments

Comments
 (0)