blob: b49680506802f03a43806b36bb23d71b7ef8a9b6 [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.
Neal Nguyen1a44d5d2010-01-13 10:42:43 -08008LOCAL_SRC_FILES := \
9 $(call all-java-files-under, src) \
Dan Egnor43fe81b2010-05-07 09:32:54 -070010 $(call all-Iaidl-files-under, src) \
Brett Chabot0dc59e72010-04-01 18:21:38 -070011 $(call all-java-files-under, DisabledTestApp/src) \
Dan Egnor43fe81b2010-05-07 09:32:54 -070012 $(call all-java-files-under, EnabledTestApp/src)
Neal Nguyen22e31e52010-01-07 10:14:05 -080013
Brian Carlstrom3c7c3512010-08-04 15:44:39 -070014LOCAL_DX_FLAGS := --core-library
Neal Nguyen5f53bca2010-08-09 14:08:26 -070015LOCAL_STATIC_JAVA_LIBRARIES := core-tests-supportlib android-common frameworks-core-util-lib
Brett Chabot56718cb2010-08-09 18:49:54 -070016LOCAL_JAVA_LIBRARIES := android.test.runner
Neal Nguyen22e31e52010-01-07 10:14:05 -080017LOCAL_PACKAGE_NAME := FrameworksCoreTests
18
Neal Nguyen1a44d5d2010-01-13 10:42:43 -080019LOCAL_CERTIFICATE := platform
20
Neal Nguyen22e31e52010-01-07 10:14:05 -080021include $(BUILD_PACKAGE)
22
Brett Chabot0dc59e72010-04-01 18:21:38 -070023include $(call all-makefiles-under,$(LOCAL_PATH))