Update to current webrtc library
This is from the upstream library commit id 3326535126e435f1ba647885ce43a8f0f3d317eb, corresponding to Chromium 88.0.4290.1.
This commit is contained in:
21
webrtc/third_party/pffft/meson.build
vendored
Normal file
21
webrtc/third_party/pffft/meson.build
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
pffft_sources = [
|
||||
'src/pffft.c',
|
||||
]
|
||||
|
||||
pffft_cflags = [ '-D_GNU_SOURCE' ]
|
||||
|
||||
if (have_arm and not have_neon) or (have_mips and host_machine.endian() == 'little') or have_mips64
|
||||
pffft_cflags += [ '-DPFFFT_SIMD_DISABLE' ]
|
||||
endif
|
||||
|
||||
libpffft = static_library('libpffft',
|
||||
pffft_sources,
|
||||
dependencies: common_deps,
|
||||
include_directories: webrtc_inc,
|
||||
c_args : common_cflags + pffft_cflags
|
||||
)
|
||||
|
||||
pffft_dep = declare_dependency(
|
||||
link_with: libpffft
|
||||
)
|
||||
|
Reference in New Issue
Block a user