Chromium Code Reviews| 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', |
| + ], |
| + }], |
| ], |
| }, |
| ], |