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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 'win/nt_internals.h', | 168 'win/nt_internals.h', |
169 'win/ntstatus_logging.cc', | 169 'win/ntstatus_logging.cc', |
170 'win/ntstatus_logging.h', | 170 'win/ntstatus_logging.h', |
171 'win/process_info.cc', | 171 'win/process_info.cc', |
172 'win/process_info.h', | 172 'win/process_info.h', |
173 'win/process_structs.h', | 173 'win/process_structs.h', |
174 'win/registration_protocol_win.cc', | 174 'win/registration_protocol_win.cc', |
175 'win/registration_protocol_win.h', | 175 'win/registration_protocol_win.h', |
176 'win/scoped_handle.cc', | 176 'win/scoped_handle.cc', |
177 'win/scoped_handle.h', | 177 'win/scoped_handle.h', |
| 178 'win/scoped_local_alloc.cc', |
| 179 'win/scoped_local_alloc.h', |
178 'win/scoped_process_suspend.cc', | 180 'win/scoped_process_suspend.cc', |
179 'win/scoped_process_suspend.h', | 181 'win/scoped_process_suspend.h', |
180 'win/time.cc', | 182 'win/time.cc', |
181 'win/time.h', | 183 'win/time.h', |
182 'win/xp_compat.h', | 184 'win/xp_compat.h', |
183 ], | 185 ], |
184 'conditions': [ | 186 'conditions': [ |
185 ['OS=="mac"', { | 187 ['OS=="mac"', { |
186 'conditions': [ | 188 'conditions': [ |
187 ['GENERATOR=="ninja"', { | 189 ['GENERATOR=="ninja"', { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 241 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
240 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 242 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
241 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 243 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
242 '$(SDKROOT)/usr/lib/libbsm.dylib', | 244 '$(SDKROOT)/usr/lib/libbsm.dylib', |
243 ], | 245 ], |
244 }, | 246 }, |
245 }], | 247 }], |
246 ['OS=="win"', { | 248 ['OS=="win"', { |
247 'link_settings': { | 249 'link_settings': { |
248 'libraries': [ | 250 'libraries': [ |
| 251 '-ladvapi32.lib', |
249 '-lrpcrt4.lib', | 252 '-lrpcrt4.lib', |
250 '-lwinhttp.lib', | 253 '-lwinhttp.lib', |
251 ], | 254 ], |
252 }, | 255 }, |
253 'msvs_disabled_warnings': [ | 256 'msvs_disabled_warnings': [ |
254 4201, # nonstandard extension used : nameless struct/union. | 257 4201, # nonstandard extension used : nameless struct/union. |
255 ], | 258 ], |
256 'conditions': [ | 259 'conditions': [ |
257 ['target_arch=="ia32"', { | 260 ['target_arch=="ia32"', { |
258 'msvs_settings': { | 261 'msvs_settings': { |
259 'MASM': { | 262 'MASM': { |
260 'UseSafeExceptionHandlers': 'true', | 263 'UseSafeExceptionHandlers': 'true', |
261 }, | 264 }, |
262 }, | 265 }, |
263 }], | 266 }], |
264 ], | 267 ], |
265 }], | 268 }], |
266 ], | 269 ], |
267 }, | 270 }, |
268 ], | 271 ], |
269 } | 272 } |
OLD | NEW |