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

Commit df74e597 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "TEST_MAPPING for stagefright foundation classes" am: a85202f4

Change-Id: I58792bbcf92562ead159d9ceceb5536bf940dca5
parents 47e59e4d a85202f4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
{
  "presubmit": [
    { "name": "sf_foundation_test" }
  ]
}
+27 −0
Original line number Diff line number Diff line
cc_test {
    name: "sf_foundation_test",
    test_suites: ["device-tests"],

    cflags: [
        "-Werror",
        "-Wall",
    ],

    include_dirs: [
        "frameworks/av/include",
    ],

    shared_libs: [
        "liblog",
        "libstagefright_foundation",
        "libutils",
    ],

    srcs: [
        "AData_test.cpp",
        "Base64_test.cpp",
        "Flagged_test.cpp",
        "TypeTraits_test.cpp",
        "Utils_test.cpp",
    ],
}
+0 −37
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 := sf_foundation_test

LOCAL_MODULE_TAGS := tests

LOCAL_SRC_FILES := \
	AData_test.cpp \
	Base64_test.cpp \
	Flagged_test.cpp \
	TypeTraits_test.cpp \
	Utils_test.cpp \

LOCAL_SHARED_LIBRARIES := \
	liblog \
	libstagefright_foundation \
	libutils \

LOCAL_C_INCLUDES := \
	frameworks/av/include \

LOCAL_CFLAGS += -Werror -Wall
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