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

Side by Side Diff: util/util.gyp

Issue 1527803002: Fix some VS 2015 warnings (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad.git@master
Patch Set: Remove comment and rename variable Created 5 years 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 ['OS=="win"', { 252 ['OS=="win"', {
253 'link_settings': { 253 'link_settings': {
254 'libraries': [ 254 'libraries': [
255 '-ladvapi32.lib', 255 '-ladvapi32.lib',
256 '-lrpcrt4.lib', 256 '-lrpcrt4.lib',
257 '-lwinhttp.lib', 257 '-lwinhttp.lib',
258 ], 258 ],
259 }, 259 },
260 'msvs_disabled_warnings': [ 260 'msvs_disabled_warnings': [
261 4201, # nonstandard extension used : nameless struct/union. 261 4201, # nonstandard extension used : nameless struct/union.
262 4577, # 'noexcept' used with no exception handling mode specified
262 ], 263 ],
263 'conditions': [ 264 'conditions': [
264 ['target_arch=="ia32"', { 265 ['target_arch=="ia32"', {
265 'msvs_settings': { 266 'msvs_settings': {
266 'MASM': { 267 'MASM': {
267 'UseSafeExceptionHandlers': 'true', 268 'UseSafeExceptionHandlers': 'true',
268 }, 269 },
269 }, 270 },
270 }], 271 }],
271 ], 272 ],
272 }], 273 }],
273 ], 274 ],
274 }, 275 },
275 ], 276 ],
276 } 277 }
OLDNEW
« snapshot/win/pe_image_reader.cc ('K') | « snapshot/win/pe_image_reader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698