Skip to content
Snippets Groups Projects
Commit d6706951 authored by Brett Chabot's avatar Brett Chabot
Browse files

Build easymock as a target static library too.

Change-Id: Ia8a8cd92fad56ff633aab7598de178de360566ca
parent 17d5eb40
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
#
LOCAL_PATH := $(call my-dir)
# Build an easymock.jar to use for host side tests
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
......@@ -22,3 +24,13 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := easymock
include $(BUILD_HOST_JAVA_LIBRARY)
# Build an easymocklib.jar to use on device
include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_MODULE := easymocklib
include $(BUILD_STATIC_JAVA_LIBRARY)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment