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 15 matching lines...) Expand all Loading... |
26 '../third_party/mini_chromium/mini_chromium.gyp:base', | 26 '../third_party/mini_chromium/mini_chromium.gyp:base', |
27 '../util/util.gyp:crashpad_util', | 27 '../util/util.gyp:crashpad_util', |
28 ], | 28 ], |
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', |
| 37 'crashpad_info_client_options.h', |
36 'exception_snapshot.h', | 38 'exception_snapshot.h', |
37 'mac/cpu_context_mac.cc', | 39 'mac/cpu_context_mac.cc', |
38 'mac/cpu_context_mac.h', | 40 'mac/cpu_context_mac.h', |
39 'mac/crashpad_info_client_options.cc', | |
40 'mac/crashpad_info_client_options.h', | |
41 'mac/exception_snapshot_mac.cc', | 41 'mac/exception_snapshot_mac.cc', |
42 'mac/exception_snapshot_mac.h', | 42 'mac/exception_snapshot_mac.h', |
43 'mac/mach_o_image_annotations_reader.cc', | 43 'mac/mach_o_image_annotations_reader.cc', |
44 'mac/mach_o_image_annotations_reader.h', | 44 'mac/mach_o_image_annotations_reader.h', |
45 'mac/mach_o_image_reader.cc', | 45 'mac/mach_o_image_reader.cc', |
46 'mac/mach_o_image_reader.h', | 46 'mac/mach_o_image_reader.h', |
47 'mac/mach_o_image_segment_reader.cc', | 47 'mac/mach_o_image_segment_reader.cc', |
48 'mac/mach_o_image_segment_reader.h', | 48 'mac/mach_o_image_segment_reader.h', |
49 'mac/mach_o_image_symbol_table_reader.cc', | 49 'mac/mach_o_image_symbol_table_reader.cc', |
50 'mac/mach_o_image_symbol_table_reader.h', | 50 'mac/mach_o_image_symbol_table_reader.h', |
(...skipping 29 matching lines...) Expand all Loading... |
80 'minidump/minidump_string_reader.h', | 80 'minidump/minidump_string_reader.h', |
81 'minidump/module_snapshot_minidump.cc', | 81 'minidump/module_snapshot_minidump.cc', |
82 'minidump/module_snapshot_minidump.h', | 82 'minidump/module_snapshot_minidump.h', |
83 'minidump/process_snapshot_minidump.cc', | 83 'minidump/process_snapshot_minidump.cc', |
84 'minidump/process_snapshot_minidump.h', | 84 'minidump/process_snapshot_minidump.h', |
85 'memory_snapshot.h', | 85 'memory_snapshot.h', |
86 'module_snapshot.h', | 86 'module_snapshot.h', |
87 'process_snapshot.h', | 87 'process_snapshot.h', |
88 'system_snapshot.h', | 88 'system_snapshot.h', |
89 'thread_snapshot.h', | 89 'thread_snapshot.h', |
| 90 'win/module_snapshot_win.cc', |
| 91 'win/module_snapshot_win.h', |
| 92 'win/pe_image_reader.cc', |
| 93 'win/pe_image_reader.h', |
90 'win/process_reader_win.cc', | 94 'win/process_reader_win.cc', |
91 'win/process_reader_win.h', | 95 'win/process_reader_win.h', |
| 96 'win/process_snapshot_win.cc', |
| 97 'win/process_snapshot_win.h', |
92 'win/system_snapshot_win.cc', | 98 'win/system_snapshot_win.cc', |
93 'win/system_snapshot_win.h', | 99 'win/system_snapshot_win.h', |
94 ], | 100 ], |
95 'conditions': [ | 101 'conditions': [ |
96 ['OS=="win"', { | 102 ['OS=="win"', { |
97 'link_settings': { | 103 'link_settings': { |
98 'libraries': [ | 104 'libraries': [ |
99 '-lpowrprof.lib', | 105 '-lpowrprof.lib', |
100 '-lversion.lib', | 106 '-lversion.lib', |
101 ], | 107 ], |
102 }, | 108 }, |
103 }], | 109 }], |
104 ] | 110 ] |
105 }, | 111 }, |
106 ], | 112 ], |
107 } | 113 } |
OLD | NEW |