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

Unified Diff: snapshot/snapshot.gyp

Issue 997713002: Allow exception forwarding to the system’s native crash reporter to be disabled (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Remove unused function declaration Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « snapshot/mac/process_types/crashpad_info.proctype ('k') | util/misc/tri_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/snapshot.gyp
diff --git a/snapshot/snapshot.gyp b/snapshot/snapshot.gyp
index 45cec5d666d89137770d5e8fb5d92a7bff3dfb72..073bebbb36ad4547c32b97e4609fa1f3941cfb53 100644
--- a/snapshot/snapshot.gyp
+++ b/snapshot/snapshot.gyp
@@ -36,6 +36,8 @@
'exception_snapshot.h',
'mac/cpu_context_mac.cc',
'mac/cpu_context_mac.h',
+ 'mac/crashpad_info_client_options.cc',
+ 'mac/crashpad_info_client_options.h',
'mac/exception_snapshot_mac.cc',
'mac/exception_snapshot_mac.h',
'mac/mach_o_image_annotations_reader.cc',
@@ -149,6 +151,7 @@
'sources': [
'cpu_context_test.cc',
'mac/cpu_context_mac_test.cc',
+ 'mac/crashpad_info_client_options_test.cc',
'mac/mach_o_image_annotations_reader_test.cc',
'mac/mach_o_image_reader_test.cc',
'mac/mach_o_image_segment_reader_test.cc',
@@ -158,6 +161,33 @@
'minidump/process_snapshot_minidump_test.cc',
'win/system_snapshot_win_test.cc',
],
+ 'conditions': [
+ ['OS=="mac"', {
+ 'dependencies': [
+ 'crashpad_snapshot_test_module',
+ ],
+ }],
+ ],
},
],
+ 'conditions': [
+ ['OS=="mac"', {
+ 'targets': [
+ {
+ 'target_name': 'crashpad_snapshot_test_module',
+ 'type': 'loadable_module',
+ 'dependencies': [
+ '../client/client.gyp:crashpad_client',
+ '../third_party/mini_chromium/mini_chromium.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'mac/crashpad_info_client_options_test_module.cc',
+ ],
+ },
+ ],
+ }],
+ ],
}
« no previous file with comments | « snapshot/mac/process_types/crashpad_info.proctype ('k') | util/misc/tri_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698