blob: 648af4e484930374cb0b940d61aeb332678e74ae [file] [log] [blame]
Marius Renn65953da2012-03-27 10:44:45 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
Paul Duffinb8663072017-12-08 00:02:42 +00007LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
8LOCAL_STATIC_JAVA_LIBRARIES := junit
Marius Renn65953da2012-03-27 10:44:45 -07009
10# Include all test java files.
11LOCAL_SRC_FILES := $(call all-java-files-under, src)
12
13LOCAL_PACKAGE_NAME := CameraEffectsTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000014LOCAL_PRIVATE_PLATFORM_APIS := true
Marius Renn65953da2012-03-27 10:44:45 -070015
16LOCAL_INSTRUMENTATION_FOR := CameraEffectsRecordingSample
17
18include $(BUILD_PACKAGE)
19
20