| OLD | NEW |
| 1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 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 'variables': { | 6 'variables': { |
| 7 'variables': { | 7 'variables': { |
| 8 'clang%': 0, | 8 'clang%': 0, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS=="mac"', { | 10 ['OS=="mac"', { |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 }, | 183 }, |
| 184 'VCLinkerTool': { | 184 'VCLinkerTool': { |
| 185 'GenerateDebugInformation': 'true', | 185 'GenerateDebugInformation': 'true', |
| 186 'RandomizedBaseAddress': '2', # /DYNAMICBASE. | 186 'RandomizedBaseAddress': '2', # /DYNAMICBASE. |
| 187 'SubSystem': '1', | 187 'SubSystem': '1', |
| 188 }, | 188 }, |
| 189 }, | 189 }, |
| 190 'msvs_disabled_warnings': [ | 190 'msvs_disabled_warnings': [ |
| 191 4100, # Unreferenced formal parameter. | 191 4100, # Unreferenced formal parameter. |
| 192 4127, # Conditional expression is constant. | 192 4127, # Conditional expression is constant. |
| 193 4201, # Nonstandard extension used : nameless struct/union. | |
| 194 4324, # 'X' was padded due to __declspec(align()). | |
| 195 4351, # New behavior: elements of array will be default initialized. | 193 4351, # New behavior: elements of array will be default initialized. |
| 196 4530, # Exceptions are disabled. | 194 4530, # Exceptions are disabled. |
| 197 4702, # Unreachable code. https://crbug.com/346399 | 195 4702, # Unreachable code. https://crbug.com/346399 |
| 198 4706, # Assignment within conditional expression. | |
| 199 4996, # 'X' was declared deprecated. | 196 4996, # 'X' was declared deprecated. |
| 200 ], | 197 ], |
| 201 'defines': [ | 198 'defines': [ |
| 202 '_HAS_EXCEPTIONS=0', | 199 '_HAS_EXCEPTIONS=0', |
| 203 '_CRT_SECURE_NO_WARNINGS', | 200 '_CRT_SECURE_NO_WARNINGS', |
| 204 'NOMINMAX', | 201 'NOMINMAX', |
| 205 'WIN32_LEAN_AND_MEAN', | 202 'WIN32_LEAN_AND_MEAN', |
| 206 ], | 203 ], |
| 207 'conditions': [ | 204 'conditions': [ |
| 208 ['target_arch=="ia32"', { | 205 ['target_arch=="ia32"', { |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 }, | 340 }, |
| 344 | 341 |
| 345 'conditions': [ | 342 'conditions': [ |
| 346 ['OS=="mac"', { | 343 ['OS=="mac"', { |
| 347 'xcode_settings': { | 344 'xcode_settings': { |
| 348 'SYMROOT': '<(DEPTH)/xcodebuild', | 345 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 349 }, | 346 }, |
| 350 }], | 347 }], |
| 351 ], | 348 ], |
| 352 } | 349 } |
| OLD | NEW |