Bump to WebRTC M120 release
Some API deprecation -- ExperimentalAgc and ExperimentalNs are gone. We're continuing to carry iSAC even though it's gone upstream, but maybe we'll want to drop that soon.
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
base_sources = [
|
||||
'checks.cc',
|
||||
'containers/flat_tree.cc',
|
||||
'event.cc',
|
||||
'event_tracer.cc',
|
||||
'experiments/field_trial_parser.cc',
|
||||
@ -8,15 +9,16 @@ base_sources = [
|
||||
'platform_thread.cc',
|
||||
'platform_thread_types.cc',
|
||||
'race_checker.cc',
|
||||
'random.cc',
|
||||
'string_encode.cc',
|
||||
'string_to_number.cc',
|
||||
'string_utils.cc',
|
||||
'strings/string_builder.cc',
|
||||
'synchronization/mutex.cc',
|
||||
'synchronization/rw_lock_wrapper.cc',
|
||||
'synchronization/sequence_checker_internal.cc',
|
||||
'synchronization/yield.cc',
|
||||
'synchronization/yield_policy.cc',
|
||||
'system/file_wrapper.cc',
|
||||
'system_time.cc',
|
||||
'time_utils.cc',
|
||||
'zero_memory.cc',
|
||||
]
|
||||
@ -24,8 +26,6 @@ base_sources = [
|
||||
base_headers = [
|
||||
[ '', 'arraysize.h' ],
|
||||
[ '', 'checks.h' ],
|
||||
[ '', 'constructor_magic.h' ],
|
||||
[ '', 'deprecation.h' ],
|
||||
[ '', 'ref_count.h' ],
|
||||
[ '', 'type_traits.h' ],
|
||||
[ 'numerics', 'safe_compare.h' ],
|
||||
@ -34,16 +34,6 @@ base_headers = [
|
||||
[ 'system', 'rtc_export.h' ],
|
||||
]
|
||||
|
||||
if have_posix
|
||||
base_sources += [
|
||||
'synchronization/rw_lock_posix.cc',
|
||||
]
|
||||
elif have_win
|
||||
base_sources += [
|
||||
'synchronization/rw_lock_win.cc',
|
||||
]
|
||||
endif
|
||||
|
||||
foreach h : base_headers
|
||||
install_headers(
|
||||
join_paths(h[0], h[1]),
|
||||
@ -64,6 +54,10 @@ elif host_system == 'ios'
|
||||
'UIKit',
|
||||
]
|
||||
)
|
||||
elif host_system == 'android'
|
||||
base_sources += [
|
||||
'system/warn_current_thread_is_deadlocked.cc',
|
||||
]
|
||||
endif
|
||||
|
||||
libbase = static_library('libbase',
|
||||
|
Reference in New Issue
Block a user