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 18 matching lines...) Expand all Loading... |
29 'include_dirs': [ | 29 'include_dirs': [ |
30 '..', | 30 '..', |
31 ], | 31 ], |
32 'sources': [ | 32 'sources': [ |
33 'cpu_architecture.h', | 33 'cpu_architecture.h', |
34 'cpu_context.cc', | 34 'cpu_context.cc', |
35 'cpu_context.h', | 35 'cpu_context.h', |
36 'exception_snapshot.h', | 36 'exception_snapshot.h', |
37 'mac/cpu_context_mac.cc', | 37 'mac/cpu_context_mac.cc', |
38 'mac/cpu_context_mac.h', | 38 'mac/cpu_context_mac.h', |
| 39 'mac/crashpad_info_client_options.cc', |
| 40 'mac/crashpad_info_client_options.h', |
39 'mac/exception_snapshot_mac.cc', | 41 'mac/exception_snapshot_mac.cc', |
40 'mac/exception_snapshot_mac.h', | 42 'mac/exception_snapshot_mac.h', |
41 'mac/mach_o_image_annotations_reader.cc', | 43 'mac/mach_o_image_annotations_reader.cc', |
42 'mac/mach_o_image_annotations_reader.h', | 44 'mac/mach_o_image_annotations_reader.h', |
43 'mac/mach_o_image_reader.cc', | 45 'mac/mach_o_image_reader.cc', |
44 'mac/mach_o_image_reader.h', | 46 'mac/mach_o_image_reader.h', |
45 'mac/mach_o_image_segment_reader.cc', | 47 'mac/mach_o_image_segment_reader.cc', |
46 'mac/mach_o_image_segment_reader.h', | 48 'mac/mach_o_image_segment_reader.h', |
47 'mac/mach_o_image_symbol_table_reader.cc', | 49 'mac/mach_o_image_symbol_table_reader.cc', |
48 'mac/mach_o_image_symbol_table_reader.h', | 50 'mac/mach_o_image_symbol_table_reader.h', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 '../third_party/mini_chromium/mini_chromium.gyp:base', | 144 '../third_party/mini_chromium/mini_chromium.gyp:base', |
143 '../util/util.gyp:crashpad_util', | 145 '../util/util.gyp:crashpad_util', |
144 '../util/util.gyp:crashpad_util_test_lib', | 146 '../util/util.gyp:crashpad_util_test_lib', |
145 ], | 147 ], |
146 'include_dirs': [ | 148 'include_dirs': [ |
147 '..', | 149 '..', |
148 ], | 150 ], |
149 'sources': [ | 151 'sources': [ |
150 'cpu_context_test.cc', | 152 'cpu_context_test.cc', |
151 'mac/cpu_context_mac_test.cc', | 153 'mac/cpu_context_mac_test.cc', |
| 154 'mac/crashpad_info_client_options_test.cc', |
152 'mac/mach_o_image_annotations_reader_test.cc', | 155 'mac/mach_o_image_annotations_reader_test.cc', |
153 'mac/mach_o_image_reader_test.cc', | 156 'mac/mach_o_image_reader_test.cc', |
154 'mac/mach_o_image_segment_reader_test.cc', | 157 'mac/mach_o_image_segment_reader_test.cc', |
155 'mac/process_reader_test.cc', | 158 'mac/process_reader_test.cc', |
156 'mac/process_types_test.cc', | 159 'mac/process_types_test.cc', |
157 'mac/system_snapshot_mac_test.cc', | 160 'mac/system_snapshot_mac_test.cc', |
158 'minidump/process_snapshot_minidump_test.cc', | 161 'minidump/process_snapshot_minidump_test.cc', |
159 'win/system_snapshot_win_test.cc', | 162 'win/system_snapshot_win_test.cc', |
160 ], | 163 ], |
| 164 'conditions': [ |
| 165 ['OS=="mac"', { |
| 166 'dependencies': [ |
| 167 'crashpad_snapshot_test_module', |
| 168 ], |
| 169 }], |
| 170 ], |
161 }, | 171 }, |
162 ], | 172 ], |
| 173 'conditions': [ |
| 174 ['OS=="mac"', { |
| 175 'targets': [ |
| 176 { |
| 177 'target_name': 'crashpad_snapshot_test_module', |
| 178 'type': 'loadable_module', |
| 179 'dependencies': [ |
| 180 '../client/client.gyp:crashpad_client', |
| 181 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 182 ], |
| 183 'include_dirs': [ |
| 184 '..', |
| 185 ], |
| 186 'sources': [ |
| 187 'mac/crashpad_info_client_options_test_module.cc', |
| 188 ], |
| 189 }, |
| 190 ], |
| 191 }], |
| 192 ], |
163 } | 193 } |
OLD | NEW |