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

Commit 5e0067b4 authored by Jeff Brown's avatar Jeff Brown
Browse files

Remove the simulator target from all makefiles.

Bug: 5010576

Change-Id: I04d722f258951a3078fe07899f5bbe8aac02a8e8
parent 52f556b9
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -20,8 +20,4 @@ LOCAL_SHARED_LIBRARIES := \

LOCAL_MODULE:= libcamera_client

ifeq ($(TARGET_SIMULATOR),true)
    LOCAL_LDLIBS += -lpthread
endif

include $(BUILD_SHARED_LIBRARY)
+2 −7
Original line number Diff line number Diff line
@@ -24,13 +24,8 @@ LOCAL_SRC_FILES:= \
LOCAL_SHARED_LIBRARIES := \
    libmedia \
    libutils \
    libbinder

ifeq ($(TARGET_SIMULATOR),true)
 LOCAL_LDLIBS += -ldl
else
 LOCAL_SHARED_LIBRARIES += libdl
endif
    libbinder \
    libdl

LOCAL_STATIC_LIBRARIES := libdrmframeworkcommon

+2 −7
Original line number Diff line number Diff line
@@ -25,13 +25,8 @@ LOCAL_MODULE:= libdrmframework

LOCAL_SHARED_LIBRARIES := \
    libutils \
    libbinder

ifeq ($(TARGET_SIMULATOR),true)
 LOCAL_LDLIBS += -ldl
else
 LOCAL_SHARED_LIBRARIES += libdl
endif
    libbinder \
    libdl

LOCAL_STATIC_LIBRARIES := \
    libdrmframeworkcommon
+2 −8
Original line number Diff line number Diff line
@@ -24,14 +24,8 @@ LOCAL_MODULE := libdrmpassthruplugin
LOCAL_STATIC_LIBRARIES := libdrmframeworkcommon

LOCAL_SHARED_LIBRARIES := \
    libutils

ifeq ($(TARGET_SIMULATOR),true)
 LOCAL_LDLIBS += -ldl
else
 LOCAL_SHARED_LIBRARIES += libdl
endif

    libutils \
    libdl


LOCAL_C_INCLUDES += \
+0 −8
Original line number Diff line number Diff line
@@ -12,14 +12,6 @@ LOCAL_SHARED_LIBRARIES := \
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
LOCAL_MODULE:= libeffects

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

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

LOCAL_C_INCLUDES := \

include $(BUILD_SHARED_LIBRARY)
Loading