michael@0: # Copyright (c) 2012, Google Inc. michael@0: # All rights reserved. michael@0: # michael@0: # Redistribution and use in source and binary forms, with or without michael@0: # modification, are permitted provided that the following conditions are michael@0: # met: michael@0: # michael@0: # * Redistributions of source code must retain the above copyright michael@0: # notice, this list of conditions and the following disclaimer. michael@0: # * Redistributions in binary form must reproduce the above michael@0: # copyright notice, this list of conditions and the following disclaimer michael@0: # in the documentation and/or other materials provided with the michael@0: # distribution. michael@0: # * Neither the name of Google Inc. nor the names of its michael@0: # contributors may be used to endorse or promote products derived from michael@0: # this software without specific prior written permission. michael@0: # michael@0: # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS michael@0: # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT michael@0: # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR michael@0: # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT michael@0: # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, michael@0: # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT michael@0: # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, michael@0: # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY michael@0: # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT michael@0: # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE michael@0: # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. michael@0: michael@0: # ndk-build module definition for the Google Breakpad client library michael@0: # michael@0: # To use this file, do the following: michael@0: # michael@0: # 1/ Include this file from your own Android.mk, either directly michael@0: # or with through the NDK's import-module function. michael@0: # michael@0: # 2/ Use the client static library in your project with: michael@0: # michael@0: # LOCAL_STATIC_LIBRARIES += breakpad_client michael@0: # michael@0: # 3/ In your source code, include "src/client/linux/exception_handler.h" michael@0: # and use the Linux instructions to use it. michael@0: # michael@0: # This module works with either the STLport or GNU libstdc++, but you need michael@0: # to select one in your Application.mk michael@0: # michael@0: michael@0: # Sanity check. We can only build for ARM for now. michael@0: ifneq (,$(filter-out armeabi armeabi-v7a x86,$(TARGET_ARCH_ABI))) michael@0: $(error Sorry, Google Breakpad only works on Android ARM and x86 for now!) michael@0: endif michael@0: michael@0: # The top Google Breakpad directory. michael@0: # We assume this Android.mk to be under 'android/google_breakpad' michael@0: michael@0: LOCAL_PATH := $(call my-dir)/../.. michael@0: michael@0: # Defube the client library module, as a simple static library that michael@0: # exports the right include path / linker flags to its users. michael@0: michael@0: include $(CLEAR_VARS) michael@0: michael@0: LOCAL_MODULE := breakpad_client michael@0: michael@0: LOCAL_CPP_EXTENSION := .cc michael@0: michael@0: # Breakpad uses inline ARM assembly that requires the library michael@0: # to be built in ARM mode. Otherwise, the build will fail with michael@0: # cryptic assembler messages like: michael@0: # Compile++ thumb : google_breakpad_client <= crash_generation_client.cc michael@0: # /tmp/cc8aMSoD.s: Assembler messages: michael@0: # /tmp/cc8aMSoD.s:132: Error: invalid immediate: 288 is out of range michael@0: # /tmp/cc8aMSoD.s:244: Error: invalid immediate: 296 is out of range michael@0: LOCAL_ARM_MODE := arm michael@0: michael@0: # List of client source files, directly taken from Makefile.am michael@0: LOCAL_SRC_FILES := \ michael@0: src/client/linux/crash_generation/crash_generation_client.cc \ michael@0: src/client/linux/handler/exception_handler.cc \ michael@0: src/client/linux/handler/minidump_descriptor.cc \ michael@0: src/client/linux/log/log.cc \ michael@0: src/client/linux/minidump_writer/linux_dumper.cc \ michael@0: src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ michael@0: src/client/linux/minidump_writer/minidump_writer.cc \ michael@0: src/client/minidump_file_writer.cc \ michael@0: src/common/android/breakpad_getcontext.S \ michael@0: src/common/convert_UTF.c \ michael@0: src/common/md5.cc src/common/string_conversion.cc \ michael@0: src/common/linux/elfutils.cc \ michael@0: src/common/linux/file_id.cc \ michael@0: src/common/linux/guid_creator.cc \ michael@0: src/common/linux/linux_libc_support.cc \ michael@0: src/common/linux/memory_mapped_file.cc \ michael@0: src/common/linux/safe_readlink.cc michael@0: michael@0: LOCAL_C_INCLUDES := $(LOCAL_PATH)/src/common/android/include \ michael@0: $(LOCAL_PATH)/src michael@0: michael@0: LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) michael@0: LOCAL_EXPORT_LDLIBS := -llog michael@0: michael@0: include $(BUILD_STATIC_LIBRARY) michael@0: michael@0: # Done.