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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 'win/memory_map_region_snapshot_win.cc', | 96 'win/memory_map_region_snapshot_win.cc', |
97 'win/memory_map_region_snapshot_win.h', | 97 'win/memory_map_region_snapshot_win.h', |
98 'win/memory_snapshot_win.cc', | 98 'win/memory_snapshot_win.cc', |
99 'win/memory_snapshot_win.h', | 99 'win/memory_snapshot_win.h', |
100 'win/module_snapshot_win.cc', | 100 'win/module_snapshot_win.cc', |
101 'win/module_snapshot_win.h', | 101 'win/module_snapshot_win.h', |
102 'win/pe_image_annotations_reader.cc', | 102 'win/pe_image_annotations_reader.cc', |
103 'win/pe_image_annotations_reader.h', | 103 'win/pe_image_annotations_reader.h', |
104 'win/pe_image_reader.cc', | 104 'win/pe_image_reader.cc', |
105 'win/pe_image_reader.h', | 105 'win/pe_image_reader.h', |
| 106 'win/pe_image_resource_reader.cc', |
| 107 'win/pe_image_resource_reader.h', |
106 'win/process_reader_win.cc', | 108 'win/process_reader_win.cc', |
107 'win/process_reader_win.h', | 109 'win/process_reader_win.h', |
108 'win/process_snapshot_win.cc', | 110 'win/process_snapshot_win.cc', |
109 'win/process_snapshot_win.h', | 111 'win/process_snapshot_win.h', |
| 112 'win/process_subrange_reader.cc', |
| 113 'win/process_subrange_reader.h', |
110 'win/system_snapshot_win.cc', | 114 'win/system_snapshot_win.cc', |
111 'win/system_snapshot_win.h', | 115 'win/system_snapshot_win.h', |
112 'win/thread_snapshot_win.cc', | 116 'win/thread_snapshot_win.cc', |
113 'win/thread_snapshot_win.h', | 117 'win/thread_snapshot_win.h', |
114 ], | 118 ], |
115 'conditions': [ | 119 'conditions': [ |
116 ['OS=="win"', { | 120 ['OS=="win"', { |
117 'link_settings': { | 121 'link_settings': { |
118 'libraries': [ | 122 'libraries': [ |
119 '-lpowrprof.lib', | 123 '-lpowrprof.lib', |
120 '-lversion.lib', | 124 '-lversion.lib', |
121 ], | 125 ], |
122 }, | 126 }, |
123 }], | 127 }], |
124 ] | 128 ] |
125 }, | 129 }, |
126 ], | 130 ], |
127 } | 131 } |
OLD | NEW |