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

Commit 875bbc8f authored by Lajos Molnar's avatar Lajos Molnar
Browse files

stagefright: Codec2 unit tests for C2Param

Unit tests for C2Params, and param utils

Bug: 30262321
Change-Id: I589f639eae8904a2d17a0f63d07f5479aa14772f
parent 11ca9ffc
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
# Build the unit tests.
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk

LOCAL_MODULE := codec2_test

LOCAL_MODULE_TAGS := tests

LOCAL_SRC_FILES := \
	vndk/C2UtilTest.cpp \
	C2_test.cpp \
	C2Param_test.cpp \

LOCAL_SHARED_LIBRARIES := \
	libcutils \
	libstagefright_codec2 \
	liblog

LOCAL_C_INCLUDES := \
	frameworks/av/media/libstagefright/codec2/include \
	frameworks/av/media/libstagefright/codec2/vndk/include \
	$(TOP)/frameworks/native/include/media/openmax \

LOCAL_CFLAGS += -Werror -Wall -std=c++14
LOCAL_CLANG := true

include $(BUILD_NATIVE_TEST)

# Include subdirectory makefiles
# ============================================================

# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
# team really wants is to build the stuff defined by this makefile.
ifeq (,$(ONE_SHOT_MAKEFILE))
include $(call first-makefiles-under,$(LOCAL_PATH))
endif