2006-08-25 14:14:45 -07:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2011-12-16 09:42:59 -07:00
|
|
|
# Copyright (c) 2011, Google Inc.
|
2006-09-20 14:16:16 -07:00
|
|
|
# All rights reserved.
|
2006-08-30 13:05:05 -07:00
|
|
|
#
|
2006-09-20 14:16:16 -07:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
2006-08-30 13:05:05 -07:00
|
|
|
#
|
2006-09-20 14:16:16 -07:00
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following disclaimer
|
|
|
|
# in the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
2006-08-30 13:05:05 -07:00
|
|
|
#
|
2006-09-20 14:16:16 -07:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-08-30 13:05:05 -07:00
|
|
|
|
|
|
|
|
2006-09-05 12:42:57 -07:00
|
|
|
# This allows #includes to be relative to src/
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
|
|
|
2010-03-01 17:39:48 -07:00
|
|
|
# Specify include paths for ac macros
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2006-09-05 19:56:44 -07:00
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
## Documentation
|
|
|
|
docdir = $(prefix)/share/doc/$(PACKAGE)-$(VERSION)
|
2006-08-25 14:14:45 -07:00
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
dist_doc_DATA = \
|
|
|
|
AUTHORS \
|
|
|
|
COPYING \
|
|
|
|
ChangeLog \
|
|
|
|
INSTALL \
|
|
|
|
NEWS \
|
|
|
|
README
|
2006-08-25 14:14:45 -07:00
|
|
|
|
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
## Libraries
|
2010-10-05 12:38:51 -07:00
|
|
|
noinst_LIBRARIES =
|
|
|
|
lib_LIBRARIES =
|
2010-10-05 12:38:22 -07:00
|
|
|
bin_PROGRAMS =
|
|
|
|
check_PROGRAMS =
|
|
|
|
|
|
|
|
if !DISABLE_PROCESSOR
|
2010-10-05 12:38:51 -07:00
|
|
|
lib_LIBRARIES += src/libbreakpad.a
|
|
|
|
noinst_LIBRARIES += src/third_party/libdisasm/libdisasm.a
|
2010-10-05 12:38:22 -07:00
|
|
|
endif
|
2010-08-31 08:09:01 -07:00
|
|
|
|
|
|
|
if LINUX_HOST
|
2010-10-05 12:38:51 -07:00
|
|
|
lib_LIBRARIES += src/client/linux/libbreakpad_client.a
|
2010-03-01 17:39:48 -07:00
|
|
|
|
2010-10-05 12:38:51 -07:00
|
|
|
src_client_linux_libbreakpad_client_a_SOURCES = \
|
2010-03-01 17:39:48 -07:00
|
|
|
src/client/linux/crash_generation/crash_generation_client.cc \
|
|
|
|
src/client/linux/handler/exception_handler.cc \
|
|
|
|
src/client/linux/minidump_writer/linux_dumper.cc \
|
|
|
|
src/client/linux/minidump_writer/minidump_writer.cc \
|
|
|
|
src/client/minidump_file_writer.cc \
|
|
|
|
src/common/convert_UTF.c \
|
2011-11-18 14:40:27 -07:00
|
|
|
src/common/md5.cc \
|
2010-03-01 17:39:48 -07:00
|
|
|
src/common/string_conversion.cc \
|
2012-01-06 19:25:22 -07:00
|
|
|
src/common/linux/elf_core_dump.cc \
|
2010-03-01 17:39:48 -07:00
|
|
|
src/common/linux/file_id.cc \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/linux/guid_creator.cc \
|
2011-12-21 10:51:40 -07:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
|
|
|
src/common/linux/safe_readlink.cc
|
2011-02-28 07:05:22 -07:00
|
|
|
endif LINUX_HOST
|
2007-02-14 12:51:05 -07:00
|
|
|
|
2010-10-05 12:38:22 -07:00
|
|
|
if !DISABLE_PROCESSOR
|
2010-10-05 12:38:51 -07:00
|
|
|
src_libbreakpad_a_SOURCES = \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/google_breakpad/common/breakpad_types.h \
|
|
|
|
src/google_breakpad/common/minidump_format.h \
|
2007-05-31 12:44:52 -07:00
|
|
|
src/google_breakpad/common/minidump_size.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/google_breakpad/processor/basic_source_line_resolver.h \
|
|
|
|
src/google_breakpad/processor/call_stack.h \
|
|
|
|
src/google_breakpad/processor/code_module.h \
|
|
|
|
src/google_breakpad/processor/code_modules.h \
|
2010-08-25 13:16:17 -07:00
|
|
|
src/google_breakpad/processor/exploitability.h \
|
2010-10-21 10:13:01 -07:00
|
|
|
src/google_breakpad/processor/fast_source_line_resolver.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/google_breakpad/processor/memory_region.h \
|
|
|
|
src/google_breakpad/processor/minidump.h \
|
|
|
|
src/google_breakpad/processor/minidump_processor.h \
|
|
|
|
src/google_breakpad/processor/process_state.h \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/google_breakpad/processor/source_line_resolver_base.h \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/google_breakpad/processor/source_line_resolver_interface.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/google_breakpad/processor/stack_frame.h \
|
|
|
|
src/google_breakpad/processor/stack_frame_cpu.h \
|
|
|
|
src/google_breakpad/processor/stackwalker.h \
|
|
|
|
src/google_breakpad/processor/symbol_supplier.h \
|
|
|
|
src/google_breakpad/processor/system_info.h \
|
2006-10-20 12:50:01 -07:00
|
|
|
src/processor/address_map-inl.h \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/processor/address_map.h \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/basic_code_module.h \
|
|
|
|
src/processor/basic_code_modules.cc \
|
|
|
|
src/processor/basic_code_modules.h \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/basic_source_line_resolver_types.h \
|
2006-12-11 16:22:54 -07:00
|
|
|
src/processor/basic_source_line_resolver.cc \
|
2010-04-08 16:06:23 -07:00
|
|
|
src/processor/binarystream.h \
|
|
|
|
src/processor/binarystream.cc \
|
2006-10-19 18:46:38 -07:00
|
|
|
src/processor/call_stack.cc \
|
2010-03-16 09:28:32 -07:00
|
|
|
src/processor/cfi_frame_info.cc \
|
|
|
|
src/processor/cfi_frame_info.h \
|
2006-09-20 09:20:15 -07:00
|
|
|
src/processor/contained_range_map-inl.h \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/processor/contained_range_map.h \
|
2010-10-01 15:38:10 -07:00
|
|
|
src/processor/disassembler_x86.h \
|
|
|
|
src/processor/disassembler_x86.cc \
|
2010-08-25 13:16:17 -07:00
|
|
|
src/processor/exploitability.cc \
|
2010-09-21 19:37:19 -07:00
|
|
|
src/processor/exploitability_win.h \
|
|
|
|
src/processor/exploitability_win.cc \
|
2010-10-21 10:13:01 -07:00
|
|
|
src/processor/fast_source_line_resolver_types.h \
|
|
|
|
src/processor/fast_source_line_resolver.cc \
|
2006-09-08 11:03:56 -07:00
|
|
|
src/processor/linked_ptr.h \
|
2007-05-17 11:34:37 -07:00
|
|
|
src/processor/logging.h \
|
|
|
|
src/processor/logging.cc \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/map_serializers-inl.h \
|
|
|
|
src/processor/map_serializers.h \
|
2006-09-05 19:56:44 -07:00
|
|
|
src/processor/minidump.cc \
|
2006-09-19 14:58:41 -07:00
|
|
|
src/processor/minidump_processor.cc \
|
2010-10-21 10:13:01 -07:00
|
|
|
src/processor/module_comparer.cc \
|
|
|
|
src/processor/module_comparer.h \
|
|
|
|
src/processor/module_factory.h \
|
2011-01-19 10:02:10 -07:00
|
|
|
src/processor/module_serializer.cc \
|
|
|
|
src/processor/module_serializer.h \
|
2006-10-26 17:40:56 -07:00
|
|
|
src/processor/pathname_stripper.cc \
|
|
|
|
src/processor/pathname_stripper.h \
|
2006-09-21 17:42:23 -07:00
|
|
|
src/processor/postfix_evaluator-inl.h \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/processor/postfix_evaluator.h \
|
2006-10-24 12:31:21 -07:00
|
|
|
src/processor/process_state.cc \
|
2006-09-20 09:20:15 -07:00
|
|
|
src/processor/range_map-inl.h \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/processor/range_map.h \
|
2006-10-23 13:25:42 -07:00
|
|
|
src/processor/scoped_ptr.h \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/simple_serializer-inl.h \
|
|
|
|
src/processor/simple_serializer.h \
|
2006-10-26 17:40:56 -07:00
|
|
|
src/processor/simple_symbol_supplier.cc \
|
|
|
|
src/processor/simple_symbol_supplier.h \
|
2009-12-23 15:32:14 -07:00
|
|
|
src/processor/windows_frame_info.h \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base_types.h \
|
|
|
|
src/processor/source_line_resolver_base.cc \
|
2006-09-06 12:28:46 -07:00
|
|
|
src/processor/stackwalker.cc \
|
2007-10-31 12:20:31 -07:00
|
|
|
src/processor/stackwalker_amd64.cc \
|
|
|
|
src/processor/stackwalker_amd64.h \
|
2009-12-19 14:43:53 -07:00
|
|
|
src/processor/stackwalker_arm.cc \
|
|
|
|
src/processor/stackwalker_arm.h \
|
2006-09-25 11:29:48 -07:00
|
|
|
src/processor/stackwalker_ppc.cc \
|
|
|
|
src/processor/stackwalker_ppc.h \
|
2007-09-26 11:28:05 -07:00
|
|
|
src/processor/stackwalker_sparc.cc \
|
|
|
|
src/processor/stackwalker_sparc.h \
|
2006-09-06 12:28:46 -07:00
|
|
|
src/processor/stackwalker_x86.cc \
|
2010-04-08 16:06:23 -07:00
|
|
|
src/processor/stackwalker_x86.h \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/static_address_map-inl.h \
|
|
|
|
src/processor/static_address_map.h \
|
|
|
|
src/processor/static_contained_range_map-inl.h \
|
|
|
|
src/processor/static_contained_range_map.h \
|
2010-09-20 10:45:15 -07:00
|
|
|
src/processor/static_map_iterator-inl.h \
|
|
|
|
src/processor/static_map_iterator.h \
|
2010-09-29 07:02:09 -07:00
|
|
|
src/processor/static_map-inl.h \
|
|
|
|
src/processor/static_map.h \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/static_range_map-inl.h \
|
|
|
|
src/processor/static_range_map.h \
|
2010-04-08 16:06:23 -07:00
|
|
|
src/processor/tokenize.cc \
|
2011-07-07 13:53:52 -07:00
|
|
|
src/processor/tokenize.h
|
2006-08-25 14:14:45 -07:00
|
|
|
|
2010-10-05 12:38:51 -07:00
|
|
|
src_libbreakpad_a_LIBADD = src/third_party/libdisasm/libdisasm.a
|
2010-10-01 15:38:10 -07:00
|
|
|
|
2010-10-05 12:38:51 -07:00
|
|
|
src_third_party_libdisasm_libdisasm_a_SOURCES = \
|
2010-10-01 15:38:10 -07:00
|
|
|
src/third_party/libdisasm/ia32_implicit.c \
|
|
|
|
src/third_party/libdisasm/ia32_implicit.h \
|
|
|
|
src/third_party/libdisasm/ia32_insn.c \
|
|
|
|
src/third_party/libdisasm/ia32_insn.h \
|
|
|
|
src/third_party/libdisasm/ia32_invariant.c \
|
|
|
|
src/third_party/libdisasm/ia32_invariant.h \
|
|
|
|
src/third_party/libdisasm/ia32_modrm.c \
|
|
|
|
src/third_party/libdisasm/ia32_modrm.h \
|
|
|
|
src/third_party/libdisasm/ia32_opcode_tables.c \
|
|
|
|
src/third_party/libdisasm/ia32_opcode_tables.h \
|
|
|
|
src/third_party/libdisasm/ia32_operand.c \
|
|
|
|
src/third_party/libdisasm/ia32_operand.h \
|
|
|
|
src/third_party/libdisasm/ia32_reg.c \
|
|
|
|
src/third_party/libdisasm/ia32_reg.h \
|
|
|
|
src/third_party/libdisasm/ia32_settings.c \
|
|
|
|
src/third_party/libdisasm/ia32_settings.h \
|
|
|
|
src/third_party/libdisasm/libdis.h \
|
|
|
|
src/third_party/libdisasm/qword.h \
|
|
|
|
src/third_party/libdisasm/x86_disasm.c \
|
|
|
|
src/third_party/libdisasm/x86_format.c \
|
|
|
|
src/third_party/libdisasm/x86_imm.c \
|
|
|
|
src/third_party/libdisasm/x86_imm.h \
|
|
|
|
src/third_party/libdisasm/x86_insn.c \
|
|
|
|
src/third_party/libdisasm/x86_misc.c \
|
|
|
|
src/third_party/libdisasm/x86_operand_list.c \
|
2010-10-05 12:38:22 -07:00
|
|
|
src/third_party/libdisasm/x86_operand_list.h
|
2006-08-25 14:14:45 -07:00
|
|
|
|
2006-09-05 19:56:44 -07:00
|
|
|
## Programs
|
2010-10-05 12:38:22 -07:00
|
|
|
bin_PROGRAMS += \
|
2006-09-06 12:28:46 -07:00
|
|
|
src/processor/minidump_dump \
|
2011-07-07 13:53:52 -07:00
|
|
|
src/processor/minidump_stackwalk
|
2010-10-05 12:38:22 -07:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-09-05 19:56:44 -07:00
|
|
|
|
2010-08-31 08:09:01 -07:00
|
|
|
if LINUX_HOST
|
|
|
|
bin_PROGRAMS += \
|
|
|
|
src/client/linux/linux_dumper_unittest_helper
|
2011-02-28 07:05:22 -07:00
|
|
|
|
|
|
|
if !DISABLE_TOOLS
|
|
|
|
bin_PROGRAMS += \
|
|
|
|
src/tools/linux/dump_syms/dump_syms \
|
|
|
|
src/tools/linux/md2core/minidump-2-core \
|
|
|
|
src/tools/linux/symupload/minidump_upload \
|
|
|
|
src/tools/linux/symupload/sym_upload
|
2010-08-31 08:09:01 -07:00
|
|
|
endif
|
2011-02-28 07:05:22 -07:00
|
|
|
endif LINUX_HOST
|
|
|
|
|
2010-08-31 08:09:01 -07:00
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
## Tests
|
2010-10-05 12:38:22 -07:00
|
|
|
if !DISABLE_PROCESSOR
|
|
|
|
check_PROGRAMS += \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler_unittest \
|
2006-10-20 12:50:01 -07:00
|
|
|
src/processor/address_map_unittest \
|
2010-04-08 16:06:23 -07:00
|
|
|
src/processor/binarystream_unittest \
|
2006-12-11 16:22:54 -07:00
|
|
|
src/processor/basic_source_line_resolver_unittest \
|
2010-03-16 09:28:32 -07:00
|
|
|
src/processor/cfi_frame_info_unittest \
|
2006-09-20 09:20:15 -07:00
|
|
|
src/processor/contained_range_map_unittest \
|
2010-10-01 15:38:10 -07:00
|
|
|
src/processor/disassembler_x86_unittest \
|
|
|
|
src/processor/exploitability_unittest \
|
2010-10-21 10:13:01 -07:00
|
|
|
src/processor/fast_source_line_resolver_unittest \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/map_serializers_unittest \
|
2006-09-19 14:58:41 -07:00
|
|
|
src/processor/minidump_processor_unittest \
|
2009-12-08 18:24:37 -07:00
|
|
|
src/processor/minidump_unittest \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/static_address_map_unittest \
|
|
|
|
src/processor/static_contained_range_map_unittest \
|
2010-09-20 10:45:15 -07:00
|
|
|
src/processor/static_map_unittest \
|
2010-10-15 13:36:31 -07:00
|
|
|
src/processor/static_range_map_unittest \
|
2006-10-26 17:40:56 -07:00
|
|
|
src/processor/pathname_stripper_unittest \
|
2006-09-21 17:42:23 -07:00
|
|
|
src/processor/postfix_evaluator_unittest \
|
2010-03-16 09:20:34 -07:00
|
|
|
src/processor/range_map_unittest \
|
2010-03-16 09:49:53 -07:00
|
|
|
src/processor/stackwalker_amd64_unittest \
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
src/processor/stackwalker_arm_unittest \
|
2010-03-16 09:25:30 -07:00
|
|
|
src/processor/stackwalker_x86_unittest \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/processor/synth_minidump_unittest
|
2010-10-05 12:38:22 -07:00
|
|
|
endif
|
2006-09-25 14:16:15 -07:00
|
|
|
|
2010-08-31 08:09:01 -07:00
|
|
|
if LINUX_HOST
|
|
|
|
check_PROGRAMS += \
|
|
|
|
src/client/linux/linux_client_unittest
|
2011-02-28 07:05:22 -07:00
|
|
|
|
|
|
|
if !DISABLE_TOOLS
|
|
|
|
check_PROGRAMS += \
|
2011-12-21 15:33:21 -07:00
|
|
|
src/common/dumper_unittest \
|
|
|
|
src/tools/linux/md2core/minidump_2_core_unittest
|
2010-08-31 08:09:01 -07:00
|
|
|
endif
|
2011-02-28 07:05:22 -07:00
|
|
|
endif LINUX_HOST
|
2010-08-31 08:09:01 -07:00
|
|
|
|
2010-10-05 12:38:22 -07:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-09-25 14:16:15 -07:00
|
|
|
if SELFTEST
|
|
|
|
check_PROGRAMS += \
|
|
|
|
src/processor/stackwalker_selftest
|
|
|
|
endif SELFTEST
|
2010-10-05 12:38:22 -07:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-09-25 14:16:15 -07:00
|
|
|
|
2010-10-05 12:38:22 -07:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-09-05 19:56:44 -07:00
|
|
|
check_SCRIPTS = \
|
2006-09-06 12:28:46 -07:00
|
|
|
src/processor/minidump_dump_test \
|
2007-01-29 14:30:31 -07:00
|
|
|
src/processor/minidump_stackwalk_test \
|
|
|
|
src/processor/minidump_stackwalk_machine_readable_test
|
2010-10-05 12:38:22 -07:00
|
|
|
endif
|
2006-09-25 14:16:15 -07:00
|
|
|
|
2006-09-05 19:56:44 -07:00
|
|
|
TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
|
2006-08-30 13:05:05 -07:00
|
|
|
TESTS_ENVIRONMENT =
|
2006-09-05 19:56:44 -07:00
|
|
|
|
2010-08-31 08:09:01 -07:00
|
|
|
if LINUX_HOST
|
2010-03-01 17:39:48 -07:00
|
|
|
src_client_linux_linux_dumper_unittest_helper_SOURCES = \
|
|
|
|
src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_CXXFLAGS=$(PTHREAD_CFLAGS)
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_LDFLAGS=$(PTHREAD_CFLAGS)
|
|
|
|
src_client_linux_linux_dumper_unittest_helper_CC=$(PTHREAD_CC)
|
|
|
|
|
|
|
|
src_client_linux_linux_client_unittest_SOURCES = \
|
|
|
|
src/client/linux/handler/exception_handler_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/directory_reader_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/line_reader_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/linux_dumper_unittest.cc \
|
|
|
|
src/client/linux/minidump_writer/minidump_writer_unittest.cc \
|
2010-09-23 07:55:50 -07:00
|
|
|
src/common/memory_unittest.cc \
|
2010-03-01 17:39:48 -07:00
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
2010-10-05 12:38:22 -07:00
|
|
|
src/testing/src/gmock-all.cc \
|
|
|
|
src/processor/basic_code_modules.cc \
|
|
|
|
src/processor/logging.cc \
|
|
|
|
src/processor/minidump.cc \
|
|
|
|
src/processor/pathname_stripper.cc
|
2010-03-01 17:39:48 -07:00
|
|
|
|
|
|
|
src_client_linux_linux_client_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-01 17:39:48 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-01 17:39:48 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_client_linux_linux_client_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/client/linux/handler/exception_handler.o \
|
|
|
|
src/client/linux/crash_generation/crash_generation_client.o \
|
|
|
|
src/client/linux/minidump_writer/linux_dumper.o \
|
|
|
|
src/client/linux/minidump_writer/minidump_writer.o \
|
|
|
|
src/client/minidump_file_writer.o \
|
|
|
|
src/common/convert_UTF.o \
|
|
|
|
src/common/md5.o \
|
2012-01-06 19:25:22 -07:00
|
|
|
src/common/linux/elf_core_dump.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/common/linux/file_id.o \
|
|
|
|
src/common/linux/guid_creator.o \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/linux/memory_mapped_file.o \
|
2011-12-21 10:51:40 -07:00
|
|
|
src/common/linux/safe_readlink.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/common/string_conversion.o
|
|
|
|
|
|
|
|
src_client_linux_linux_client_unittest_DEPENDENCIES = src/client/linux/linux_dumper_unittest_helper src/client/linux/libbreakpad_client.a src/libbreakpad.a
|
2011-02-28 07:05:22 -07:00
|
|
|
|
|
|
|
if !DISABLE_TOOLS
|
|
|
|
src_tools_linux_dump_syms_dump_syms_SOURCES = \
|
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/language.cc \
|
|
|
|
src/common/module.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
|
|
|
src/common/linux/dump_symbols.cc \
|
2011-07-06 10:05:49 -07:00
|
|
|
src/common/linux/elf_symbols_to_module.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/common/linux/file_id.cc \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
2011-12-21 10:51:40 -07:00
|
|
|
src/common/linux/safe_readlink.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/tools/linux/dump_syms/dump_syms.cc
|
|
|
|
|
|
|
|
src_tools_linux_md2core_minidump_2_core_SOURCES = \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/tools/linux/md2core/minidump-2-core.cc
|
|
|
|
|
|
|
|
src_tools_linux_symupload_minidump_upload_SOURCES = \
|
|
|
|
src/common/linux/http_upload.cc \
|
|
|
|
src/tools/linux/symupload/minidump_upload.cc
|
|
|
|
src_tools_linux_symupload_minidump_upload_LDFLAGS = -ldl
|
|
|
|
|
|
|
|
src_tools_linux_symupload_sym_upload_SOURCES = \
|
|
|
|
src/common/linux/http_upload.cc \
|
|
|
|
src/tools/linux/symupload/sym_upload.cc
|
|
|
|
src_tools_linux_symupload_sym_upload_LDFLAGS = -ldl
|
|
|
|
|
|
|
|
src_common_dumper_unittest_SOURCES = \
|
|
|
|
src/common/byte_cursor_unittest.cc \
|
|
|
|
src/common/dwarf_cfi_to_module.cc \
|
|
|
|
src/common/dwarf_cfi_to_module_unittest.cc \
|
|
|
|
src/common/dwarf_cu_to_module.cc \
|
|
|
|
src/common/dwarf_cu_to_module_unittest.cc \
|
|
|
|
src/common/dwarf_line_to_module.cc \
|
|
|
|
src/common/dwarf_line_to_module_unittest.cc \
|
|
|
|
src/common/language.cc \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/memory_range_unittest.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/common/module.cc \
|
|
|
|
src/common/module_unittest.cc \
|
|
|
|
src/common/stabs_reader.cc \
|
|
|
|
src/common/stabs_reader_unittest.cc \
|
|
|
|
src/common/stabs_to_module.cc \
|
|
|
|
src/common/stabs_to_module_unittest.cc \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/dwarf/bytereader.cc \
|
|
|
|
src/common/dwarf/bytereader_unittest.cc \
|
|
|
|
src/common/dwarf/cfi_assembler.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler.cc \
|
|
|
|
src/common/dwarf/dwarf2diehandler_unittest.cc \
|
|
|
|
src/common/dwarf/dwarf2reader.cc \
|
|
|
|
src/common/dwarf/dwarf2reader_cfi_unittest.cc \
|
|
|
|
src/common/linux/dump_symbols.cc \
|
2011-07-06 10:05:59 -07:00
|
|
|
src/common/linux/dump_symbols_unittest.cc \
|
2012-01-06 19:25:22 -07:00
|
|
|
src/common/linux/elf_core_dump.cc \
|
|
|
|
src/common/linux/elf_core_dump_unittest.cc \
|
2011-07-06 10:05:49 -07:00
|
|
|
src/common/linux/elf_symbols_to_module.cc \
|
|
|
|
src/common/linux/elf_symbols_to_module_unittest.cc \
|
2011-12-16 09:42:59 -07:00
|
|
|
src/common/linux/memory_mapped_file.cc \
|
|
|
|
src/common/linux/memory_mapped_file_unittest.cc \
|
2011-07-06 10:05:59 -07:00
|
|
|
src/common/linux/synth_elf.cc \
|
|
|
|
src/common/linux/synth_elf_unittest.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/common/linux/file_id.cc \
|
|
|
|
src/common/linux/file_id_unittest.cc \
|
2011-12-21 10:51:40 -07:00
|
|
|
src/common/linux/safe_readlink.cc \
|
|
|
|
src/common/linux/safe_readlink_unittest.cc \
|
2012-01-06 19:25:22 -07:00
|
|
|
src/common/linux/tests/crash_generator.cc \
|
|
|
|
src/common/tests/file_utils.cc \
|
2011-02-28 07:05:22 -07:00
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_common_dumper_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
2012-01-06 19:25:22 -07:00
|
|
|
-I$(top_srcdir)/src/testing \
|
|
|
|
$(PTHREAD_CFLAGS)
|
|
|
|
src_common_dumper_unittest_LDADD = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
|
2010-08-31 08:09:01 -07:00
|
|
|
endif
|
2011-12-21 15:33:21 -07:00
|
|
|
|
|
|
|
src_tools_linux_md2core_minidump_2_core_unittest_SOURCES = \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc \
|
|
|
|
src/tools/linux/md2core/minidump_memory_range_unittest.cc
|
|
|
|
src_tools_linux_md2core_minidump_2_core_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2011-02-28 07:05:22 -07:00
|
|
|
endif LINUX_HOST
|
2010-03-01 17:39:48 -07:00
|
|
|
|
2010-10-05 12:38:22 -07:00
|
|
|
if !DISABLE_PROCESSOR
|
2006-10-20 12:50:01 -07:00
|
|
|
src_processor_address_map_unittest_SOURCES = \
|
|
|
|
src/processor/address_map_unittest.cc
|
2007-05-21 13:09:33 -07:00
|
|
|
src_processor_address_map_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-10-20 12:50:01 -07:00
|
|
|
|
2010-04-08 16:06:23 -07:00
|
|
|
src_processor_binarystream_unittest_SOURCES = \
|
|
|
|
src/processor/binarystream_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_binarystream_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-04-08 16:06:23 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-04-08 16:06:23 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_binarystream_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/binarystream.o
|
2010-04-08 16:06:23 -07:00
|
|
|
|
2006-12-11 16:22:54 -07:00
|
|
|
src_processor_basic_source_line_resolver_unittest_SOURCES = \
|
2010-04-08 16:06:23 -07:00
|
|
|
src/processor/basic_source_line_resolver_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_basic_source_line_resolver_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-04-08 16:06:23 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-04-08 16:06:23 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
2006-12-11 16:22:54 -07:00
|
|
|
src_processor_basic_source_line_resolver_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/logging.o \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/tokenize.o
|
2006-12-11 16:22:54 -07:00
|
|
|
|
2010-03-16 09:28:32 -07:00
|
|
|
src_processor_cfi_frame_info_unittest_SOURCES = \
|
|
|
|
src/processor/cfi_frame_info_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_cfi_frame_info_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2010-03-16 09:28:32 -07:00
|
|
|
src_processor_cfi_frame_info_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-16 09:28:32 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-16 09:28:32 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2006-09-20 09:20:15 -07:00
|
|
|
src_processor_contained_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/contained_range_map_unittest.cc
|
2007-05-21 13:09:33 -07:00
|
|
|
src_processor_contained_range_map_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-09-20 09:20:15 -07:00
|
|
|
|
2010-10-01 15:38:10 -07:00
|
|
|
src_processor_exploitability_unittest_SOURCES = \
|
|
|
|
src/processor/exploitability_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_exploitability_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_exploitability_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/process_state.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/stackwalker.o \
|
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
2010-10-01 15:38:10 -07:00
|
|
|
|
|
|
|
src_processor_disassembler_x86_unittest_SOURCES = \
|
|
|
|
src/processor/disassembler_x86_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_disassembler_x86_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_disassembler_x86_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
2010-10-01 15:38:10 -07:00
|
|
|
|
2010-10-21 10:13:01 -07:00
|
|
|
src_processor_fast_source_line_resolver_unittest_SOURCES = \
|
|
|
|
src/processor/fast_source_line_resolver_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_fast_source_line_resolver_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_fast_source_line_resolver_unittest_LDADD = \
|
|
|
|
src/processor/fast_source_line_resolver.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/module_comparer.o \
|
|
|
|
src/processor/module_serializer.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/source_line_resolver_base.o \
|
|
|
|
src/processor/tokenize.o
|
|
|
|
|
2010-10-15 13:36:31 -07:00
|
|
|
src_processor_map_serializers_unittest_SOURCES = \
|
|
|
|
src/processor/map_serializers_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_map_serializers_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_map_serializers_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
|
|
|
|
2006-09-19 14:58:41 -07:00
|
|
|
src_processor_minidump_processor_unittest_SOURCES = \
|
2009-05-28 17:53:02 -07:00
|
|
|
src/processor/minidump_processor_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_minidump_processor_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2009-05-28 17:53:02 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2009-05-28 17:53:02 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
2006-09-19 14:58:41 -07:00
|
|
|
src_processor_minidump_processor_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/stackwalker.o \
|
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
2006-09-19 14:58:41 -07:00
|
|
|
|
2009-12-08 18:24:37 -07:00
|
|
|
src_processor_minidump_unittest_SOURCES = \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler.cc \
|
2009-12-08 18:24:37 -07:00
|
|
|
src/processor/minidump_unittest.cc \
|
2010-03-16 09:20:34 -07:00
|
|
|
src/processor/synth_minidump.cc \
|
2009-12-08 18:24:37 -07:00
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
2010-03-16 09:20:34 -07:00
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
2009-12-08 18:24:37 -07:00
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_minidump_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2009-12-08 18:24:37 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2009-12-08 18:24:37 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_minidump_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2009-12-08 18:24:37 -07:00
|
|
|
|
2010-10-15 13:36:31 -07:00
|
|
|
src_processor_static_address_map_unittest_SOURCES = \
|
|
|
|
src/processor/static_address_map_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_static_address_map_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_static_address_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
|
|
|
|
|
|
|
src_processor_static_contained_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/static_contained_range_map_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_static_contained_range_map_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_static_contained_range_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
|
|
|
|
2010-09-20 10:45:15 -07:00
|
|
|
src_processor_static_map_unittest_SOURCES = \
|
|
|
|
src/processor/static_map_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_static_map_unittest_CPPFLAGS = \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
2010-09-20 10:45:15 -07:00
|
|
|
src_processor_static_map_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2010-09-20 10:45:15 -07:00
|
|
|
|
2010-10-15 13:36:31 -07:00
|
|
|
src_processor_static_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/static_range_map_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_static_range_map_unittest_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/testing/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
src_processor_static_range_map_unittest_LDADD = \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
|
|
|
|
2006-10-26 17:40:56 -07:00
|
|
|
src_processor_pathname_stripper_unittest_SOURCES = \
|
|
|
|
src/processor/pathname_stripper_unittest.cc
|
|
|
|
src_processor_pathname_stripper_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/pathname_stripper.o
|
2006-10-26 17:40:56 -07:00
|
|
|
|
2006-09-21 17:42:23 -07:00
|
|
|
src_processor_postfix_evaluator_unittest_SOURCES = \
|
|
|
|
src/processor/postfix_evaluator_unittest.cc
|
2007-05-21 13:09:33 -07:00
|
|
|
src_processor_postfix_evaluator_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-09-21 17:42:23 -07:00
|
|
|
|
2006-09-05 19:56:44 -07:00
|
|
|
src_processor_range_map_unittest_SOURCES = \
|
|
|
|
src/processor/range_map_unittest.cc
|
2007-05-21 13:09:33 -07:00
|
|
|
src_processor_range_map_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-08-30 13:05:05 -07:00
|
|
|
|
2006-09-25 14:16:15 -07:00
|
|
|
src_processor_stackwalker_selftest_SOURCES = \
|
|
|
|
src/processor/stackwalker_selftest.cc
|
|
|
|
src_processor_stackwalker_selftest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/stackwalker.o \
|
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o
|
2006-09-25 14:16:15 -07:00
|
|
|
|
2010-03-16 09:49:53 -07:00
|
|
|
src_processor_stackwalker_amd64_unittest_SOURCES = \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler.cc \
|
2010-03-16 09:49:53 -07:00
|
|
|
src/processor/stackwalker_amd64_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_stackwalker_amd64_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/libbreakpad.a
|
2010-03-16 09:49:53 -07:00
|
|
|
src_processor_stackwalker_amd64_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-16 09:49:53 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-16 09:49:53 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
src_processor_stackwalker_arm_unittest_SOURCES = \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler.cc \
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
src/processor/stackwalker_arm_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_stackwalker_arm_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/libbreakpad.a
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
src_processor_stackwalker_arm_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.
In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.
In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.
There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.
We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.
We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.
We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.
a=jimblandy, r=mmentovai
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 09:46:22 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2010-03-16 09:25:30 -07:00
|
|
|
src_processor_stackwalker_x86_unittest_SOURCES = \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler.cc \
|
2010-03-16 09:25:30 -07:00
|
|
|
src/processor/stackwalker_x86_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_processor_stackwalker_x86_unittest_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/libbreakpad.a
|
2010-03-16 09:25:30 -07:00
|
|
|
src_processor_stackwalker_x86_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-16 09:25:30 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-16 09:25:30 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2010-03-16 09:20:34 -07:00
|
|
|
src_processor_synth_minidump_unittest_SOURCES = \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/test_assembler.h \
|
2010-03-16 09:20:34 -07:00
|
|
|
src/processor/synth_minidump_unittest.cc \
|
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
|
|
|
src/testing/src/gmock-all.cc \
|
|
|
|
src/processor/synth_minidump.cc \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/processor/synth_minidump.h
|
2010-03-16 09:20:34 -07:00
|
|
|
src_processor_synth_minidump_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-16 09:20:34 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-16 09:20:34 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2010-04-27 12:17:59 -07:00
|
|
|
src_common_test_assembler_unittest_SOURCES = \
|
|
|
|
src/common/test_assembler.cc \
|
|
|
|
src/common/test_assembler.h \
|
|
|
|
src/common/test_assembler_unittest.cc \
|
2010-03-16 09:20:34 -07:00
|
|
|
src/testing/gtest/src/gtest-all.cc \
|
|
|
|
src/testing/gtest/src/gtest_main.cc \
|
2010-04-27 12:17:59 -07:00
|
|
|
src/testing/src/gmock-all.cc
|
|
|
|
src_common_test_assembler_unittest_CPPFLAGS = \
|
2010-09-29 07:02:09 -07:00
|
|
|
-I$(top_srcdir)/src \
|
2010-03-16 09:20:34 -07:00
|
|
|
-I$(top_srcdir)/src/testing/include \
|
2010-10-15 13:36:31 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest/include \
|
2010-03-16 09:20:34 -07:00
|
|
|
-I$(top_srcdir)/src/testing/gtest \
|
|
|
|
-I$(top_srcdir)/src/testing
|
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
## Non-installables
|
2006-09-05 19:56:44 -07:00
|
|
|
noinst_PROGRAMS =
|
2006-08-30 13:05:05 -07:00
|
|
|
noinst_SCRIPTS = $(check_SCRIPTS)
|
2006-08-25 14:14:45 -07:00
|
|
|
|
2006-09-05 19:56:44 -07:00
|
|
|
src_processor_minidump_dump_SOURCES = \
|
|
|
|
src/processor/minidump_dump.cc
|
|
|
|
src_processor_minidump_dump_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/pathname_stripper.o
|
2006-09-05 19:56:44 -07:00
|
|
|
|
2006-09-06 12:28:46 -07:00
|
|
|
src_processor_minidump_stackwalk_SOURCES = \
|
|
|
|
src/processor/minidump_stackwalk.cc
|
|
|
|
src_processor_minidump_stackwalk_LDADD = \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/basic_code_modules.o \
|
|
|
|
src/processor/basic_source_line_resolver.o \
|
|
|
|
src/processor/binarystream.o \
|
|
|
|
src/processor/call_stack.o \
|
|
|
|
src/processor/cfi_frame_info.o \
|
|
|
|
src/processor/disassembler_x86.o \
|
|
|
|
src/processor/exploitability.o \
|
|
|
|
src/processor/exploitability_win.o \
|
|
|
|
src/processor/logging.o \
|
|
|
|
src/processor/minidump.o \
|
|
|
|
src/processor/minidump_processor.o \
|
|
|
|
src/processor/pathname_stripper.o \
|
|
|
|
src/processor/process_state.o \
|
|
|
|
src/processor/simple_symbol_supplier.o \
|
2010-10-07 13:31:36 -07:00
|
|
|
src/processor/source_line_resolver_base.o \
|
2010-10-05 12:38:51 -07:00
|
|
|
src/processor/stackwalker.o \
|
|
|
|
src/processor/stackwalker_amd64.o \
|
|
|
|
src/processor/stackwalker_arm.o \
|
|
|
|
src/processor/stackwalker_ppc.o \
|
|
|
|
src/processor/stackwalker_sparc.o \
|
|
|
|
src/processor/stackwalker_x86.o \
|
|
|
|
src/processor/tokenize.o \
|
|
|
|
src/third_party/libdisasm/libdisasm.a
|
2006-09-06 12:28:46 -07:00
|
|
|
|
2010-10-05 12:38:22 -07:00
|
|
|
endif !DISABLE_PROCESSOR
|
2006-08-25 14:14:45 -07:00
|
|
|
|
2006-08-30 13:05:05 -07:00
|
|
|
## Additional files to be included in a source distribution
|
2006-12-05 15:52:28 -07:00
|
|
|
##
|
|
|
|
## find src/client src/common src/processor/testdata src/tools \
|
2007-09-26 11:37:39 -07:00
|
|
|
## -type f \! -path '*/.svn/*' -print | sort | \
|
|
|
|
## sed -e s/'^\(.*\)$'/'\t\1 \\'/
|
2006-08-30 13:05:05 -07:00
|
|
|
EXTRA_DIST = \
|
|
|
|
$(SCRIPTS) \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/processor/stackwalk_selftest_sol.s \
|
|
|
|
src/client/linux/handler/Makefile \
|
|
|
|
src/client/linux/handler/exception_handler.cc \
|
|
|
|
src/client/linux/handler/exception_handler.h \
|
|
|
|
src/client/linux/handler/exception_handler_test.cc \
|
|
|
|
src/client/linux/handler/linux_thread.cc \
|
|
|
|
src/client/linux/handler/linux_thread.h \
|
|
|
|
src/client/linux/handler/linux_thread_test.cc \
|
|
|
|
src/client/linux/handler/minidump_generator.cc \
|
|
|
|
src/client/linux/handler/minidump_generator.h \
|
|
|
|
src/client/linux/handler/minidump_test.cc \
|
|
|
|
src/client/mac/handler/dynamic_images.cc \
|
|
|
|
src/client/mac/handler/dynamic_images.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/client/mac/handler/exception_handler.cc \
|
|
|
|
src/client/mac/handler/exception_handler.h \
|
|
|
|
src/client/mac/handler/exception_handler_test.cc \
|
|
|
|
src/client/mac/handler/minidump_generator.cc \
|
|
|
|
src/client/mac/handler/minidump_generator.h \
|
|
|
|
src/client/mac/handler/minidump_generator_test.cc \
|
|
|
|
src/client/mac/handler/minidump_test.xcodeproj/project.pbxproj \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/client/mac/handler/protected_memory_allocator.cc \
|
|
|
|
src/client/mac/handler/protected_memory_allocator.h \
|
|
|
|
src/client/minidump_file_writer-inl.h \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/client/minidump_file_writer.cc \
|
|
|
|
src/client/minidump_file_writer.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/client/minidump_file_writer_unittest.cc \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/client/solaris/handler/Makefile \
|
|
|
|
src/client/solaris/handler/exception_handler.cc \
|
|
|
|
src/client/solaris/handler/exception_handler.h \
|
|
|
|
src/client/solaris/handler/exception_handler_test.cc \
|
|
|
|
src/client/solaris/handler/minidump_generator.cc \
|
|
|
|
src/client/solaris/handler/minidump_generator.h \
|
|
|
|
src/client/solaris/handler/minidump_test.cc \
|
|
|
|
src/client/solaris/handler/solaris_lwp.cc \
|
|
|
|
src/client/solaris/handler/solaris_lwp.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/client/windows/breakpad_client.sln \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/client/windows/handler/exception_handler.cc \
|
|
|
|
src/client/windows/handler/exception_handler.h \
|
|
|
|
src/client/windows/handler/exception_handler.vcproj \
|
|
|
|
src/client/windows/sender/crash_report_sender.cc \
|
|
|
|
src/client/windows/sender/crash_report_sender.h \
|
|
|
|
src/client/windows/sender/crash_report_sender.vcproj \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/common/convert_UTF.c \
|
|
|
|
src/common/convert_UTF.h \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/common/linux/dump_symbols.cc \
|
|
|
|
src/common/linux/dump_symbols.h \
|
2011-07-06 10:05:49 -07:00
|
|
|
src/common/linux/elf_symbols_to_module.cc \
|
|
|
|
src/common/linux/elf_symbols_to_module.h \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/common/linux/file_id.cc \
|
|
|
|
src/common/linux/file_id.h \
|
|
|
|
src/common/linux/guid_creator.cc \
|
|
|
|
src/common/linux/guid_creator.h \
|
|
|
|
src/common/linux/http_upload.cc \
|
|
|
|
src/common/linux/http_upload.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/common/mac/HTTPMultipartUpload.h \
|
|
|
|
src/common/mac/HTTPMultipartUpload.m \
|
|
|
|
src/common/mac/dump_syms.h \
|
|
|
|
src/common/mac/dump_syms.mm \
|
|
|
|
src/common/mac/file_id.cc \
|
|
|
|
src/common/mac/file_id.h \
|
|
|
|
src/common/mac/macho_id.cc \
|
|
|
|
src/common/mac/macho_id.h \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/common/mac/macho_utilities.cc \
|
|
|
|
src/common/mac/macho_utilities.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/common/mac/macho_walker.cc \
|
|
|
|
src/common/mac/macho_walker.h \
|
|
|
|
src/common/mac/string_utilities.cc \
|
|
|
|
src/common/mac/string_utilities.h \
|
2011-11-18 14:40:27 -07:00
|
|
|
src/common/md5.cc \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/common/md5.h \
|
|
|
|
src/common/solaris/dump_symbols.cc \
|
|
|
|
src/common/solaris/dump_symbols.h \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/common/solaris/file_id.cc \
|
|
|
|
src/common/solaris/file_id.h \
|
|
|
|
src/common/solaris/guid_creator.cc \
|
|
|
|
src/common/solaris/guid_creator.h \
|
|
|
|
src/common/solaris/message_output.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/common/string_conversion.cc \
|
|
|
|
src/common/string_conversion.h \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/common/windows/guid_string.cc \
|
|
|
|
src/common/windows/guid_string.h \
|
|
|
|
src/common/windows/http_upload.cc \
|
|
|
|
src/common/windows/http_upload.h \
|
|
|
|
src/common/windows/pdb_source_line_writer.cc \
|
|
|
|
src/common/windows/pdb_source_line_writer.h \
|
|
|
|
src/common/windows/string_utils-inl.h \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/common/windows/string_utils.cc \
|
2006-09-07 19:35:53 -07:00
|
|
|
src/processor/testdata/minidump2.dmp \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/testdata/minidump2.dump.out \
|
2007-01-29 14:30:31 -07:00
|
|
|
src/processor/testdata/minidump2.stackwalk.machine_readable.out \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/testdata/minidump2.stackwalk.out \
|
2006-08-30 13:05:05 -07:00
|
|
|
src/processor/testdata/module1.out \
|
|
|
|
src/processor/testdata/module2.out \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/testdata/module3_bad.out \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/processor/testdata/module4_bad.out \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/testdata/symbols/kernel32.pdb/BCE8785C57B44245A669896B6A19B9542/kernel32.sym \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/processor/testdata/symbols/test_app.pdb/5A9832E5287241C1838ED98914E9B7FF1/test_app.sym \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/processor/testdata/test_app.cc \
|
2007-09-26 11:37:39 -07:00
|
|
|
src/tools/linux/dump_syms/Makefile \
|
|
|
|
src/tools/linux/dump_syms/dump_syms.cc \
|
|
|
|
src/tools/linux/symupload/Makefile \
|
|
|
|
src/tools/linux/symupload/minidump_upload.cc \
|
|
|
|
src/tools/linux/symupload/sym_upload.cc \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/tools/mac/crash_report/crash_report.mm \
|
|
|
|
src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj \
|
|
|
|
src/tools/mac/crash_report/on_demand_symbol_supplier.h \
|
|
|
|
src/tools/mac/crash_report/on_demand_symbol_supplier.mm \
|
|
|
|
src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj \
|
|
|
|
src/tools/mac/dump_syms/dump_syms_tool.m \
|
|
|
|
src/tools/mac/symupload/minidump_upload.m \
|
|
|
|
src/tools/mac/symupload/symupload.m \
|
|
|
|
src/tools/mac/symupload/symupload.xcodeproj/project.pbxproj \
|
2007-09-28 11:14:48 -07:00
|
|
|
src/tools/solaris/dump_syms/Makefile \
|
|
|
|
src/tools/solaris/dump_syms/dump_syms.cc \
|
|
|
|
src/tools/solaris/dump_syms/run_regtest.sh \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.cc \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.o \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.stabs \
|
|
|
|
src/tools/solaris/dump_syms/testdata/dump_syms_regtest.sym \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.cc \
|
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.h \
|
|
|
|
src/tools/windows/converter/ms_symbol_server_converter.vcproj \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/tools/windows/dump_syms/dump_syms.cc \
|
|
|
|
src/tools/windows/dump_syms/dump_syms.vcproj \
|
|
|
|
src/tools/windows/dump_syms/run_regtest.sh \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.cc \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb \
|
2007-02-14 12:51:05 -07:00
|
|
|
src/tools/windows/dump_syms/testdata/dump_syms_regtest.sym \
|
2006-12-05 15:52:28 -07:00
|
|
|
src/tools/windows/symupload/symupload.cc \
|
|
|
|
src/tools/windows/symupload/symupload.vcproj
|