| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../../build/win_precompile.gypi', | 7 '../../build/win_precompile.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 'conditions': [ | 105 'conditions': [ |
| 106 ['OS=="win"', { | 106 ['OS=="win"', { |
| 107 'direct_dependent_settings': { | 107 'direct_dependent_settings': { |
| 108 'defines': [ | 108 'defines': [ |
| 109 'COMPILER_MSVC', | 109 'COMPILER_MSVC', |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int | 112 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int |
| 113 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267], | 113 'msvs_disabled_warnings': [4005, 4006, 4244, 4309, 4800, 4267], |
| 114 }, { | 114 }, { |
| 115 'direct_dependent_settings': { | 115 'direct_dependent_settings': { |
| 116 'defines': [ | 116 'defines': [ |
| 117 'COMPILER_GCC', | 117 'COMPILER_GCC', |
| 118 ], | 118 ], |
| 119 }, | 119 }, |
| 120 }], | 120 }], |
| 121 ], | 121 ], |
| 122 }, | 122 }, |
| 123 ], | 123 ], |
| 124 } | 124 } |
| OLD | NEW |