Arun Raghavan c4fb4e38de Update common_audio
Corresponds to upstream commit 524e9b043e7e86fd72353b987c9d5f6a1ebf83e1

Update notes:

 * Moved src/ to webrtc/ to easily diff against the third_party/webrtc
   in the chromium tree

 * ARM/NEON/MIPS support is not yet hooked up

 * Tests have not been copied
2015-10-15 16:18:25 +05:30

14 lines
587 B
Makefile

noinst_LTLIBRARIES = libsystem_wrappers.la
libsystem_wrappers_la_SOURCES = interface/cpu_features_wrapper.h \
interface/critical_section_wrapper.h \
source/cpu_features.cc \
source/critical_section.cc \
source/critical_section_posix.h \
source/critical_section_windows.h
# This assumes that we want the POSIX implementation -- should eventually be
# converted to a conditional to include Windows support
libsystem_wrappers_la_SOURCES += source/critical_section_posix.cc
libsystem_wrappers_la_CXXFLAGS = $(AM_CXXFLAGS) $(COMMON_CXXFLAGS) \
-I$(srcdir)/interface