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

Commit bc74b01d authored by Steven Moreland's avatar Steven Moreland
Browse files

OMX Hal: depend on libavservices_minijail_vendor.

libminijail_vendor was added so that OMX can depend on
it. However, OMX's dependency is actually through the
library libavservices_minijail.

Bug: 37343418
Test: (sanity) YouTube
Test: dependency error no longer shows when compiling with
  BOARD_VNDK_VERSION := current
Change-Id: Ife1dc09d8d225adf592829da9cf5603f8f543709
parent 6be8c055
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ LOCAL_SHARED_LIBRARIES := \
    libgui \
    liblog \
    libbase \
    libavservices_minijail \
    libavservices_minijail_vendor \
    libcutils \
    libhwbinder \
    libhidltransport \
+8 −0
Original line number Diff line number Diff line
@@ -8,6 +8,14 @@ LOCAL_SHARED_LIBRARIES := libbase libminijail
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
include $(BUILD_SHARED_LIBRARY)

# Small library for media.extractor and media.codec sandboxing.
include $(CLEAR_VARS)
LOCAL_MODULE := libavservices_minijail_vendor
LOCAL_VENDOR_MODULE := true
LOCAL_SRC_FILES := minijail.cpp
LOCAL_SHARED_LIBRARIES := libbase libminijail_vendor
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
include $(BUILD_SHARED_LIBRARY)

# Unit tests.
include $(CLEAR_VARS)