| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 'win/module_version.h', | 205 'win/module_version.h', |
| 206 'win/nt_internals.cc', | 206 'win/nt_internals.cc', |
| 207 'win/nt_internals.h', | 207 'win/nt_internals.h', |
| 208 'win/ntstatus_logging.cc', | 208 'win/ntstatus_logging.cc', |
| 209 'win/ntstatus_logging.h', | 209 'win/ntstatus_logging.h', |
| 210 'win/process_info.cc', | 210 'win/process_info.cc', |
| 211 'win/process_info.h', | 211 'win/process_info.h', |
| 212 'win/process_structs.h', | 212 'win/process_structs.h', |
| 213 'win/registration_protocol_win.cc', | 213 'win/registration_protocol_win.cc', |
| 214 'win/registration_protocol_win.h', | 214 'win/registration_protocol_win.h', |
| 215 'win/safe_terminate_process.asm', |
| 216 'win/safe_terminate_process.h', |
| 215 'win/scoped_handle.cc', | 217 'win/scoped_handle.cc', |
| 216 'win/scoped_handle.h', | 218 'win/scoped_handle.h', |
| 217 'win/scoped_local_alloc.cc', | 219 'win/scoped_local_alloc.cc', |
| 218 'win/scoped_local_alloc.h', | 220 'win/scoped_local_alloc.h', |
| 219 'win/scoped_process_suspend.cc', | 221 'win/scoped_process_suspend.cc', |
| 220 'win/scoped_process_suspend.h', | 222 'win/scoped_process_suspend.h', |
| 221 'win/session_end_watcher.cc', | 223 'win/session_end_watcher.cc', |
| 222 'win/session_end_watcher.h', | 224 'win/session_end_watcher.h', |
| 223 'win/termination_codes.h', | 225 'win/termination_codes.h', |
| 224 'win/time.cc', | 226 'win/time.cc', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 'msvs_settings': { | 311 'msvs_settings': { |
| 310 'MASM': { | 312 'MASM': { |
| 311 'UseSafeExceptionHandlers': 'true', | 313 'UseSafeExceptionHandlers': 'true', |
| 312 }, | 314 }, |
| 313 }, | 315 }, |
| 314 }], | 316 }], |
| 315 ], | 317 ], |
| 316 }, { # else: OS!="win" | 318 }, { # else: OS!="win" |
| 317 'sources!': [ | 319 'sources!': [ |
| 318 'win/capture_context.asm', | 320 'win/capture_context.asm', |
| 321 'win/safe_terminate_process.asm', |
| 319 ], | 322 ], |
| 320 }], | 323 }], |
| 321 ['OS=="linux"', { | 324 ['OS=="linux"', { |
| 322 'link_settings': { | 325 'link_settings': { |
| 323 'libraries': [ | 326 'libraries': [ |
| 324 '-lcurl', | 327 '-lcurl', |
| 325 ], | 328 ], |
| 326 }, | 329 }, |
| 327 }, { # else: OS!="linux" | 330 }, { # else: OS!="linux" |
| 328 'sources!': [ | 331 'sources!': [ |
| 329 'net/http_transport_libcurl.cc', | 332 'net/http_transport_libcurl.cc', |
| 330 ], | 333 ], |
| 331 }], | 334 }], |
| 332 ], | 335 ], |
| 333 'target_conditions': [ | 336 'target_conditions': [ |
| 334 ['OS=="android"', { | 337 ['OS=="android"', { |
| 335 'sources/': [ | 338 'sources/': [ |
| 336 ['include', '^linux/'], | 339 ['include', '^linux/'], |
| 337 ['include', '^misc/paths_linux\\.cc$'], | 340 ['include', '^misc/paths_linux\\.cc$'], |
| 338 ['include', '^posix/process_info_linux\\.cc$'], | 341 ['include', '^posix/process_info_linux\\.cc$'], |
| 339 ], | 342 ], |
| 340 }], | 343 }], |
| 341 ], | 344 ], |
| 342 }, | 345 }, |
| 343 ], | 346 ], |
| 344 } | 347 } |
| OLD | NEW |