summaryrefslogtreecommitdiffstats
path: root/Android.mk
blob: 02ba333b4ea3e2169b876982ea8537883523b9fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := user

# TODO: Remove dependency of application on the test runner (android.test.runner) 
# library.
LOCAL_JAVA_LIBRARIES := android.test.runner

LOCAL_STATIC_JAVA_LIBRARIES := google-framework

LOCAL_SRC_FILES := $(call all-subdir-java-files)

LOCAL_PACKAGE_NAME := Browser

include $(BUILD_PACKAGE)