blob: f8cfafec704ad378694107b7ec91600abd3b9f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := user development
# TODO: Remove dependency of application on the test runner (android.test.runner)
# library.
LOCAL_JAVA_LIBRARIES := android.test.runner
LOCAL_STATIC_JAVA_LIBRARIES := googlelogin-client
LOCAL_SRC_FILES := $(call all-subdir-java-files) \
src/com/android/browser/IGearsDialogService.aidl
LOCAL_PACKAGE_NAME := Browser
include $(BUILD_PACKAGE)
|