| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'mac/mach_o_image_segment_reader_test.cc', | 72 'mac/mach_o_image_segment_reader_test.cc', |
| 73 'mac/process_reader_test.cc', | 73 'mac/process_reader_test.cc', |
| 74 'mac/process_types_test.cc', | 74 'mac/process_types_test.cc', |
| 75 'mac/system_snapshot_mac_test.cc', | 75 'mac/system_snapshot_mac_test.cc', |
| 76 'minidump/process_snapshot_minidump_test.cc', | 76 'minidump/process_snapshot_minidump_test.cc', |
| 77 'win/cpu_context_win_test.cc', | 77 'win/cpu_context_win_test.cc', |
| 78 'win/exception_snapshot_win_test.cc', | 78 'win/exception_snapshot_win_test.cc', |
| 79 'win/pe_image_annotations_reader_test.cc', | 79 'win/pe_image_annotations_reader_test.cc', |
| 80 'win/pe_image_reader_test.cc', | 80 'win/pe_image_reader_test.cc', |
| 81 'win/process_reader_win_test.cc', | 81 'win/process_reader_win_test.cc', |
| 82 'win/process_snapshot_win_test.cc', |
| 82 'win/system_snapshot_win_test.cc', | 83 'win/system_snapshot_win_test.cc', |
| 83 ], | 84 ], |
| 84 'conditions': [ | 85 'conditions': [ |
| 85 ['OS=="mac"', { | 86 ['OS=="mac"', { |
| 86 'dependencies': [ | 87 'dependencies': [ |
| 87 'crashpad_snapshot_test_module_crashy_initializer', | 88 'crashpad_snapshot_test_module_crashy_initializer', |
| 88 'crashpad_snapshot_test_no_op', | 89 'crashpad_snapshot_test_no_op', |
| 89 ], | 90 ], |
| 90 'link_settings': { | 91 'link_settings': { |
| 91 'libraries': [ | 92 'libraries': [ |
| 92 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', | 93 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', |
| 93 ], | 94 ], |
| 94 }, | 95 }, |
| 95 }], | 96 }], |
| 96 ['OS=="win"', { | 97 ['OS=="win"', { |
| 97 'dependencies': [ | 98 'dependencies': [ |
| 98 'crashpad_snapshot_test_crashing_child', | 99 'crashpad_snapshot_test_crashing_child', |
| 100 'crashpad_snapshot_test_image_reader', |
| 101 'crashpad_snapshot_test_image_reader_module', |
| 99 ], | 102 ], |
| 100 }], | 103 }], |
| 101 ], | 104 ], |
| 102 }, | 105 }, |
| 103 { | 106 { |
| 104 'target_name': 'crashpad_snapshot_test_module', | 107 'target_name': 'crashpad_snapshot_test_module', |
| 105 'type': 'loadable_module', | 108 'type': 'loadable_module', |
| 106 'dependencies': [ | 109 'dependencies': [ |
| 107 '../client/client.gyp:crashpad_client', | 110 '../client/client.gyp:crashpad_client', |
| 108 '../third_party/mini_chromium/mini_chromium.gyp:base', | 111 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'dependencies': [ | 145 'dependencies': [ |
| 143 '../client/client.gyp:crashpad_client', | 146 '../client/client.gyp:crashpad_client', |
| 144 '../compat/compat.gyp:crashpad_compat', | 147 '../compat/compat.gyp:crashpad_compat', |
| 145 '../third_party/mini_chromium/mini_chromium.gyp:base', | 148 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 146 '../util/util.gyp:crashpad_util', | 149 '../util/util.gyp:crashpad_util', |
| 147 ], | 150 ], |
| 148 'sources': [ | 151 'sources': [ |
| 149 'win/crashpad_snapshot_test_crashing_child.cc', | 152 'win/crashpad_snapshot_test_crashing_child.cc', |
| 150 ], | 153 ], |
| 151 }, | 154 }, |
| 155 { |
| 156 'target_name': 'crashpad_snapshot_test_image_reader', |
| 157 'type': 'executable', |
| 158 'dependencies': [ |
| 159 '../client/client.gyp:crashpad_client', |
| 160 '../compat/compat.gyp:crashpad_compat', |
| 161 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 162 '../util/util.gyp:crashpad_util', |
| 163 ], |
| 164 'sources': [ |
| 165 'win/crashpad_snapshot_test_image_reader.cc', |
| 166 ], |
| 167 }, |
| 168 { |
| 169 'target_name': 'crashpad_snapshot_test_image_reader_module', |
| 170 'type': 'loadable_module', |
| 171 'dependencies': [ |
| 172 '../client/client.gyp:crashpad_client', |
| 173 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 174 ], |
| 175 'sources': [ |
| 176 'win/crashpad_snapshot_test_image_reader_module.cc', |
| 177 ], |
| 178 }, |
| 152 ], | 179 ], |
| 153 }], | 180 }], |
| 154 ], | 181 ], |
| 155 } | 182 } |
| OLD | NEW |