replicant-frameworks_native/cmds/bugreport/Android.mk
Christopher Ferris 9b73bf07d7 Refactor of the bugreport code.
Implemented these changes:

- Make this code C++.
- Avoid hangs by adding a timeout.
- Add the necessary TEMP_FAILURE_RETRY calls.
- Restructure the code a bit.

Bug: 18800936

Change-Id: Iba9f86a4c7beee4f0f36e51234855f4c0834db47
2015-01-23 13:40:56 -08:00

13 lines
198 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= bugreport.cpp
LOCAL_MODULE:= bugreport
LOCAL_CFLAGS := -Wall
LOCAL_SHARED_LIBRARIES := libcutils
include $(BUILD_EXECUTABLE)