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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 'win/module_version.h', | 155 'win/module_version.h', |
156 'win/nt_internals.cc', | 156 'win/nt_internals.cc', |
157 'win/nt_internals.h', | 157 'win/nt_internals.h', |
158 'win/process_info.cc', | 158 'win/process_info.cc', |
159 'win/process_info.h', | 159 'win/process_info.h', |
160 'win/process_structs.h', | 160 'win/process_structs.h', |
161 'win/registration_protocol_win.cc', | 161 'win/registration_protocol_win.cc', |
162 'win/registration_protocol_win.h', | 162 'win/registration_protocol_win.h', |
163 'win/scoped_handle.cc', | 163 'win/scoped_handle.cc', |
164 'win/scoped_handle.h', | 164 'win/scoped_handle.h', |
| 165 'win/scoped_process_suspend.cc', |
| 166 'win/scoped_process_suspend.h', |
165 'win/time.cc', | 167 'win/time.cc', |
166 'win/time.h', | 168 'win/time.h', |
167 ], | 169 ], |
168 'conditions': [ | 170 'conditions': [ |
169 ['OS=="mac"', { | 171 ['OS=="mac"', { |
170 'conditions': [ | 172 'conditions': [ |
171 ['GENERATOR=="ninja"', { | 173 ['GENERATOR=="ninja"', { |
172 # ninja’s rules can’t deal with sources that have paths relative | 174 # ninja’s rules can’t deal with sources that have paths relative |
173 # to environment variables like SDKROOT. Copy the .defs files out | 175 # to environment variables like SDKROOT. Copy the .defs files out |
174 # of SDKROOT and into a place they can be referenced without any | 176 # of SDKROOT and into a place they can be referenced without any |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 'libraries': [ | 234 'libraries': [ |
233 '-lrpcrt4.lib', | 235 '-lrpcrt4.lib', |
234 '-lwinhttp.lib', | 236 '-lwinhttp.lib', |
235 ], | 237 ], |
236 }, | 238 }, |
237 }], | 239 }], |
238 ], | 240 ], |
239 }, | 241 }, |
240 ], | 242 ], |
241 } | 243 } |
OLD | NEW |