Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: util/util.gyp

Issue 1377963002: win: Add and use a custom CaptureContext() implementation (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'synchronization/semaphore_posix.cc', 142 'synchronization/semaphore_posix.cc',
143 'synchronization/semaphore_win.cc', 143 'synchronization/semaphore_win.cc',
144 'synchronization/semaphore.h', 144 'synchronization/semaphore.h',
145 'thread/thread.cc', 145 'thread/thread.cc',
146 'thread/thread.h', 146 'thread/thread.h',
147 'thread/thread_log_messages.cc', 147 'thread/thread_log_messages.cc',
148 'thread/thread_log_messages.h', 148 'thread/thread_log_messages.h',
149 'thread/thread_posix.cc', 149 'thread/thread_posix.cc',
150 'thread/thread_win.cc', 150 'thread/thread_win.cc',
151 'win/address_types.h', 151 'win/address_types.h',
152 'win/capture_context.asm',
153 'win/capture_context.h',
152 'win/checked_win_address_range.h', 154 'win/checked_win_address_range.h',
153 'win/exception_handler_server.cc', 155 'win/exception_handler_server.cc',
154 'win/exception_handler_server.h', 156 'win/exception_handler_server.h',
155 'win/module_version.cc', 157 'win/module_version.cc',
156 'win/module_version.h', 158 'win/module_version.h',
157 'win/nt_internals.cc', 159 'win/nt_internals.cc',
158 'win/nt_internals.h', 160 'win/nt_internals.h',
159 'win/ntstatus_logging.cc', 161 'win/ntstatus_logging.cc',
160 'win/ntstatus_logging.h', 162 'win/ntstatus_logging.h',
161 'win/process_info.cc', 163 'win/process_info.cc',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 ], 235 ],
234 }, 236 },
235 }], 237 }],
236 ['OS=="win"', { 238 ['OS=="win"', {
237 'link_settings': { 239 'link_settings': {
238 'libraries': [ 240 'libraries': [
239 '-lrpcrt4.lib', 241 '-lrpcrt4.lib',
240 '-lwinhttp.lib', 242 '-lwinhttp.lib',
241 ], 243 ],
242 }, 244 },
245 'conditions': [
246 ['target_arch=="ia32"', {
247 'msvs_settings': {
248 'MASM': {
249 'UseSafeExceptionHandlers': 'true',
250 },
251 },
252 }],
253 ['target_arch=="x64"', {
254 'rules': [
255 {
256 # .asm files aren’t assembled by the Windows toolchain by
257 # default on x86_64.
258 'rule_name': 'Assemble',
259 'msvs_cygwin_shell': 0,
260 'msvs_quote_cmd': 0,
261 'extension': 'asm',
262 'inputs': [],
263 'outputs': [
264 '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
265 ],
266 'action': [
267 'ml64',
268 '/nologo',
269 '/Fo',
270 '<(INTERMEDIATE_DIR)\\<(RULE_INPUT_ROOT).obj',
271 '/c',
272 '<(RULE_INPUT_PATH)',
273 ],
274 'process_outputs_as_sources': 1,
275 'message': 'Assembling <(RULE_INPUT_PATH)',
276 },
277 ],
278 }],
279 ],
243 }], 280 }],
244 ], 281 ],
245 }, 282 },
246 ], 283 ],
247 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698