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

Unified Diff: handler/handler_test.gyp

Issue 1126783004: Introduce RegistrationServer. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 7 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
Index: handler/handler_test.gyp
diff --git a/client/client_test.gyp b/handler/handler_test.gyp
similarity index 79%
copy from client/client_test.gyp
copy to handler/handler_test.gyp
index cc6893f9b38c172e1d5680373712d33d19e078bf..a71ef75a44f689c7f98f115af2e2a97fd3fe9e1c 100644
--- a/client/client_test.gyp
+++ b/handler/handler_test.gyp
@@ -18,10 +18,10 @@
],
'targets': [
{
- 'target_name': 'crashpad_client_test',
+ 'target_name': 'crashpad_handler_test',
Mark Mentovai 2015/05/05 20:20:33 This whole target should be win-only. An executabl
erikwright (departed) 2015/05/20 17:10:15 Done.
'type': 'executable',
'dependencies': [
- 'client.gyp:crashpad_client',
+ 'handler.gyp:crashpad_handler',
'../compat/compat.gyp:crashpad_compat',
'../test/test.gyp:crashpad_test',
'../third_party/gtest/gtest.gyp:gtest',
@@ -32,12 +32,12 @@
'include_dirs': [
'..',
],
- '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': [
+ 'win/registration_server_test.cc',
+ ],
+ }],
],
},
],

Powered by Google App Engine
This is Rietveld 408576698