summaryrefslogtreecommitdiffstats
path: root/cmds/bugreport/Android.mk
blob: 631c2193a9878d251eca008b5320fdc993cf78b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ifneq ($(TARGET_SIMULATOR),true)

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= bugreport.c

LOCAL_MODULE:= bugreport

LOCAL_SHARED_LIBRARIES := libcutils

include $(BUILD_EXECUTABLE)

endif