Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b092a173 authored by Trevor Drake's avatar Trevor Drake
Browse files

Remove obsolete TARGET_SIMULATOR checks

Change-Id: I9d499190e49fed16aac686ae5da79ab870605ff4
parent cf1e3bb2
Loading
Loading
Loading
Loading
+11 −24
Original line number Diff line number Diff line
@@ -6,22 +6,16 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
	EffectReverb.c.arm \
	EffectsMath.c.arm
LOCAL_CFLAGS+= -O2

LOCAL_CFLAGS := -O2

LOCAL_SHARED_LIBRARIES := \
	libcutils
	libcutils \
	libdl

LOCAL_MODULE_RELATIVE_PATH := soundfx
LOCAL_MODULE := libreverbtest

ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
LOCAL_LDLIBS += -ldl
endif

ifneq ($(TARGET_SIMULATOR),true)
LOCAL_SHARED_LIBRARIES += libdl
endif

LOCAL_C_INCLUDES := \
	$(call include-path-for, audio-effects) \
	$(call include-path-for, graphics corecg)
@@ -42,22 +36,15 @@ LOCAL_SRC_FILES:= \
	AudioShelvingFilter.cpp.arm \
	AudioEqualizer.cpp.arm

LOCAL_CFLAGS+= -O2
LOCAL_CFLAGS := -O2

LOCAL_SHARED_LIBRARIES := \
	libcutils
	libcutils \
	libdl

LOCAL_MODULE_RELATIVE_PATH := soundfx
LOCAL_MODULE := libequalizertest

ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
LOCAL_LDLIBS += -ldl
endif

ifneq ($(TARGET_SIMULATOR),true)
LOCAL_SHARED_LIBRARIES += libdl
endif

LOCAL_C_INCLUDES := \
	$(call include-path-for, graphics corecg) \
	$(call include-path-for, audio-effects)