blob: a8f5b0867c650e19d16896124fcd5e6db928389a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7# Only compile source java files in this apk.
8LOCAL_SRC_FILES := $(call all-java-files-under, src)
9
10LOCAL_PACKAGE_NAME := ImfTest
Anton Hanssona3e79fb2018-02-23 12:57:51 +000011LOCAL_PRIVATE_PLATFORM_APIS := true
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012
13include $(BUILD_PACKAGE)
14
15# Use the following include to make our test apk.
16include $(call all-makefiles-under,$(LOCAL_PATH))