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

Unified Diff: client/client.gyp

Issue 867363003: win: Implementation of CrashReportDatabase for Windows (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . Created 5 years, 10 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 | « no previous file | client/crash_report_database_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/client.gyp
diff --git a/client/client.gyp b/client/client.gyp
index baedfd1854aebd8eebb0390478a87593a848fb87..c8895563f80d0a2f563737eaacf02ec0ee84cb74 100644
--- a/client/client.gyp
+++ b/client/client.gyp
@@ -26,21 +26,31 @@
'..',
],
'sources': [
- 'capture_context_mac.h',
'capture_context_mac.S',
+ 'capture_context_mac.h',
+ 'crash_report_database.cc',
+ 'crash_report_database.h',
+ 'crash_report_database_mac.mm',
+ 'crash_report_database_win.cc',
'crashpad_client.h',
'crashpad_client_mac.cc',
'crashpad_info.cc',
'crashpad_info.h',
- 'crash_report_database_mac.mm',
- 'crash_report_database.cc',
- 'crash_report_database.h',
'simple_string_dictionary.cc',
'simple_string_dictionary.h',
'simulate_crash.h',
'simulate_crash_mac.cc',
'simulate_crash_mac.h',
],
+ 'conditions': [
+ ['OS=="win"', {
+ 'link_settings': {
+ 'libraries': [
+ '-lrpcrt4.lib',
+ ],
+ },
+ }],
+ ],
},
{
'target_name': 'client_test',
« no previous file with comments | « no previous file | client/crash_report_database_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698