| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 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 'conditions': [ | 6 'conditions': [ |
| 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['sysroot!=""', { | 9 ['sysroot!=""', { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ], | 76 ], |
| 77 'defines': [ | 77 'defines': [ |
| 78 'NSS_ENABLE_ECC', | 78 'NSS_ENABLE_ECC', |
| 79 'NSS_ENABLE_ZLIB', | 79 'NSS_ENABLE_ZLIB', |
| 80 'USE_UTIL_DIRECTLY', | 80 'USE_UTIL_DIRECTLY', |
| 81 ], | 81 ], |
| 82 'defines!': [ | 82 'defines!': [ |
| 83 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. | 83 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. |
| 84 'NO_NSPR_10_SUPPORT', | 84 'NO_NSPR_10_SUPPORT', |
| 85 ], | 85 ], |
| 86 'msvs_disabled_warnings': [4018, 4244], |
| 86 'conditions': [ | 87 'conditions': [ |
| 87 [ 'OS=="mac"', { | 88 [ 'OS=="mac"', { |
| 88 'defines': [ | 89 'defines': [ |
| 89 'XP_UNIX', | 90 'XP_UNIX', |
| 90 'DARWIN', | 91 'DARWIN', |
| 91 'XP_MACOSX', | 92 'XP_MACOSX', |
| 92 ], | 93 ], |
| 93 }], | 94 }], |
| 94 [ 'OS == "win"', { | 95 [ 'OS == "win"', { |
| 95 'sources!': [ | 96 'sources!': [ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 }, | 157 }, |
| 157 }, | 158 }, |
| 158 ], | 159 ], |
| 159 } | 160 } |
| 160 | 161 |
| 161 # Local Variables: | 162 # Local Variables: |
| 162 # tab-width:2 | 163 # tab-width:2 |
| 163 # indent-tabs-mode:nil | 164 # indent-tabs-mode:nil |
| 164 # End: | 165 # End: |
| 165 # vim: set expandtab tabstop=2 shiftwidth=2: | 166 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |