blob: 3dcf694263626cb265841545b0e4296a57949435 [file] [log] [blame]
Neal Nguyen22e31e52010-01-07 10:14:05 -08001LOCAL_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 := $(call all-java-files-under, src)
9
Paul Duffin2710ca12017-12-05 18:36:56 +000010LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
Neal Nguyen22e31e52010-01-07 10:14:05 -080011LOCAL_PACKAGE_NAME := FrameworksLocationTests
Anton Hanssonab6ec612018-02-23 12:57:51 +000012LOCAL_PRIVATE_PLATFORM_APIS := true
Neal Nguyen22e31e52010-01-07 10:14:05 -080013
tccyp6cc7d832017-11-15 10:51:53 -080014LOCAL_STATIC_JAVA_LIBRARIES := \
KOUSHIK PANUGANTI17bc6372018-12-17 18:40:30 -080015 androidx.test.rules \
tccyp6cc7d832017-11-15 10:51:53 -080016 core-test-rules \
17 guava \
18 mockito-target-minus-junit4 \
19 frameworks-base-testutils \
20 truth-prebuilt \
Neal Nguyen22e31e52010-01-07 10:14:05 -080021
tccyp6cc7d832017-11-15 10:51:53 -080022LOCAL_COMPATIBILITY_SUITE := device-tests
23include $(BUILD_PACKAGE)