blob: d94233c539fd326ea7bcf95ff965a411e333b577 [file] [log] [blame]
The Android Open Source Project792a2202009-03-03 19:32:30 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
Neal Nguyenfcb30992011-02-18 17:43:28 -08005LOCAL_MODULE_TAGS := optional
The Android Open Source Project792a2202009-03-03 19:32:30 -08006
Paul Duffin7d1b5bc2018-01-24 11:51:57 +00007LOCAL_STATIC_JAVA_LIBRARIES := junit android.test.legacy
Paul Duffin3dafcec2017-03-01 13:21:11 +00008
The Android Open Source Project792a2202009-03-03 19:32:30 -08009# Include all test java files.
10LOCAL_SRC_FILES := $(call all-java-files-under, src)
11
12LOCAL_PACKAGE_NAME := MusicTests
13
14LOCAL_INSTRUMENTATION_FOR := Music
15
Marco Nelissenff3d4372010-01-27 09:46:40 -080016LOCAL_SDK_VERSION := current
17
The Android Open Source Project792a2202009-03-03 19:32:30 -080018include $(BUILD_PACKAGE)