| 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', |
| 110 'win/system_snapshot_win.cc', | 112 'win/system_snapshot_win.cc', |
| 111 'win/system_snapshot_win.h', | 113 'win/system_snapshot_win.h', |
| 112 'win/thread_snapshot_win.cc', | 114 'win/thread_snapshot_win.cc', |
| 113 'win/thread_snapshot_win.h', | 115 'win/thread_snapshot_win.h', |
| 114 ], | 116 ], |
| 115 'conditions': [ | 117 'conditions': [ |
| 116 ['OS=="win"', { | 118 ['OS=="win"', { |
| 117 'link_settings': { | 119 'link_settings': { |
| 118 'libraries': [ | 120 'libraries': [ |
| 119 '-lpowrprof.lib', | 121 '-lpowrprof.lib', |
| 120 '-lversion.lib', | 122 '-lversion.lib', |
| 121 ], | 123 ], |
| 122 }, | 124 }, |
| 123 }], | 125 }], |
| 124 ] | 126 ] |
| 125 }, | 127 }, |
| 126 ], | 128 ], |
| 127 } | 129 } |
| OLD | NEW |