blob: d3fbd0569e7815b2527829dba89ab0705e8782b1 [file] [log] [blame]
Neal Nguyen1a44d5d2010-01-13 10:42:43 -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
10LOCAL_JAVA_LIBRARIES := android.test.runner
Paul Duffin8aeb59e2017-01-10 12:08:23 +000011LOCAL_STATIC_JAVA_LIBRARIES := junit legacy-android-test
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080012LOCAL_PACKAGE_NAME := FrameworksSaxTests
13
14include $(BUILD_PACKAGE)
15