| OLD | NEW |
| 1 # Copyright (c) 2012, Google Inc. | 1 # Copyright (c) 2012, Google Inc. |
| 2 # All rights reserved. | 2 # All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 # cryptic assembler messages like: | 64 # cryptic assembler messages like: |
| 65 # Compile++ thumb : google_breakpad_client <= crash_generation_client.cc | 65 # Compile++ thumb : google_breakpad_client <= crash_generation_client.cc |
| 66 # /tmp/cc8aMSoD.s: Assembler messages: | 66 # /tmp/cc8aMSoD.s: Assembler messages: |
| 67 # /tmp/cc8aMSoD.s:132: Error: invalid immediate: 288 is out of range | 67 # /tmp/cc8aMSoD.s:132: Error: invalid immediate: 288 is out of range |
| 68 # /tmp/cc8aMSoD.s:244: Error: invalid immediate: 296 is out of range | 68 # /tmp/cc8aMSoD.s:244: Error: invalid immediate: 296 is out of range |
| 69 LOCAL_ARM_MODE := arm | 69 LOCAL_ARM_MODE := arm |
| 70 | 70 |
| 71 # List of client source files, directly taken from Makefile.am | 71 # List of client source files, directly taken from Makefile.am |
| 72 LOCAL_SRC_FILES := \ | 72 LOCAL_SRC_FILES := \ |
| 73 src/client/linux/crash_generation/crash_generation_client.cc \ | 73 src/client/linux/crash_generation/crash_generation_client.cc \ |
| 74 src/client/linux/dump_writer_common/thread_info.cc \ |
| 75 src/client/linux/dump_writer_common/ucontext_reader.cc \ |
| 74 src/client/linux/handler/exception_handler.cc \ | 76 src/client/linux/handler/exception_handler.cc \ |
| 75 src/client/linux/handler/minidump_descriptor.cc \ | 77 src/client/linux/handler/minidump_descriptor.cc \ |
| 76 src/client/linux/log/log.cc \ | 78 src/client/linux/log/log.cc \ |
| 79 src/client/linux/microdump_writer/microdump_writer.cc \ |
| 77 src/client/linux/minidump_writer/linux_dumper.cc \ | 80 src/client/linux/minidump_writer/linux_dumper.cc \ |
| 78 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ | 81 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \ |
| 79 src/client/linux/minidump_writer/minidump_writer.cc \ | 82 src/client/linux/minidump_writer/minidump_writer.cc \ |
| 80 src/client/minidump_file_writer.cc \ | 83 src/client/minidump_file_writer.cc \ |
| 81 src/common/android/breakpad_getcontext.S \ | 84 src/common/android/breakpad_getcontext.S \ |
| 82 src/common/convert_UTF.c \ | 85 src/common/convert_UTF.c \ |
| 83 src/common/md5.cc \ | 86 src/common/md5.cc \ |
| 84 src/common/string_conversion.cc \ | 87 src/common/string_conversion.cc \ |
| 85 src/common/linux/elfutils.cc \ | 88 src/common/linux/elfutils.cc \ |
| 86 src/common/linux/file_id.cc \ | 89 src/common/linux/file_id.cc \ |
| 87 src/common/linux/guid_creator.cc \ | 90 src/common/linux/guid_creator.cc \ |
| 88 src/common/linux/linux_libc_support.cc \ | 91 src/common/linux/linux_libc_support.cc \ |
| 89 src/common/linux/memory_mapped_file.cc \ | 92 src/common/linux/memory_mapped_file.cc \ |
| 90 src/common/linux/safe_readlink.cc | 93 src/common/linux/safe_readlink.cc |
| 91 | 94 |
| 92 LOCAL_C_INCLUDES := $(LOCAL_PATH)/src/common/android/include \ | 95 LOCAL_C_INCLUDES := $(LOCAL_PATH)/src/common/android/include \ |
| 93 $(LOCAL_PATH)/src | 96 $(LOCAL_PATH)/src |
| 94 | 97 |
| 95 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) | 98 LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) |
| 96 LOCAL_EXPORT_LDLIBS := -llog | 99 LOCAL_EXPORT_LDLIBS := -llog |
| 97 | 100 |
| 98 include $(BUILD_STATIC_LIBRARY) | 101 include $(BUILD_STATIC_LIBRARY) |
| 99 | 102 |
| 100 # Done. | 103 # Done. |
| OLD | NEW |