1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6LOCAL_SDK_VERSION := current
7
8LOCAL_SRC_FILES := \
9        $(call all-java-files-under, src)
10
11LOCAL_STATIC_JAVA_LIBRARIES := junit
12
13LOCAL_JAVA_LIBRARIES := android.test.runner.stubs android.test.base.stubs
14
15LOCAL_PACKAGE_NAME := Browser2
16
17include $(BUILD_PACKAGE)
18