OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2009 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 { |
| 6 'conditions': [ |
| 7 [ 'OS=="win"', { |
| 8 'target_defaults': { |
| 9 'defines': [ |
| 10 '_CRT_SECURE_NO_DEPRECATE', |
| 11 '_CRT_NONSTDC_NO_WARNINGS', |
| 12 '_CRT_NONSTDC_NO_DEPRECATE', |
| 13 '_SCL_SECURE_NO_DEPRECATE', |
| 14 ], |
| 15 'msvs_disabled_warnings': [4800], |
| 16 'msvs_settings': { |
| 17 'VCCLCompilerTool': { |
| 18 'WarnAsError': 'false', |
| 19 'Detect64BitPortabilityProblems': 'false', |
| 20 }, |
| 21 }, |
| 22 }, |
| 23 }], |
| 24 [ 'OS=="mac"', { |
| 25 'target_defaults': { |
| 26 'xcode_settings': { |
| 27 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', |
| 28 'WARNING_CFLAGS!': ['-Wall'], |
| 29 }, |
| 30 }, |
| 31 }], |
| 32 ], |
| 33 } |
OLD | NEW |