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

Unified Diff: client/client.gyp

Issue 988063003: Define the Settings interface for a CrashReportDatabase and provide a Mac implementation. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: For landing 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 | « no previous file | client/crash_report_database.h » ('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 65b33486ae9860a53501bc3e56338727498e3b88..2705711067780c80934b251271f2ae3e2db2bd6f 100644
--- a/client/client.gyp
+++ b/client/client.gyp
@@ -39,6 +39,8 @@
'crashpad_client_mac.cc',
'crashpad_info.cc',
'crashpad_info.h',
+ 'settings.cc',
+ 'settings.h',
'simple_string_dictionary.cc',
'simple_string_dictionary.h',
'simulate_crash.h',
@@ -52,6 +54,10 @@
'-lrpcrt4.lib',
],
},
+ 'sources!': [
+ # Port to Win https://code.google.com/p/crashpad/issues/detail?id=13
+ 'settings.cc',
+ ],
}],
],
},
@@ -73,9 +79,18 @@
'sources': [
'capture_context_mac_test.cc',
'crash_report_database_test.cc',
+ 'settings_test.cc',
'simple_string_dictionary_test.cc',
'simulate_crash_mac_test.cc',
],
+ 'conditions': [
+ ['OS=="win"', {
+ 'sources!': [
+ # Port to Win https://code.google.com/p/crashpad/issues/detail?id=13
+ 'settings_test.cc',
+ ],
+ }],
+ ],
},
],
}
« no previous file with comments | « no previous file | client/crash_report_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698