blob: 7765977c03e8886d5098d36ef86c5b71f6a60181 [file] [log] [blame]
Ricky Wai0d1bc332017-10-31 14:31:01 +00001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6
7# Include all test java files.
8LOCAL_SRC_FILES := \
9 $(call all-java-files-under, src)
10
KOUSHIK PANUGANTIa6a9d0f2018-12-17 18:14:55 -080011LOCAL_STATIC_JAVA_LIBRARIES := junit rappor-tests androidx.test.rules truth-prebuilt
Ricky Wai0d1bc332017-10-31 14:31:01 +000012
13LOCAL_JAVA_LIBRARIES := android.test.runner
14LOCAL_PACKAGE_NAME := FrameworksPrivacyLibraryTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000015LOCAL_PRIVATE_PLATFORM_APIS := true
Ricky Wai0d1bc332017-10-31 14:31:01 +000016
Peter Visontayde611202018-01-04 15:19:39 +000017LOCAL_CERTIFICATE := platform
18LOCAL_COMPATIBILITY_SUITE := device-tests
19
Ricky Wai0d1bc332017-10-31 14:31:01 +000020include $(BUILD_PACKAGE)