blob: c225e170c377cb77bff4cba789d58f97afb191b5 [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 conscrypt \
11 android.test.base \
12
13LOCAL_STATIC_JAVA_LIBRARIES := junit
Chad Brubaker6bc1e392015-10-23 15:33:56 -070014
15# Include all test java files.
16LOCAL_SRC_FILES := $(call all-java-files-under, src)
17
18LOCAL_PACKAGE_NAME := NetworkSecurityConfigTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000019LOCAL_PRIVATE_PLATFORM_APIS := true
Chad Brubaker6bc1e392015-10-23 15:33:56 -070020
21include $(BUILD_PACKAGE)