blob: a6c21db1684688feba0040641c0d6458f85a9553 [file] [log] [blame]
Chad Brubaker6bc1e392015-10-23 15:33:56 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6LOCAL_CERTIFICATE := platform
7
Paul Duffinb8663072017-12-08 00:02:42 +00008LOCAL_JAVA_LIBRARIES := \
9 android.test.runner \
Paul Duffinb8663072017-12-08 00:02:42 +000010 android.test.base \
11
12LOCAL_STATIC_JAVA_LIBRARIES := junit
Chad Brubaker6bc1e392015-10-23 15:33:56 -070013
14# Include all test java files.
15LOCAL_SRC_FILES := $(call all-java-files-under, src)
16
17LOCAL_PACKAGE_NAME := NetworkSecurityConfigTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000018LOCAL_PRIVATE_PLATFORM_APIS := true
Chad Brubaker6bc1e392015-10-23 15:33:56 -070019
20include $(BUILD_PACKAGE)