Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(501)

Side by Side Diff: breakpad/breakpad.gyp

Issue 1297663004: Roll src/breakpad/src 242fb9a:013acd5 (svn 1471:1495) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « breakpad/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'breakpad_sender.gypi', 7 'breakpad_sender.gypi',
8 'breakpad_handler.gypi', 8 'breakpad_handler.gypi',
9 ], 9 ],
10 'conditions': [ 10 'conditions': [
11 # minidump_stackwalk and minidump_dump are tool-type executables that do 11 # minidump_stackwalk and minidump_dump are tool-type executables that do
12 # not build on iOS with Xcode (but do build on iOS with ninja.) 12 # not build on iOS with Xcode (but do build on iOS with ninja.)
13 ['(OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja") a nd OS!="win"', { 13 ['(OS!="ios" or "<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVOR)"=="ninja") a nd OS!="win"', {
14 'targets': [ 14 'targets': [
15 { 15 {
16 # code shared by both {micro,mini}dump_stackwalk 16 # code shared by both {micro,mini}dump_stackwalk
17 # GN version: //breakpad:stackwalk_common 17 # GN version: //breakpad:stackwalk_common
18 'target_name': 'stackwalk_common', 18 'target_name': 'stackwalk_common',
19 'type': 'static_library', 19 'type': 'static_library',
20 'includes': ['breakpad_tools.gypi'], 20 'includes': ['breakpad_tools.gypi'],
21 'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'], 21 'defines': ['BPLOG_MINIMUM_SEVERITY=SEVERITY_ERROR'],
22 'sources': [ 22 'sources': [
23 'src/processor/basic_code_module.h', 23 'src/processor/basic_code_module.h',
24 'src/processor/basic_code_modules.cc', 24 'src/processor/basic_code_modules.cc',
25 'src/processor/basic_code_modules.h', 25 'src/processor/basic_code_modules.h',
26 'src/processor/basic_source_line_resolver.cc', 26 'src/processor/basic_source_line_resolver.cc',
27 'src/processor/binarystream.cc',
28 'src/processor/binarystream.h',
29 'src/processor/call_stack.cc', 27 'src/processor/call_stack.cc',
30 'src/processor/cfi_frame_info.cc', 28 'src/processor/cfi_frame_info.cc',
31 'src/processor/cfi_frame_info.h', 29 'src/processor/cfi_frame_info.h',
32 'src/processor/disassembler_x86.cc', 30 'src/processor/disassembler_x86.cc',
33 'src/processor/disassembler_x86.h', 31 'src/processor/disassembler_x86.h',
34 'src/processor/dump_context.cc', 32 'src/processor/dump_context.cc',
35 'src/processor/dump_object.cc', 33 'src/processor/dump_object.cc',
36 'src/processor/logging.cc', 34 'src/processor/logging.cc',
37 'src/processor/logging.h', 35 'src/processor/logging.h',
38 'src/processor/pathname_stripper.cc', 36 'src/processor/pathname_stripper.cc',
39 'src/processor/pathname_stripper.h', 37 'src/processor/pathname_stripper.h',
40 'src/processor/process_state.cc', 38 'src/processor/process_state.cc',
39 'src/processor/proc_maps_linux.cc',
41 'src/processor/simple_symbol_supplier.cc', 40 'src/processor/simple_symbol_supplier.cc',
42 'src/processor/simple_symbol_supplier.h', 41 'src/processor/simple_symbol_supplier.h',
43 'src/processor/source_line_resolver_base.cc', 42 'src/processor/source_line_resolver_base.cc',
44 'src/processor/stack_frame_cpu.cc', 43 'src/processor/stack_frame_cpu.cc',
45 'src/processor/stack_frame_symbolizer.cc', 44 'src/processor/stack_frame_symbolizer.cc',
46 'src/processor/stackwalk_common.cc', 45 'src/processor/stackwalk_common.cc',
47 'src/processor/stackwalker.cc', 46 'src/processor/stackwalker.cc',
48 'src/processor/stackwalker_amd64.cc', 47 'src/processor/stackwalker_amd64.cc',
49 'src/processor/stackwalker_amd64.h', 48 'src/processor/stackwalker_amd64.h',
50 'src/processor/stackwalker_arm.cc', 49 'src/processor/stackwalker_arm.cc',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'src/processor/basic_code_modules.cc', 149 'src/processor/basic_code_modules.cc',
151 'src/processor/basic_code_modules.h', 150 'src/processor/basic_code_modules.h',
152 'src/processor/dump_context.cc', 151 'src/processor/dump_context.cc',
153 'src/processor/dump_object.cc', 152 'src/processor/dump_object.cc',
154 'src/processor/logging.cc', 153 'src/processor/logging.cc',
155 'src/processor/logging.h', 154 'src/processor/logging.h',
156 'src/processor/minidump.cc', 155 'src/processor/minidump.cc',
157 'src/processor/minidump_dump.cc', 156 'src/processor/minidump_dump.cc',
158 'src/processor/pathname_stripper.cc', 157 'src/processor/pathname_stripper.cc',
159 'src/processor/pathname_stripper.h', 158 'src/processor/pathname_stripper.h',
159 'src/processor/proc_maps_linux.cc',
160 ], 160 ],
161 'conditions': [ 161 'conditions': [
162 ['OS=="ios"', { 162 ['OS=="ios"', {
163 'toolsets': ['host'], 163 'toolsets': ['host'],
164 }], 164 }],
165 ], 165 ],
166 }, 166 },
167 ], 167 ],
168 }], 168 }],
169 ['OS=="mac" or (OS=="ios" and ("<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVO R)"=="ninja"))', { 169 ['OS=="mac" or (OS=="ios" and ("<(GENERATOR)"!="xcode" or "<(GENERATOR_FLAVO R)"=="ninja"))', {
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 'sources': [ 511 'sources': [
512 'src/client/linux/crash_generation/crash_generation_client.cc', 512 'src/client/linux/crash_generation/crash_generation_client.cc',
513 'src/client/linux/crash_generation/crash_generation_client.h', 513 'src/client/linux/crash_generation/crash_generation_client.h',
514 'src/client/linux/handler/exception_handler.cc', 514 'src/client/linux/handler/exception_handler.cc',
515 'src/client/linux/handler/exception_handler.h', 515 'src/client/linux/handler/exception_handler.h',
516 'src/client/linux/handler/minidump_descriptor.cc', 516 'src/client/linux/handler/minidump_descriptor.cc',
517 'src/client/linux/handler/minidump_descriptor.h', 517 'src/client/linux/handler/minidump_descriptor.h',
518 'src/client/linux/log/log.cc', 518 'src/client/linux/log/log.cc',
519 'src/client/linux/log/log.h', 519 'src/client/linux/log/log.h',
520 'src/client/linux/dump_writer_common/mapping_info.h', 520 'src/client/linux/dump_writer_common/mapping_info.h',
521 'src/client/linux/dump_writer_common/seccomp_unwinder.cc',
522 'src/client/linux/dump_writer_common/seccomp_unwinder.h',
523 'src/client/linux/dump_writer_common/thread_info.cc', 521 'src/client/linux/dump_writer_common/thread_info.cc',
524 'src/client/linux/dump_writer_common/thread_info.h', 522 'src/client/linux/dump_writer_common/thread_info.h',
525 'src/client/linux/dump_writer_common/ucontext_reader.cc', 523 'src/client/linux/dump_writer_common/ucontext_reader.cc',
526 'src/client/linux/dump_writer_common/ucontext_reader.h', 524 'src/client/linux/dump_writer_common/ucontext_reader.h',
527 'src/client/linux/microdump_writer/microdump_writer.cc', 525 'src/client/linux/microdump_writer/microdump_writer.cc',
528 'src/client/linux/microdump_writer/microdump_writer.h', 526 'src/client/linux/microdump_writer/microdump_writer.h',
529 'src/client/linux/minidump_writer/cpu_set.h', 527 'src/client/linux/minidump_writer/cpu_set.h',
530 'src/client/linux/minidump_writer/directory_reader.h', 528 'src/client/linux/minidump_writer/directory_reader.h',
531 'src/client/linux/minidump_writer/line_reader.h', 529 'src/client/linux/minidump_writer/line_reader.h',
532 'src/client/linux/minidump_writer/linux_core_dumper.cc', 530 'src/client/linux/minidump_writer/linux_core_dumper.cc',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 'src/common/scoped_ptr.h', 615 'src/common/scoped_ptr.h',
618 'src/processor/basic_code_modules.cc', 616 'src/processor/basic_code_modules.cc',
619 'src/processor/basic_code_modules.h', 617 'src/processor/basic_code_modules.h',
620 'src/processor/dump_context.cc', 618 'src/processor/dump_context.cc',
621 'src/processor/dump_object.cc', 619 'src/processor/dump_object.cc',
622 'src/processor/logging.cc', 620 'src/processor/logging.cc',
623 'src/processor/logging.h', 621 'src/processor/logging.h',
624 'src/processor/minidump.cc', 622 'src/processor/minidump.cc',
625 'src/processor/pathname_stripper.cc', 623 'src/processor/pathname_stripper.cc',
626 'src/processor/pathname_stripper.h', 624 'src/processor/pathname_stripper.h',
625 'src/processor/proc_maps_linux.cc',
627 ], 626 ],
628 627
629 'include_dirs': [ 628 'include_dirs': [
630 'src', 629 'src',
631 'src/client', 630 'src/client',
632 'src/third_party/linux/include', 631 'src/third_party/linux/include',
633 '..', 632 '..',
634 '.', 633 '.',
635 ], 634 ],
636 }, 635 },
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 'include_main_binary': 0, 979 'include_main_binary': 0,
981 }, 980 },
982 'includes': [ 981 'includes': [
983 '../build/android/native_app_dependencies.gypi' 982 '../build/android/native_app_dependencies.gypi'
984 ], 983 ],
985 } 984 }
986 ], 985 ],
987 }], 986 }],
988 ], 987 ],
989 } 988 }
OLDNEW
« no previous file with comments | « breakpad/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698