2010-01-13 10:42:43 -08:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
# We only want this apk build for tests.
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
|
|
|
|
# Include all test java files.
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
|
2011-04-25 23:44:11 -07:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
|
|
easymocklib \
|
|
|
|
guava
|
2010-01-13 10:42:43 -08:00
|
|
|
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner services
|
2010-04-16 18:52:49 -07:00
|
|
|
|
2010-01-13 10:42:43 -08:00
|
|
|
LOCAL_PACKAGE_NAME := FrameworksServicesTests
|
|
|
|
|
2010-02-02 17:09:00 -08:00
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
|
2010-01-13 10:42:43 -08:00
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|