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

Unified Diff: snapshot/snapshot_test.gyp

Issue 1052813002: win: make CrashpadInfo retrievable (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: more fixes Created 5 years, 8 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/snapshot.gyp ('k') | snapshot/win/module_snapshot_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/snapshot_test.gyp
diff --git a/snapshot/snapshot_test.gyp b/snapshot/snapshot_test.gyp
index 974bc76026129aa196e39b1e421c454c651bcd00..c05a7f1145072e62ea3a3e1a8991d5376ace66ab 100644
--- a/snapshot/snapshot_test.gyp
+++ b/snapshot/snapshot_test.gyp
@@ -50,6 +50,7 @@
'target_name': 'crashpad_snapshot_test',
'type': 'executable',
'dependencies': [
+ 'crashpad_snapshot_test_module',
'snapshot.gyp:crashpad_snapshot',
'../client/client.gyp:crashpad_client',
'../compat/compat.gyp:crashpad_compat',
@@ -64,8 +65,8 @@
],
'sources': [
'cpu_context_test.cc',
+ 'crashpad_info_client_options_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',
@@ -73,13 +74,11 @@
'mac/process_types_test.cc',
'mac/system_snapshot_mac_test.cc',
'minidump/process_snapshot_minidump_test.cc',
+ 'win/process_reader_win_test.cc',
'win/system_snapshot_win_test.cc',
],
'conditions': [
['OS=="mac"', {
- 'dependencies': [
- 'crashpad_snapshot_test_module',
- ],
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/OpenCL.framework',
@@ -88,25 +87,19 @@
}],
],
},
- ],
- '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',
- ],
- },
+ {
+ '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': [
+ 'crashpad_info_client_options_test_module.cc',
+ ],
+ },
],
}
« no previous file with comments | « snapshot/snapshot.gyp ('k') | snapshot/win/module_snapshot_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698