michael@0: # Copyright (c) 2011 The Chromium Authors. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: { michael@0: 'includes': ['release_defaults.gypi'], michael@0: 'msvs_settings': { michael@0: 'VCCLCompilerTool': { michael@0: 'OmitFramePointers': 'false', michael@0: # The above is not sufficient (http://crbug.com/106711): it michael@0: # simply eliminates an explicit "/Oy", but both /O2 and /Ox michael@0: # perform FPO regardless, so we must explicitly disable. michael@0: # We still want the false setting above to avoid having michael@0: # "/Oy /Oy-" and warnings about overriding. michael@0: 'AdditionalOptions': ['/Oy-'], michael@0: }, michael@0: }, michael@0: }