OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 # |
| 5 # This file enables hard optimizations on a per-target basis, it needs to be |
| 6 # included inside targets that require the absolute best performance. |
| 7 # This currently affects only the official Windows build, where it turns on |
| 8 # whole program optimizations for all sources compiled by the target. |
| 9 { |
| 10 'conditions': [ |
| 11 ['buildtype=="Official"', { |
| 12 'msvs_settings': { |
| 13 'VCCLCompilerTool': { |
| 14 'WholeProgramOptimization': 'true', |
| 15 }, |
| 16 }, |
| 17 }, |
| 18 ], |
| 19 ], |
| 20 } |
OLD | NEW |