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 'crashpad_info_client_options.cc', | 36 'crashpad_info_client_options.cc', |
37 'crashpad_info_client_options.h', | 37 'crashpad_info_client_options.h', |
38 'exception_snapshot.h', | 38 'exception_snapshot.h', |
| 39 'handle_snapshot.cc', |
| 40 'handle_snapshot.h', |
39 'mac/cpu_context_mac.cc', | 41 'mac/cpu_context_mac.cc', |
40 'mac/cpu_context_mac.h', | 42 'mac/cpu_context_mac.h', |
41 'mac/exception_snapshot_mac.cc', | 43 'mac/exception_snapshot_mac.cc', |
42 'mac/exception_snapshot_mac.h', | 44 'mac/exception_snapshot_mac.h', |
43 'mac/mach_o_image_annotations_reader.cc', | 45 'mac/mach_o_image_annotations_reader.cc', |
44 'mac/mach_o_image_annotations_reader.h', | 46 'mac/mach_o_image_annotations_reader.h', |
45 'mac/mach_o_image_reader.cc', | 47 'mac/mach_o_image_reader.cc', |
46 'mac/mach_o_image_reader.h', | 48 'mac/mach_o_image_reader.h', |
47 'mac/mach_o_image_segment_reader.cc', | 49 'mac/mach_o_image_segment_reader.cc', |
48 'mac/mach_o_image_segment_reader.h', | 50 'mac/mach_o_image_segment_reader.h', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'libraries': [ | 118 'libraries': [ |
117 '-lpowrprof.lib', | 119 '-lpowrprof.lib', |
118 '-lversion.lib', | 120 '-lversion.lib', |
119 ], | 121 ], |
120 }, | 122 }, |
121 }], | 123 }], |
122 ] | 124 ] |
123 }, | 125 }, |
124 ], | 126 ], |
125 } | 127 } |
OLD | NEW |