Files
frameworks_base/tests/CoreTests/android/Android.mk
Narayan Kamath 0fbfc627ee CoreTests: Tidy up legacy tests.
(not to be confused with core/tests/FrameworksCoreTests.)

- JniLibTest: Completely broken, ther's no Jni lib to load.
- MiscRegressionTest: Doesn't test anything.
- Sha1Test: We have more systematic and complete benchmarks in libcore.

The Apache HTTP tests remain, and only because they are the only
remaining tests of the Apache HTTP lib. They will be moved to the apache
repository in a separate commit.

Also remove bogus dependencies on conscrypt and bouncycastle.

Bug: 73635411
Test: adb shell am instrument -w android.core/android.test.InstrumentationTestRunner

Change-Id: Ia3648da023ceabcb6023941961810516857c4f48
2018-02-21 14:52:51 +00:00

21 lines
382 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \
$(call all-subdir-java-files)
LOCAL_JAVA_LIBRARIES := \
android.test.runner.stubs \
org.apache.http.legacy \
android.test.base.stubs \
LOCAL_SDK_VERSION := current
LOCAL_STATIC_JAVA_LIBRARIES := junit
LOCAL_PACKAGE_NAME := LegacyCoreTests
include $(BUILD_PACKAGE)