blob: dd9ff11971eb20b6ff9b74f66df0854806f9e803 [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
8LOCAL_JAVA_LIBRARIES := android.test.runner bouncycastle conscrypt
Paul Duffin8aeb59e2017-01-10 12:08:23 +00009LOCAL_STATIC_JAVA_LIBRARIES := junit legacy-android-test
Chad Brubaker6bc1e392015-10-23 15:33:56 -070010
11# Include all test java files.
12LOCAL_SRC_FILES := $(call all-java-files-under, src)
13
14LOCAL_PACKAGE_NAME := NetworkSecurityConfigTests
15
16include $(BUILD_PACKAGE)