| OLD | NEW |
| 1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'thread/worker_thread_test.cc', | 95 'thread/worker_thread_test.cc', |
| 96 'win/capture_context_test.cc', | 96 'win/capture_context_test.cc', |
| 97 'win/command_line_test.cc', | 97 'win/command_line_test.cc', |
| 98 'win/critical_section_with_debug_info_test.cc', | 98 'win/critical_section_with_debug_info_test.cc', |
| 99 'win/exception_handler_server_test.cc', | 99 'win/exception_handler_server_test.cc', |
| 100 'win/get_function_test.cc', | 100 'win/get_function_test.cc', |
| 101 'win/handle_test.cc', | 101 'win/handle_test.cc', |
| 102 'win/initial_client_data_test.cc', | 102 'win/initial_client_data_test.cc', |
| 103 'win/process_info_test.cc', | 103 'win/process_info_test.cc', |
| 104 'win/registration_protocol_win_test.cc', | 104 'win/registration_protocol_win_test.cc', |
| 105 'win/safe_terminate_process_test.cc', |
| 105 'win/scoped_process_suspend_test.cc', | 106 'win/scoped_process_suspend_test.cc', |
| 106 'win/session_end_watcher_test.cc', | 107 'win/session_end_watcher_test.cc', |
| 107 'win/time_test.cc', | 108 'win/time_test.cc', |
| 108 ], | 109 ], |
| 109 'conditions': [ | 110 'conditions': [ |
| 110 ['OS=="mac"', { | 111 ['OS=="mac"', { |
| 111 'link_settings': { | 112 'link_settings': { |
| 112 'libraries': [ | 113 'libraries': [ |
| 113 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 114 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 114 ], | 115 ], |
| 115 }, | 116 }, |
| 116 }], | 117 }], |
| 117 ['OS=="win"', { | 118 ['OS=="win"', { |
| 118 'dependencies': [ | 119 'dependencies': [ |
| 119 'crashpad_util_test_process_info_test_child', | 120 'crashpad_util_test_process_info_test_child', |
| 121 'crashpad_util_test_safe_terminate_process_test_child', |
| 120 ], | 122 ], |
| 121 'link_settings': { | 123 'link_settings': { |
| 122 'libraries': [ | 124 'libraries': [ |
| 123 '-ladvapi32.lib', | 125 '-ladvapi32.lib', |
| 124 '-limagehlp.lib', | 126 '-limagehlp.lib', |
| 125 '-lrpcrt4.lib', | 127 '-lrpcrt4.lib', |
| 126 '-luser32.lib', | 128 '-luser32.lib', |
| 127 ], | 129 ], |
| 128 }, | 130 }, |
| 129 }], | 131 }], |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'msvs_settings': { | 166 'msvs_settings': { |
| 165 'VCLinkerTool': { | 167 'VCLinkerTool': { |
| 166 'AdditionalOptions': [ | 168 'AdditionalOptions': [ |
| 167 '/BASE:0x78000000', | 169 '/BASE:0x78000000', |
| 168 ], | 170 ], |
| 169 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO. | 171 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO. |
| 170 'FixedBaseAddress': '2', # /FIXED. | 172 'FixedBaseAddress': '2', # /FIXED. |
| 171 }, | 173 }, |
| 172 }, | 174 }, |
| 173 }, | 175 }, |
| 176 { |
| 177 'target_name': 'crashpad_util_test_safe_terminate_process_test_child', |
| 178 'type': 'executable', |
| 179 'sources': [ |
| 180 'win/safe_terminate_process_test_child.cc', |
| 181 ], |
| 182 }, |
| 174 ] | 183 ] |
| 175 }], | 184 }], |
| 176 ], | 185 ], |
| 177 } | 186 } |
| OLD | NEW |