mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-28 15:50:26 +08:00
d85f898a69
Also remove MemorySnapshotWin since the code is identical to MemorySnapshotGeneric now. Bug: crashpad:95 Change-Id: I9a631f8eb206dd72a69158021db87e8db41c5913 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/1642148 Reviewed-by: Mark Mentovai <mark@chromium.org> Reviewed-by: Vlad Tsyrklevich <vtsyrklevich@chromium.org> Commit-Queue: Clark DuVall <cduvall@chromium.org>
215 lines
7.7 KiB
Python
215 lines
7.7 KiB
Python
# Copyright 2014 The Crashpad Authors. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
{
|
|
'includes': [
|
|
'../build/crashpad.gypi',
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'crashpad_snapshot',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'../client/client.gyp:crashpad_client',
|
|
'../compat/compat.gyp:crashpad_compat',
|
|
'../third_party/mini_chromium/mini_chromium.gyp:base',
|
|
'../util/util.gyp:crashpad_util',
|
|
],
|
|
'include_dirs': [
|
|
'..',
|
|
],
|
|
'sources': [
|
|
'annotation_snapshot.cc',
|
|
'annotation_snapshot.h',
|
|
'capture_memory.cc',
|
|
'capture_memory.h',
|
|
'cpu_architecture.h',
|
|
'cpu_context.cc',
|
|
'cpu_context.h',
|
|
'crashpad_info_client_options.cc',
|
|
'crashpad_info_client_options.h',
|
|
'crashpad_types/crashpad_info_reader.cc',
|
|
'crashpad_types/crashpad_info_reader.h',
|
|
'crashpad_types/image_annotation_reader.cc',
|
|
'crashpad_types/image_annotation_reader.h',
|
|
'elf/elf_dynamic_array_reader.cc',
|
|
'elf/elf_dynamic_array_reader.h',
|
|
'elf/elf_image_reader.cc',
|
|
'elf/elf_image_reader.h',
|
|
'elf/elf_symbol_table_reader.cc',
|
|
'elf/elf_symbol_table_reader.h',
|
|
'elf/module_snapshot_elf.cc',
|
|
'elf/module_snapshot_elf.h',
|
|
'exception_snapshot.h',
|
|
'handle_snapshot.cc',
|
|
'handle_snapshot.h',
|
|
'linux/cpu_context_linux.cc',
|
|
'linux/cpu_context_linux.h',
|
|
'linux/debug_rendezvous.cc',
|
|
'linux/debug_rendezvous.h',
|
|
'linux/exception_snapshot_linux.cc',
|
|
'linux/exception_snapshot_linux.h',
|
|
'linux/process_reader_linux.cc',
|
|
'linux/process_reader_linux.h',
|
|
'linux/process_snapshot_linux.cc',
|
|
'linux/process_snapshot_linux.h',
|
|
'linux/signal_context.h',
|
|
'linux/system_snapshot_linux.cc',
|
|
'linux/system_snapshot_linux.h',
|
|
'linux/thread_snapshot_linux.cc',
|
|
'linux/thread_snapshot_linux.h',
|
|
'mac/cpu_context_mac.cc',
|
|
'mac/cpu_context_mac.h',
|
|
'mac/exception_snapshot_mac.cc',
|
|
'mac/exception_snapshot_mac.h',
|
|
'mac/mach_o_image_annotations_reader.cc',
|
|
'mac/mach_o_image_annotations_reader.h',
|
|
'mac/mach_o_image_reader.cc',
|
|
'mac/mach_o_image_reader.h',
|
|
'mac/mach_o_image_segment_reader.cc',
|
|
'mac/mach_o_image_segment_reader.h',
|
|
'mac/mach_o_image_symbol_table_reader.cc',
|
|
'mac/mach_o_image_symbol_table_reader.h',
|
|
'mac/module_snapshot_mac.cc',
|
|
'mac/module_snapshot_mac.h',
|
|
'mac/process_reader_mac.cc',
|
|
'mac/process_reader_mac.h',
|
|
'mac/process_snapshot_mac.cc',
|
|
'mac/process_snapshot_mac.h',
|
|
'mac/process_types.cc',
|
|
'mac/process_types.h',
|
|
'mac/process_types/all.proctype',
|
|
'mac/process_types/annotation.proctype',
|
|
'mac/process_types/crashpad_info.proctype',
|
|
'mac/process_types/crashreporterclient.proctype',
|
|
'mac/process_types/custom.cc',
|
|
'mac/process_types/dyld_images.proctype',
|
|
'mac/process_types/flavors.h',
|
|
'mac/process_types/internal.h',
|
|
'mac/process_types/loader.proctype',
|
|
'mac/process_types/nlist.proctype',
|
|
'mac/process_types/traits.h',
|
|
'mac/system_snapshot_mac.cc',
|
|
'mac/system_snapshot_mac.h',
|
|
'mac/thread_snapshot_mac.cc',
|
|
'mac/thread_snapshot_mac.h',
|
|
'memory_snapshot.cc',
|
|
'memory_snapshot.h',
|
|
'memory_snapshot_generic.h',
|
|
'minidump/minidump_annotation_reader.cc',
|
|
'minidump/minidump_annotation_reader.h',
|
|
'minidump/minidump_simple_string_dictionary_reader.cc',
|
|
'minidump/minidump_simple_string_dictionary_reader.h',
|
|
'minidump/minidump_stream.h',
|
|
'minidump/minidump_string_list_reader.cc',
|
|
'minidump/minidump_string_list_reader.h',
|
|
'minidump/minidump_string_reader.cc',
|
|
'minidump/minidump_string_reader.h',
|
|
'minidump/exception_snapshot_minidump.cc',
|
|
'minidump/exception_snapshot_minidump.h',
|
|
'minidump/memory_snapshot_minidump.cc',
|
|
'minidump/memory_snapshot_minidump.h',
|
|
'minidump/module_snapshot_minidump.cc',
|
|
'minidump/module_snapshot_minidump.h',
|
|
'minidump/process_snapshot_minidump.cc',
|
|
'minidump/process_snapshot_minidump.h',
|
|
'minidump/system_snapshot_minidump.cc',
|
|
'minidump/system_snapshot_minidump.h',
|
|
'minidump/thread_snapshot_minidump.cc',
|
|
'minidump/thread_snapshot_minidump.h',
|
|
'module_snapshot.h',
|
|
'posix/timezone.cc',
|
|
'posix/timezone.h',
|
|
'process_snapshot.h',
|
|
'sanitized/memory_snapshot_sanitized.cc',
|
|
'sanitized/memory_snapshot_sanitized.h',
|
|
'sanitized/module_snapshot_sanitized.cc',
|
|
'sanitized/module_snapshot_sanitized.h',
|
|
'sanitized/process_snapshot_sanitized.cc',
|
|
'sanitized/process_snapshot_sanitized.h',
|
|
'sanitized/sanitization_information.cc',
|
|
'sanitized/sanitization_information.h',
|
|
'sanitized/thread_snapshot_sanitized.cc',
|
|
'sanitized/thread_snapshot_sanitized.h',
|
|
'snapshot_constants.h',
|
|
'system_snapshot.h',
|
|
'thread_snapshot.h',
|
|
'unloaded_module_snapshot.cc',
|
|
'unloaded_module_snapshot.h',
|
|
'win/cpu_context_win.cc',
|
|
'win/cpu_context_win.h',
|
|
'win/exception_snapshot_win.cc',
|
|
'win/exception_snapshot_win.h',
|
|
'win/capture_memory_delegate_win.cc',
|
|
'win/capture_memory_delegate_win.h',
|
|
'win/memory_map_region_snapshot_win.cc',
|
|
'win/memory_map_region_snapshot_win.h',
|
|
'win/module_snapshot_win.cc',
|
|
'win/module_snapshot_win.h',
|
|
'win/pe_image_annotations_reader.cc',
|
|
'win/pe_image_annotations_reader.h',
|
|
'win/pe_image_reader.cc',
|
|
'win/pe_image_reader.h',
|
|
'win/pe_image_resource_reader.cc',
|
|
'win/pe_image_resource_reader.h',
|
|
'win/process_reader_win.cc',
|
|
'win/process_reader_win.h',
|
|
'win/process_snapshot_win.cc',
|
|
'win/process_snapshot_win.h',
|
|
'win/process_subrange_reader.cc',
|
|
'win/process_subrange_reader.h',
|
|
'win/system_snapshot_win.cc',
|
|
'win/system_snapshot_win.h',
|
|
'win/thread_snapshot_win.cc',
|
|
'win/thread_snapshot_win.h',
|
|
'x86/cpuid_reader.cc',
|
|
'x86/cpuid_reader.h',
|
|
],
|
|
'conditions': [
|
|
['OS=="win"', {
|
|
'link_settings': {
|
|
'libraries': [
|
|
'-lpowrprof.lib',
|
|
],
|
|
},
|
|
}],
|
|
['OS=="linux" or OS=="android"', {
|
|
'sources!': [
|
|
'capture_memory.cc',
|
|
'capture_memory.h',
|
|
],
|
|
}, { # else: OS!="linux" and OS!="android"
|
|
'sources/': [
|
|
['exclude', '^elf/'],
|
|
['exclude', '^crashpad_types/'],
|
|
['exclude', '^sanitized/'],
|
|
],
|
|
}],
|
|
['target_arch!="ia32" and target_arch!="x64"', {
|
|
'sources/': [
|
|
['exclude', '^x86/'],
|
|
],
|
|
}],
|
|
],
|
|
'target_conditions': [
|
|
['OS=="android"', {
|
|
'sources/': [
|
|
['include', '^linux/'],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|