aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2018-07-16 12:39:37 -0700
committerIvan Lozano <ivanlozano@google.com>2018-07-16 16:56:44 -0700
commit662b247f656379ca3ed253ddaa96b234c1c49841 (patch)
tree5b3a5acfdefd2987af457b78fdcbb249de514b8d /test
parentbe2db551c531a3118ee64cdcdcdad2d9453ddb41 (diff)
downloadlibhevc-662b247f656379ca3ed253ddaa96b234c1c49841.tar.gz
Build hevcdec with Soong instead of Make.android-n-iot-release-smart-display-r2
Converts the hevcdec test binary to use the Soong build system. Bug: 110791537 Test: m -j48 hevcdec Change-Id: I6caa029905da69bf902ddff7b6e91cf749a0fa35
Diffstat (limited to 'test')
-rw-r--r--test/Android.mk5
-rw-r--r--test/decoder.mk15
2 files changed, 0 insertions, 20 deletions
diff --git a/test/Android.mk b/test/Android.mk
deleted file mode 100644
index 7807003..0000000
--- a/test/Android.mk
+++ /dev/null
@@ -1,5 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-include $(CLEAR_VARS)
-
-# decoder
-include $(LOCAL_PATH)/decoder.mk
diff --git a/test/decoder.mk b/test/decoder.mk
deleted file mode 100644
index 6b343a0..0000000
--- a/test/decoder.mk
+++ /dev/null
@@ -1,15 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := hevcdec
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_CFLAGS := \
- -DPROFILE_ENABLE -DARM -fPIC -DMD5_DISABLE \
- -Wall -Werror
-LOCAL_C_INCLUDES += $(LOCAL_PATH)/../decoder $(LOCAL_PATH)/../common $(LOCAL_PATH)/
-LOCAL_SRC_FILES := decoder/main.c
-LOCAL_STATIC_LIBRARIES := libhevcdec
-
-include $(BUILD_EXECUTABLE)