| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'mach/notify_server.cc', | 77 'mach/notify_server.cc', |
| 78 'mach/notify_server.h', | 78 'mach/notify_server.h', |
| 79 'mach/scoped_task_suspend.cc', | 79 'mach/scoped_task_suspend.cc', |
| 80 'mach/scoped_task_suspend.h', | 80 'mach/scoped_task_suspend.h', |
| 81 'mach/symbolic_constants_mach.cc', | 81 'mach/symbolic_constants_mach.cc', |
| 82 'mach/symbolic_constants_mach.h', | 82 'mach/symbolic_constants_mach.h', |
| 83 'mach/task_for_pid.cc', | 83 'mach/task_for_pid.cc', |
| 84 'mach/task_for_pid.h', | 84 'mach/task_for_pid.h', |
| 85 'mach/task_memory.cc', | 85 'mach/task_memory.cc', |
| 86 'mach/task_memory.h', | 86 'mach/task_memory.h', |
| 87 'misc/address_sanitizer.h', |
| 88 'misc/arraysize_unsafe.h', |
| 87 'misc/clock.h', | 89 'misc/clock.h', |
| 88 'misc/clock_mac.cc', | 90 'misc/clock_mac.cc', |
| 89 'misc/clock_posix.cc', | 91 'misc/clock_posix.cc', |
| 90 'misc/clock_win.cc', | 92 'misc/clock_win.cc', |
| 91 'misc/implicit_cast.h', | 93 'misc/implicit_cast.h', |
| 92 'misc/initialization_state.h', | 94 'misc/initialization_state.h', |
| 93 'misc/initialization_state_dcheck.cc', | 95 'misc/initialization_state_dcheck.cc', |
| 94 'misc/initialization_state_dcheck.h', | 96 'misc/initialization_state_dcheck.h', |
| 95 'misc/metrics.cc', | 97 'misc/metrics.cc', |
| 96 'misc/metrics.h', | 98 'misc/metrics.h', |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 256 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 255 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 257 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 256 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 258 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
| 257 '$(SDKROOT)/usr/lib/libbsm.dylib', | 259 '$(SDKROOT)/usr/lib/libbsm.dylib', |
| 258 ], | 260 ], |
| 259 }, | 261 }, |
| 260 }], | 262 }], |
| 261 ['OS=="win"', { | 263 ['OS=="win"', { |
| 262 'link_settings': { | 264 'link_settings': { |
| 263 'libraries': [ | 265 'libraries': [ |
| 264 '-ladvapi32.lib', | |
| 265 '-lrpcrt4.lib', | |
| 266 '-lwinhttp.lib', | 266 '-lwinhttp.lib', |
| 267 ], | 267 ], |
| 268 }, | 268 }, |
| 269 'msvs_disabled_warnings': [ | 269 'msvs_disabled_warnings': [ |
| 270 4201, # nonstandard extension used : nameless struct/union. | 270 4201, # nonstandard extension used : nameless struct/union. |
| 271 4577, # 'noexcept' used with no exception handling mode specified | 271 4577, # 'noexcept' used with no exception handling mode specified |
| 272 ], | 272 ], |
| 273 'direct_dependent_settings': { | 273 'direct_dependent_settings': { |
| 274 'msvs_disabled_warnings': [ | 274 'msvs_disabled_warnings': [ |
| 275 4577, # 'noexcept' used with no exception handling mode specified | 275 4577, # 'noexcept' used with no exception handling mode specified |
| (...skipping 10 matching lines...) Expand all Loading... |
| 286 ], | 286 ], |
| 287 }, { # else: OS!="win" | 287 }, { # else: OS!="win" |
| 288 'sources!': [ | 288 'sources!': [ |
| 289 'win/capture_context.asm', | 289 'win/capture_context.asm', |
| 290 ], | 290 ], |
| 291 }], | 291 }], |
| 292 ], | 292 ], |
| 293 }, | 293 }, |
| 294 ], | 294 ], |
| 295 } | 295 } |
| OLD | NEW |