summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 06d01f34bfefc199c43bc19eeaf83f4b1c17b7b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ifeq ($(BOARD_USE_HTC_APPS),true)

LOCAL_PATH:= $(call my-dir)

###############################################################################
include $(CLEAR_VARS)

LOCAL_MODULE := FieldTest
LOCAL_SRC_FILES := proprietary/$(LOCAL_MODULE).apk
LOCAL_MODULE_CLASS := APPS
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)

include $(BUILD_PREBUILT)

###############################################################################
include $(CLEAR_VARS)

LOCAL_SRC_FILES := proprietary/debug_tool
LOCAL_MODULE := debug_tool
LOCAL_MODULE_CLASS := EXECUTABLES

include $(BUILD_PREBUILT)

###############################################################################
include $(CLEAR_VARS)

LOCAL_SRC_FILES := proprietary/htclogkernel
LOCAL_MODULE := htclogkernel
LOCAL_MODULE_CLASS := EXECUTABLES

include $(BUILD_PREBUILT)

endif # ifeq ($(BOARD_USE_HTC_APPS),true)