michael@0: ## Process this file with automake to produce Makefile.in michael@0: michael@0: # Copyright (c) 2011, 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: michael@0: # This allows #includes to be relative to src/ michael@0: AM_CPPFLAGS = -I$(top_srcdir)/src michael@0: AM_CFLAGS = michael@0: AM_CXXFLAGS = michael@0: michael@0: if ANDROID_HOST michael@0: # This allows using fixed NDK headers when building for Android. michael@0: AM_CXXFLAGS += -I$(top_srcdir)/src/common/android/include michael@0: # This is only necessary for building the unit tests until GTest is upgraded michael@0: # to a future version. michael@0: AM_CXXFLAGS += -I$(top_srcdir)/src/common/android/testing/include michael@0: endif michael@0: michael@0: if GCC michael@0: # These are good warnings to be treated as errors michael@0: AM_CXXFLAGS += \ michael@0: -Werror=missing-braces \ michael@0: -Werror=non-virtual-dtor \ michael@0: -Werror=overloaded-virtual \ michael@0: -Werror=reorder \ michael@0: -Werror=sign-compare \ michael@0: -Werror=unused-variable \ michael@0: -Werror=vla michael@0: endif michael@0: michael@0: if LINUX_HOST michael@0: # Build as PIC on Linux, for linux_client_unittest_shlib michael@0: AM_CFLAGS += -fPIC michael@0: AM_CXXFLAGS += -fPIC michael@0: endif michael@0: michael@0: # Specify include paths for ac macros michael@0: ACLOCAL_AMFLAGS = -I m4 michael@0: michael@0: ## Documentation michael@0: docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION) michael@0: michael@0: dist_doc_DATA = \ michael@0: AUTHORS \ michael@0: COPYING \ michael@0: ChangeLog \ michael@0: INSTALL \ michael@0: NEWS \ michael@0: README michael@0: michael@0: michael@0: ## Libraries michael@0: noinst_LIBRARIES = michael@0: lib_LIBRARIES = michael@0: bin_PROGRAMS = michael@0: check_PROGRAMS = michael@0: michael@0: if !DISABLE_PROCESSOR michael@0: lib_LIBRARIES += src/libbreakpad.a michael@0: noinst_LIBRARIES += src/third_party/libdisasm/libdisasm.a michael@0: endif michael@0: michael@0: if LINUX_HOST michael@0: lib_LIBRARIES += src/client/linux/libbreakpad_client.a michael@0: michael@0: src_client_linux_libbreakpad_client_a_SOURCES = \ michael@0: src/client/linux/crash_generation/crash_generation_client.cc \ michael@0: src/client/linux/crash_generation/crash_generation_server.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/convert_UTF.c \ michael@0: src/common/md5.cc \ michael@0: 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: if ANDROID_HOST michael@0: src_client_linux_libbreakpad_client_a_SOURCES += \ michael@0: src/common/android/breakpad_getcontext.S michael@0: endif michael@0: endif LINUX_HOST michael@0: michael@0: if !DISABLE_PROCESSOR michael@0: src_libbreakpad_a_SOURCES = \ michael@0: src/google_breakpad/common/breakpad_types.h \ michael@0: src/google_breakpad/common/minidump_format.h \ michael@0: src/google_breakpad/common/minidump_size.h \ michael@0: src/google_breakpad/processor/basic_source_line_resolver.h \ michael@0: src/google_breakpad/processor/call_stack.h \ michael@0: src/google_breakpad/processor/code_module.h \ michael@0: src/google_breakpad/processor/code_modules.h \ michael@0: src/google_breakpad/processor/exploitability.h \ michael@0: src/google_breakpad/processor/fast_source_line_resolver.h \ michael@0: src/google_breakpad/processor/memory_region.h \ michael@0: src/google_breakpad/processor/minidump.h \ michael@0: src/google_breakpad/processor/minidump_processor.h \ michael@0: src/google_breakpad/processor/process_state.h \ michael@0: src/google_breakpad/processor/source_line_resolver_base.h \ michael@0: src/google_breakpad/processor/source_line_resolver_interface.h \ michael@0: src/google_breakpad/processor/stack_frame.h \ michael@0: src/google_breakpad/processor/stack_frame_cpu.h \ michael@0: src/google_breakpad/processor/stack_frame_symbolizer.h \ michael@0: src/google_breakpad/processor/stackwalker.h \ michael@0: src/google_breakpad/processor/symbol_supplier.h \ michael@0: src/google_breakpad/processor/system_info.h \ michael@0: src/processor/address_map-inl.h \ michael@0: src/processor/address_map.h \ michael@0: src/processor/basic_code_module.h \ michael@0: src/processor/basic_code_modules.cc \ michael@0: src/processor/basic_code_modules.h \ michael@0: src/processor/basic_source_line_resolver_types.h \ michael@0: src/processor/basic_source_line_resolver.cc \ michael@0: src/processor/binarystream.h \ michael@0: src/processor/binarystream.cc \ michael@0: src/processor/call_stack.cc \ michael@0: src/processor/cfi_frame_info.cc \ michael@0: src/processor/cfi_frame_info.h \ michael@0: src/processor/contained_range_map-inl.h \ michael@0: src/processor/contained_range_map.h \ michael@0: src/processor/disassembler_x86.h \ michael@0: src/processor/disassembler_x86.cc \ michael@0: src/processor/exploitability.cc \ michael@0: src/processor/exploitability_win.h \ michael@0: src/processor/exploitability_win.cc \ michael@0: src/processor/fast_source_line_resolver_types.h \ michael@0: src/processor/fast_source_line_resolver.cc \ michael@0: src/processor/linked_ptr.h \ michael@0: src/processor/logging.h \ michael@0: src/processor/logging.cc \ michael@0: src/processor/map_serializers-inl.h \ michael@0: src/processor/map_serializers.h \ michael@0: src/processor/minidump.cc \ michael@0: src/processor/minidump_processor.cc \ michael@0: src/processor/module_comparer.cc \ michael@0: src/processor/module_comparer.h \ michael@0: src/processor/module_factory.h \ michael@0: src/processor/module_serializer.cc \ michael@0: src/processor/module_serializer.h \ michael@0: src/processor/pathname_stripper.cc \ michael@0: src/processor/pathname_stripper.h \ michael@0: src/processor/postfix_evaluator-inl.h \ michael@0: src/processor/postfix_evaluator.h \ michael@0: src/processor/process_state.cc \ michael@0: src/processor/range_map-inl.h \ michael@0: src/processor/range_map.h \ michael@0: src/processor/simple_serializer-inl.h \ michael@0: src/processor/simple_serializer.h \ michael@0: src/processor/simple_symbol_supplier.cc \ michael@0: src/processor/simple_symbol_supplier.h \ michael@0: src/processor/windows_frame_info.h \ michael@0: src/processor/source_line_resolver_base_types.h \ michael@0: src/processor/source_line_resolver_base.cc \ michael@0: src/processor/stack_frame_symbolizer.cc \ michael@0: src/processor/stackwalker.cc \ michael@0: src/processor/stackwalker_amd64.cc \ michael@0: src/processor/stackwalker_amd64.h \ michael@0: src/processor/stackwalker_arm.cc \ michael@0: src/processor/stackwalker_arm.h \ michael@0: src/processor/stackwalker_ppc.cc \ michael@0: src/processor/stackwalker_ppc.h \ michael@0: src/processor/stackwalker_sparc.cc \ michael@0: src/processor/stackwalker_sparc.h \ michael@0: src/processor/stackwalker_x86.cc \ michael@0: src/processor/stackwalker_x86.h \ michael@0: src/processor/static_address_map-inl.h \ michael@0: src/processor/static_address_map.h \ michael@0: src/processor/static_contained_range_map-inl.h \ michael@0: src/processor/static_contained_range_map.h \ michael@0: src/processor/static_map_iterator-inl.h \ michael@0: src/processor/static_map_iterator.h \ michael@0: src/processor/static_map-inl.h \ michael@0: src/processor/static_map.h \ michael@0: src/processor/static_range_map-inl.h \ michael@0: src/processor/static_range_map.h \ michael@0: src/processor/tokenize.cc \ michael@0: src/processor/tokenize.h michael@0: michael@0: src_libbreakpad_a_LIBADD = src/third_party/libdisasm/libdisasm.a michael@0: michael@0: src_third_party_libdisasm_libdisasm_a_SOURCES = \ michael@0: src/third_party/libdisasm/ia32_implicit.c \ michael@0: src/third_party/libdisasm/ia32_implicit.h \ michael@0: src/third_party/libdisasm/ia32_insn.c \ michael@0: src/third_party/libdisasm/ia32_insn.h \ michael@0: src/third_party/libdisasm/ia32_invariant.c \ michael@0: src/third_party/libdisasm/ia32_invariant.h \ michael@0: src/third_party/libdisasm/ia32_modrm.c \ michael@0: src/third_party/libdisasm/ia32_modrm.h \ michael@0: src/third_party/libdisasm/ia32_opcode_tables.c \ michael@0: src/third_party/libdisasm/ia32_opcode_tables.h \ michael@0: src/third_party/libdisasm/ia32_operand.c \ michael@0: src/third_party/libdisasm/ia32_operand.h \ michael@0: src/third_party/libdisasm/ia32_reg.c \ michael@0: src/third_party/libdisasm/ia32_reg.h \ michael@0: src/third_party/libdisasm/ia32_settings.c \ michael@0: src/third_party/libdisasm/ia32_settings.h \ michael@0: src/third_party/libdisasm/libdis.h \ michael@0: src/third_party/libdisasm/qword.h \ michael@0: src/third_party/libdisasm/x86_disasm.c \ michael@0: src/third_party/libdisasm/x86_format.c \ michael@0: src/third_party/libdisasm/x86_imm.c \ michael@0: src/third_party/libdisasm/x86_imm.h \ michael@0: src/third_party/libdisasm/x86_insn.c \ michael@0: src/third_party/libdisasm/x86_misc.c \ michael@0: src/third_party/libdisasm/x86_operand_list.c \ michael@0: src/third_party/libdisasm/x86_operand_list.h michael@0: michael@0: ## Programs michael@0: bin_PROGRAMS += \ michael@0: src/processor/minidump_dump \ michael@0: src/processor/minidump_stackwalk michael@0: endif !DISABLE_PROCESSOR michael@0: michael@0: if LINUX_HOST michael@0: bin_PROGRAMS += \ michael@0: src/client/linux/linux_dumper_unittest_helper michael@0: michael@0: if !DISABLE_TOOLS michael@0: bin_PROGRAMS += \ michael@0: src/tools/linux/core2md/core2md \ michael@0: src/tools/linux/dump_syms/dump_syms \ michael@0: src/tools/linux/md2core/minidump-2-core \ michael@0: src/tools/linux/symupload/minidump_upload \ michael@0: src/tools/linux/symupload/sym_upload michael@0: endif michael@0: endif LINUX_HOST michael@0: michael@0: michael@0: ## Tests michael@0: if !DISABLE_PROCESSOR michael@0: check_PROGRAMS += \ michael@0: src/common/test_assembler_unittest \ michael@0: src/processor/address_map_unittest \ michael@0: src/processor/binarystream_unittest \ michael@0: src/processor/basic_source_line_resolver_unittest \ michael@0: src/processor/cfi_frame_info_unittest \ michael@0: src/processor/contained_range_map_unittest \ michael@0: src/processor/disassembler_x86_unittest \ michael@0: src/processor/exploitability_unittest \ michael@0: src/processor/fast_source_line_resolver_unittest \ michael@0: src/processor/map_serializers_unittest \ michael@0: src/processor/minidump_processor_unittest \ michael@0: src/processor/minidump_unittest \ michael@0: src/processor/static_address_map_unittest \ michael@0: src/processor/static_contained_range_map_unittest \ michael@0: src/processor/static_map_unittest \ michael@0: src/processor/static_range_map_unittest \ michael@0: src/processor/pathname_stripper_unittest \ michael@0: src/processor/postfix_evaluator_unittest \ michael@0: src/processor/range_map_unittest \ michael@0: src/processor/stackwalker_amd64_unittest \ michael@0: src/processor/stackwalker_arm_unittest \ michael@0: src/processor/stackwalker_x86_unittest \ michael@0: src/processor/synth_minidump_unittest michael@0: endif michael@0: michael@0: if LINUX_HOST michael@0: EXTRA_PROGRAMS = \ michael@0: src/client/linux/linux_client_unittest_shlib michael@0: michael@0: check_PROGRAMS += \ michael@0: src/client/linux/linux_client_unittest michael@0: michael@0: if !DISABLE_TOOLS michael@0: check_PROGRAMS += \ michael@0: src/common/dumper_unittest \ michael@0: src/tools/linux/md2core/minidump_2_core_unittest michael@0: endif michael@0: endif LINUX_HOST michael@0: michael@0: if !DISABLE_PROCESSOR michael@0: if SELFTEST michael@0: check_PROGRAMS += \ michael@0: src/processor/stackwalker_selftest michael@0: endif SELFTEST michael@0: endif !DISABLE_PROCESSOR michael@0: michael@0: if !DISABLE_PROCESSOR michael@0: check_SCRIPTS = \ michael@0: src/processor/minidump_dump_test \ michael@0: src/processor/minidump_stackwalk_test \ michael@0: src/processor/minidump_stackwalk_machine_readable_test michael@0: endif michael@0: michael@0: TESTS = $(check_PROGRAMS) $(check_SCRIPTS) michael@0: michael@0: if ANDROID_HOST michael@0: # Wrapper script to run unit test programs on a connected Android device. michael@0: TESTS_ENVIRONMENT = $(top_srcdir)/android/test-shell.sh michael@0: else michael@0: TESTS_ENVIRONMENT = michael@0: endif michael@0: michael@0: if LINUX_HOST michael@0: src_client_linux_linux_dumper_unittest_helper_SOURCES = \ michael@0: src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc michael@0: src_client_linux_linux_dumper_unittest_helper_CXXFLAGS=$(PTHREAD_CFLAGS) michael@0: src_client_linux_linux_dumper_unittest_helper_LDFLAGS=$(PTHREAD_CFLAGS) michael@0: src_client_linux_linux_dumper_unittest_helper_CC=$(PTHREAD_CC) michael@0: michael@0: src_client_linux_linux_client_unittest_shlib_SOURCES = \ michael@0: src/client/linux/handler/exception_handler_unittest.cc \ michael@0: src/client/linux/minidump_writer/directory_reader_unittest.cc \ michael@0: src/client/linux/minidump_writer/line_reader_unittest.cc \ michael@0: src/client/linux/minidump_writer/linux_core_dumper.cc \ michael@0: src/client/linux/minidump_writer/linux_core_dumper_unittest.cc \ michael@0: src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc \ michael@0: src/client/linux/minidump_writer/minidump_writer_unittest.cc \ michael@0: src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc \ michael@0: src/common/linux/elf_core_dump.cc \ michael@0: src/common/linux/linux_libc_support_unittest.cc \ michael@0: src/common/linux/tests/crash_generator.cc \ michael@0: src/common/memory_unittest.cc \ michael@0: src/common/tests/file_utils.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc \ michael@0: src/processor/basic_code_modules.cc \ michael@0: src/processor/logging.cc \ michael@0: src/processor/minidump.cc \ michael@0: src/processor/pathname_stripper.cc michael@0: if ANDROID_HOST michael@0: src_client_linux_linux_client_unittest_shlib_SOURCES += \ michael@0: src/common/android/breakpad_getcontext.S michael@0: endif michael@0: michael@0: src_client_linux_linux_client_unittest_shlib_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_client_linux_linux_client_unittest_shlib_LDFLAGS = \ michael@0: -shared \ michael@0: -Wl,-h,linux_client_unittest_shlib michael@0: src_client_linux_linux_client_unittest_shlib_LDADD = \ michael@0: src/client/linux/handler/exception_handler.o \ michael@0: src/client/linux/handler/minidump_descriptor.o \ michael@0: src/client/linux/log/log.o \ michael@0: src/client/linux/crash_generation/crash_generation_client.o \ michael@0: src/client/linux/minidump_writer/linux_dumper.o \ michael@0: src/client/linux/minidump_writer/linux_ptrace_dumper.o \ michael@0: src/client/linux/minidump_writer/minidump_writer.o \ michael@0: src/client/minidump_file_writer.o \ michael@0: src/common/convert_UTF.o \ michael@0: src/common/md5.o \ michael@0: src/common/linux/elfutils.o \ michael@0: src/common/linux/file_id.o \ michael@0: src/common/linux/guid_creator.o \ michael@0: src/common/linux/linux_libc_support.o \ michael@0: src/common/linux/memory_mapped_file.o \ michael@0: src/common/linux/safe_readlink.o \ michael@0: src/common/string_conversion.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: if ANDROID_HOST michael@0: src_client_linux_linux_client_unittest_shlib_SOURCES += \ michael@0: src/common/android/breakpad_getcontext_unittest.cc michael@0: src_client_linux_linux_client_unittest_shlib_LDFLAGS += \ michael@0: -llog -lm michael@0: endif michael@0: michael@0: src_client_linux_linux_client_unittest_shlib_DEPENDENCIES = \ michael@0: src/client/linux/linux_dumper_unittest_helper \ michael@0: src/client/linux/libbreakpad_client.a \ michael@0: src/libbreakpad.a michael@0: michael@0: src_client_linux_linux_client_unittest_SOURCES = michael@0: src_client_linux_linux_client_unittest_LDFLAGS = \ michael@0: -Wl,-rpath,'$$ORIGIN' michael@0: if ANDROID_HOST michael@0: src_client_linux_linux_client_unittest_LDFLAGS += \ michael@0: -llog michael@0: endif michael@0: michael@0: src_client_linux_linux_client_unittest_LDADD = \ michael@0: src/client/linux/linux_client_unittest_shlib michael@0: michael@0: src_client_linux_linux_client_unittest_DEPENDENCIES = \ michael@0: src/client/linux/linux_client_unittest_shlib michael@0: michael@0: if !DISABLE_TOOLS michael@0: src_tools_linux_core2md_core2md_SOURCES = \ michael@0: src/tools/linux/core2md/core2md.cc \ michael@0: src/client/linux/minidump_writer/linux_core_dumper.cc \ michael@0: src/common/linux/elf_core_dump.cc michael@0: michael@0: src_tools_linux_core2md_core2md_LDADD = \ michael@0: src/client/linux/libbreakpad_client.a michael@0: michael@0: src_tools_linux_dump_syms_dump_syms_SOURCES = \ michael@0: src/common/dwarf_cfi_to_module.cc \ michael@0: src/common/dwarf_cu_to_module.cc \ michael@0: src/common/dwarf_line_to_module.cc \ michael@0: src/common/language.cc \ michael@0: src/common/module.cc \ michael@0: src/common/stabs_reader.cc \ michael@0: src/common/stabs_to_module.cc \ michael@0: src/common/dwarf/bytereader.cc \ michael@0: src/common/dwarf/dwarf2diehandler.cc \ michael@0: src/common/dwarf/dwarf2reader.cc \ michael@0: src/common/linux/dump_symbols.cc \ michael@0: src/common/linux/elf_symbols_to_module.cc \ michael@0: src/common/linux/elfutils.cc \ michael@0: src/common/linux/file_id.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: src/tools/linux/dump_syms/dump_syms.cc michael@0: michael@0: src_tools_linux_md2core_minidump_2_core_SOURCES = \ michael@0: src/common/linux/memory_mapped_file.cc \ michael@0: src/tools/linux/md2core/minidump-2-core.cc michael@0: michael@0: src_tools_linux_symupload_minidump_upload_SOURCES = \ michael@0: src/common/linux/http_upload.cc \ michael@0: src/tools/linux/symupload/minidump_upload.cc michael@0: src_tools_linux_symupload_minidump_upload_LDADD = -ldl michael@0: michael@0: src_tools_linux_symupload_sym_upload_SOURCES = \ michael@0: src/common/linux/http_upload.cc \ michael@0: src/tools/linux/symupload/sym_upload.cc michael@0: src_tools_linux_symupload_sym_upload_LDADD = -ldl michael@0: michael@0: src_common_dumper_unittest_SOURCES = \ michael@0: src/common/byte_cursor_unittest.cc \ michael@0: src/common/dwarf_cfi_to_module.cc \ michael@0: src/common/dwarf_cfi_to_module_unittest.cc \ michael@0: src/common/dwarf_cu_to_module.cc \ michael@0: src/common/dwarf_cu_to_module_unittest.cc \ michael@0: src/common/dwarf_line_to_module.cc \ michael@0: src/common/dwarf_line_to_module_unittest.cc \ michael@0: src/common/language.cc \ michael@0: src/common/memory_range_unittest.cc \ michael@0: src/common/module.cc \ michael@0: src/common/module_unittest.cc \ michael@0: src/common/stabs_reader.cc \ michael@0: src/common/stabs_reader_unittest.cc \ michael@0: src/common/stabs_to_module.cc \ michael@0: src/common/stabs_to_module_unittest.cc \ michael@0: src/common/test_assembler.cc \ michael@0: src/common/dwarf/bytereader.cc \ michael@0: src/common/dwarf/bytereader_unittest.cc \ michael@0: src/common/dwarf/cfi_assembler.cc \ michael@0: src/common/dwarf/dwarf2diehandler.cc \ michael@0: src/common/dwarf/dwarf2diehandler_unittest.cc \ michael@0: src/common/dwarf/dwarf2reader.cc \ michael@0: src/common/dwarf/dwarf2reader_cfi_unittest.cc \ michael@0: src/common/dwarf/dwarf2reader_die_unittest.cc \ michael@0: src/common/linux/dump_symbols.cc \ michael@0: src/common/linux/dump_symbols_unittest.cc \ michael@0: src/common/linux/elf_core_dump.cc \ michael@0: src/common/linux/elf_core_dump_unittest.cc \ michael@0: src/common/linux/elf_symbols_to_module.cc \ michael@0: src/common/linux/elf_symbols_to_module_unittest.cc \ michael@0: src/common/linux/elfutils.cc \ michael@0: src/common/linux/file_id.cc \ michael@0: src/common/linux/file_id_unittest.cc \ michael@0: src/common/linux/linux_libc_support.cc \ michael@0: src/common/linux/memory_mapped_file.cc \ michael@0: src/common/linux/memory_mapped_file_unittest.cc \ michael@0: src/common/linux/safe_readlink.cc \ michael@0: src/common/linux/safe_readlink_unittest.cc \ michael@0: src/common/linux/synth_elf.cc \ michael@0: src/common/linux/synth_elf_unittest.cc \ michael@0: src/common/linux/tests/crash_generator.cc \ michael@0: src/common/tests/file_utils.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_common_dumper_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing \ michael@0: $(PTHREAD_CFLAGS) michael@0: src_common_dumper_unittest_LDADD = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: endif michael@0: michael@0: src_tools_linux_md2core_minidump_2_core_unittest_SOURCES = \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc \ michael@0: src/tools/linux/md2core/minidump_memory_range_unittest.cc michael@0: src_tools_linux_md2core_minidump_2_core_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_tools_linux_md2core_minidump_2_core_unittest_LDADD = \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: endif LINUX_HOST michael@0: michael@0: if !DISABLE_PROCESSOR michael@0: src_processor_address_map_unittest_SOURCES = \ michael@0: src/processor/address_map_unittest.cc michael@0: src_processor_address_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o michael@0: michael@0: src_processor_binarystream_unittest_SOURCES = \ michael@0: src/processor/binarystream_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_binarystream_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_binarystream_unittest_LDADD = \ michael@0: src/processor/binarystream.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_basic_source_line_resolver_unittest_SOURCES = \ michael@0: src/processor/basic_source_line_resolver_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_basic_source_line_resolver_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_basic_source_line_resolver_unittest_LDADD = \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/tokenize.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_cfi_frame_info_unittest_SOURCES = \ michael@0: src/processor/cfi_frame_info_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_cfi_frame_info_unittest_LDADD = \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: src_processor_cfi_frame_info_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: michael@0: src_processor_contained_range_map_unittest_SOURCES = \ michael@0: src/processor/contained_range_map_unittest.cc michael@0: src_processor_contained_range_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o michael@0: michael@0: src_processor_exploitability_unittest_SOURCES = \ michael@0: src/processor/exploitability_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_exploitability_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_exploitability_unittest_LDADD = \ michael@0: src/processor/minidump_processor.o \ michael@0: src/processor/process_state.o \ michael@0: src/processor/disassembler_x86.o \ michael@0: src/processor/exploitability.o \ michael@0: src/processor/exploitability_win.o \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/call_stack.o \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/stack_frame_symbolizer.o \ michael@0: src/processor/stackwalker.o \ michael@0: src/processor/stackwalker_amd64.o \ michael@0: src/processor/stackwalker_arm.o \ michael@0: src/processor/stackwalker_ppc.o \ michael@0: src/processor/stackwalker_sparc.o \ michael@0: src/processor/stackwalker_x86.o \ michael@0: src/processor/tokenize.o \ michael@0: src/third_party/libdisasm/libdisasm.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_disassembler_x86_unittest_SOURCES = \ michael@0: src/processor/disassembler_x86_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_disassembler_x86_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_disassembler_x86_unittest_LDADD = \ michael@0: src/processor/disassembler_x86.o \ michael@0: src/third_party/libdisasm/libdisasm.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_fast_source_line_resolver_unittest_SOURCES = \ michael@0: src/processor/fast_source_line_resolver_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_fast_source_line_resolver_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_fast_source_line_resolver_unittest_LDADD = \ michael@0: src/processor/fast_source_line_resolver.o \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/module_comparer.o \ michael@0: src/processor/module_serializer.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/tokenize.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_map_serializers_unittest_SOURCES = \ michael@0: src/processor/map_serializers_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_map_serializers_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_map_serializers_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_minidump_processor_unittest_SOURCES = \ michael@0: src/processor/minidump_processor_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_minidump_processor_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_minidump_processor_unittest_LDADD = \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/call_stack.o \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/disassembler_x86.o \ michael@0: src/processor/exploitability.o \ michael@0: src/processor/exploitability_win.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump_processor.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/process_state.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/stack_frame_symbolizer.o \ michael@0: src/processor/stackwalker.o \ michael@0: src/processor/stackwalker_amd64.o \ michael@0: src/processor/stackwalker_arm.o \ michael@0: src/processor/stackwalker_ppc.o \ michael@0: src/processor/stackwalker_sparc.o \ michael@0: src/processor/stackwalker_x86.o \ michael@0: src/processor/tokenize.o \ michael@0: src/third_party/libdisasm/libdisasm.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_minidump_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/processor/minidump_unittest.cc \ michael@0: src/processor/synth_minidump.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_minidump_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_minidump_unittest_LDADD = \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_static_address_map_unittest_SOURCES = \ michael@0: src/processor/static_address_map_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_static_address_map_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_static_address_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_static_contained_range_map_unittest_SOURCES = \ michael@0: src/processor/static_contained_range_map_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_static_contained_range_map_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_static_contained_range_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_static_map_unittest_SOURCES = \ michael@0: src/processor/static_map_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_static_map_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_static_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_static_range_map_unittest_SOURCES = \ michael@0: src/processor/static_range_map_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_static_range_map_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_static_range_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_pathname_stripper_unittest_SOURCES = \ michael@0: src/processor/pathname_stripper_unittest.cc michael@0: src_processor_pathname_stripper_unittest_LDADD = \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_postfix_evaluator_unittest_SOURCES = \ michael@0: src/processor/postfix_evaluator_unittest.cc michael@0: src_processor_postfix_evaluator_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_range_map_unittest_SOURCES = \ michael@0: src/processor/range_map_unittest.cc michael@0: src_processor_range_map_unittest_LDADD = \ michael@0: src/processor/logging.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_stackwalker_selftest_SOURCES = \ michael@0: src/processor/stackwalker_selftest.cc michael@0: src_processor_stackwalker_selftest_LDADD = \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/call_stack.o \ michael@0: src/processor/disassembler_x86.o \ michael@0: src/processor/exploitability.o \ michael@0: src/processor/exploitability_win.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/stack_frame_symbolizer.o \ michael@0: src/processor/stackwalker.o \ michael@0: src/processor/stackwalker_amd64.o \ michael@0: src/processor/stackwalker_arm.o \ michael@0: src/processor/stackwalker_ppc.o \ michael@0: src/processor/stackwalker_sparc.o \ michael@0: src/processor/stackwalker_x86.o \ michael@0: src/processor/tokenize.o \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_processor_stackwalker_amd64_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/processor/stackwalker_amd64_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_stackwalker_amd64_unittest_LDADD = \ michael@0: src/libbreakpad.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: src_processor_stackwalker_amd64_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: michael@0: src_processor_stackwalker_arm_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/processor/stackwalker_arm_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_stackwalker_arm_unittest_LDADD = \ michael@0: src/libbreakpad.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: src_processor_stackwalker_arm_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: michael@0: src_processor_stackwalker_x86_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/processor/stackwalker_x86_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_processor_stackwalker_x86_unittest_LDADD = \ michael@0: src/libbreakpad.a \ michael@0: $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: src_processor_stackwalker_x86_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: michael@0: src_processor_synth_minidump_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/common/test_assembler.h \ michael@0: src/processor/synth_minidump_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc \ michael@0: src/processor/synth_minidump.cc \ michael@0: src/processor/synth_minidump.h michael@0: src_processor_synth_minidump_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_processor_synth_minidump_unittest_LDADD = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: src_common_test_assembler_unittest_SOURCES = \ michael@0: src/common/test_assembler.cc \ michael@0: src/common/test_assembler.h \ michael@0: src/common/test_assembler_unittest.cc \ michael@0: src/testing/gtest/src/gtest-all.cc \ michael@0: src/testing/gtest/src/gtest_main.cc \ michael@0: src/testing/src/gmock-all.cc michael@0: src_common_test_assembler_unittest_CPPFLAGS = \ michael@0: -I$(top_srcdir)/src \ michael@0: -I$(top_srcdir)/src/testing/include \ michael@0: -I$(top_srcdir)/src/testing/gtest/include \ michael@0: -I$(top_srcdir)/src/testing/gtest \ michael@0: -I$(top_srcdir)/src/testing michael@0: src_common_test_assembler_unittest_LDADD = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) michael@0: michael@0: ## Non-installables michael@0: noinst_PROGRAMS = michael@0: noinst_SCRIPTS = $(check_SCRIPTS) michael@0: michael@0: src_processor_minidump_dump_SOURCES = \ michael@0: src/processor/minidump_dump.cc michael@0: src_processor_minidump_dump_LDADD = \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/pathname_stripper.o michael@0: michael@0: src_processor_minidump_stackwalk_SOURCES = \ michael@0: src/processor/minidump_stackwalk.cc michael@0: src_processor_minidump_stackwalk_LDADD = \ michael@0: src/processor/basic_code_modules.o \ michael@0: src/processor/basic_source_line_resolver.o \ michael@0: src/processor/binarystream.o \ michael@0: src/processor/call_stack.o \ michael@0: src/processor/cfi_frame_info.o \ michael@0: src/processor/disassembler_x86.o \ michael@0: src/processor/exploitability.o \ michael@0: src/processor/exploitability_win.o \ michael@0: src/processor/logging.o \ michael@0: src/processor/minidump.o \ michael@0: src/processor/minidump_processor.o \ michael@0: src/processor/pathname_stripper.o \ michael@0: src/processor/process_state.o \ michael@0: src/processor/simple_symbol_supplier.o \ michael@0: src/processor/source_line_resolver_base.o \ michael@0: src/processor/stack_frame_symbolizer.o \ michael@0: src/processor/stackwalker.o \ michael@0: src/processor/stackwalker_amd64.o \ michael@0: src/processor/stackwalker_arm.o \ michael@0: src/processor/stackwalker_ppc.o \ michael@0: src/processor/stackwalker_sparc.o \ michael@0: src/processor/stackwalker_x86.o \ michael@0: src/processor/tokenize.o \ michael@0: src/third_party/libdisasm/libdisasm.a michael@0: michael@0: endif !DISABLE_PROCESSOR michael@0: michael@0: ## Additional files to be included in a source distribution michael@0: ## michael@0: ## find src/client src/common src/processor/testdata src/tools \ michael@0: ## -type f \! -path '*/.svn/*' -print | sort | \ michael@0: ## sed -e s/'^\(.*\)$'/'\t\1 \\'/ michael@0: EXTRA_DIST = \ michael@0: $(SCRIPTS) \ michael@0: src/processor/stackwalk_selftest_sol.s \ michael@0: src/client/linux/handler/Makefile \ michael@0: src/client/linux/handler/exception_handler.cc \ michael@0: src/client/linux/handler/exception_handler.h \ michael@0: src/client/linux/handler/minidump_descriptor.cc \ michael@0: src/client/linux/handler/minidump_descriptor.h \ michael@0: src/client/linux/handler/exception_handler_test.cc \ michael@0: src/client/linux/handler/linux_thread.cc \ michael@0: src/client/linux/handler/linux_thread.h \ michael@0: src/client/linux/handler/linux_thread_test.cc \ michael@0: src/client/linux/handler/minidump_generator.cc \ michael@0: src/client/linux/handler/minidump_generator.h \ michael@0: src/client/linux/handler/minidump_test.cc \ michael@0: src/client/mac/handler/dynamic_images.cc \ michael@0: src/client/mac/handler/dynamic_images.h \ michael@0: src/client/mac/handler/exception_handler.cc \ michael@0: src/client/mac/handler/exception_handler.h \ michael@0: src/client/mac/handler/exception_handler_test.cc \ michael@0: src/client/mac/handler/minidump_generator.cc \ michael@0: src/client/mac/handler/minidump_generator.h \ michael@0: src/client/mac/handler/minidump_generator_test.cc \ michael@0: src/client/mac/handler/minidump_test.xcodeproj/project.pbxproj \ michael@0: src/client/mac/handler/protected_memory_allocator.cc \ michael@0: src/client/mac/handler/protected_memory_allocator.h \ michael@0: src/client/minidump_file_writer-inl.h \ michael@0: src/client/minidump_file_writer.cc \ michael@0: src/client/minidump_file_writer.h \ michael@0: src/client/minidump_file_writer_unittest.cc \ michael@0: src/client/solaris/handler/Makefile \ michael@0: src/client/solaris/handler/exception_handler.cc \ michael@0: src/client/solaris/handler/exception_handler.h \ michael@0: src/client/solaris/handler/exception_handler_test.cc \ michael@0: src/client/solaris/handler/minidump_generator.cc \ michael@0: src/client/solaris/handler/minidump_generator.h \ michael@0: src/client/solaris/handler/minidump_test.cc \ michael@0: src/client/solaris/handler/solaris_lwp.cc \ michael@0: src/client/solaris/handler/solaris_lwp.h \ michael@0: src/client/windows/breakpad_client.sln \ michael@0: src/client/windows/handler/exception_handler.cc \ michael@0: src/client/windows/handler/exception_handler.h \ michael@0: src/client/windows/handler/exception_handler.vcproj \ michael@0: src/client/windows/sender/crash_report_sender.cc \ michael@0: src/client/windows/sender/crash_report_sender.h \ michael@0: src/client/windows/sender/crash_report_sender.vcproj \ michael@0: src/common/convert_UTF.c \ michael@0: src/common/convert_UTF.h \ michael@0: src/common/linux/dump_symbols.cc \ michael@0: src/common/linux/dump_symbols.h \ michael@0: src/common/linux/elf_symbols_to_module.cc \ michael@0: src/common/linux/elf_symbols_to_module.h \ michael@0: src/common/linux/elfutils.cc \ michael@0: src/common/linux/elfutils.h \ michael@0: src/common/linux/file_id.cc \ michael@0: src/common/linux/file_id.h \ michael@0: src/common/linux/guid_creator.cc \ michael@0: src/common/linux/guid_creator.h \ michael@0: src/common/linux/http_upload.cc \ michael@0: src/common/linux/http_upload.h \ michael@0: src/common/mac/HTTPMultipartUpload.h \ michael@0: src/common/mac/HTTPMultipartUpload.m \ michael@0: src/common/mac/dump_syms.h \ michael@0: src/common/mac/dump_syms.mm \ michael@0: src/common/mac/file_id.cc \ michael@0: src/common/mac/file_id.h \ michael@0: src/common/mac/macho_id.cc \ michael@0: src/common/mac/macho_id.h \ michael@0: src/common/mac/macho_utilities.cc \ michael@0: src/common/mac/macho_utilities.h \ michael@0: src/common/mac/macho_walker.cc \ michael@0: src/common/mac/macho_walker.h \ michael@0: src/common/mac/string_utilities.cc \ michael@0: src/common/mac/string_utilities.h \ michael@0: src/common/md5.cc \ michael@0: src/common/md5.h \ michael@0: src/common/scoped_ptr.h \ michael@0: src/common/solaris/dump_symbols.cc \ michael@0: src/common/solaris/dump_symbols.h \ michael@0: src/common/solaris/file_id.cc \ michael@0: src/common/solaris/file_id.h \ michael@0: src/common/solaris/guid_creator.cc \ michael@0: src/common/solaris/guid_creator.h \ michael@0: src/common/solaris/message_output.h \ michael@0: src/common/string_conversion.cc \ michael@0: src/common/string_conversion.h \ michael@0: src/common/windows/guid_string.cc \ michael@0: src/common/windows/guid_string.h \ michael@0: src/common/windows/http_upload.cc \ michael@0: src/common/windows/http_upload.h \ michael@0: src/common/windows/pdb_source_line_writer.cc \ michael@0: src/common/windows/pdb_source_line_writer.h \ michael@0: src/common/windows/string_utils-inl.h \ michael@0: src/common/windows/string_utils.cc \ michael@0: src/processor/testdata/minidump2.dmp \ michael@0: src/processor/testdata/minidump2.dump.out \ michael@0: src/processor/testdata/minidump2.stackwalk.machine_readable.out \ michael@0: src/processor/testdata/minidump2.stackwalk.out \ michael@0: src/processor/testdata/module1.out \ michael@0: src/processor/testdata/module2.out \ michael@0: src/processor/testdata/module3_bad.out \ michael@0: src/processor/testdata/module4_bad.out \ michael@0: src/processor/testdata/symbols/kernel32.pdb/BCE8785C57B44245A669896B6A19B9542/kernel32.sym \ michael@0: src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/test_app.sym \ michael@0: src/processor/testdata/test_app.cc \ michael@0: src/tools/linux/dump_syms/Makefile \ michael@0: src/tools/linux/dump_syms/dump_syms.cc \ michael@0: src/tools/linux/symupload/Makefile \ michael@0: src/tools/linux/symupload/minidump_upload.cc \ michael@0: src/tools/linux/symupload/sym_upload.cc \ michael@0: src/tools/mac/crash_report/crash_report.mm \ michael@0: src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj \ michael@0: src/tools/mac/crash_report/on_demand_symbol_supplier.h \ michael@0: src/tools/mac/crash_report/on_demand_symbol_supplier.mm \ michael@0: src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj \ michael@0: src/tools/mac/dump_syms/dump_syms_tool.m \ michael@0: src/tools/mac/symupload/minidump_upload.m \ michael@0: src/tools/mac/symupload/symupload.m \ michael@0: src/tools/mac/symupload/symupload.xcodeproj/project.pbxproj \ michael@0: src/tools/solaris/dump_syms/Makefile \ michael@0: src/tools/solaris/dump_syms/dump_syms.cc \ michael@0: src/tools/solaris/dump_syms/run_regtest.sh \ michael@0: src/tools/solaris/dump_syms/testdata/dump_syms_regtest.cc \ michael@0: src/tools/solaris/dump_syms/testdata/dump_syms_regtest.o \ michael@0: src/tools/solaris/dump_syms/testdata/dump_syms_regtest.stabs \ michael@0: src/tools/solaris/dump_syms/testdata/dump_syms_regtest.sym \ michael@0: src/tools/windows/converter/ms_symbol_server_converter.cc \ michael@0: src/tools/windows/converter/ms_symbol_server_converter.h \ michael@0: src/tools/windows/converter/ms_symbol_server_converter.vcproj \ michael@0: src/tools/windows/dump_syms/dump_syms.cc \ michael@0: src/tools/windows/dump_syms/dump_syms.vcproj \ michael@0: src/tools/windows/dump_syms/run_regtest.sh \ michael@0: src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \ michael@0: src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \ michael@0: src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \ michael@0: src/tools/windows/symupload/symupload.cc \ michael@0: src/tools/windows/symupload/symupload.vcproj