| 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 'conditions': [ | 6 'conditions': [ |
| 7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { | 7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['sysroot!=""', { | 9 ['sysroot!=""', { |
| 10 'variables': { | 10 'variables': { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'dependencies': [ | 86 'dependencies': [ |
| 87 '../../../third_party/zlib/zlib.gyp:zlib', | 87 '../../../third_party/zlib/zlib.gyp:zlib', |
| 88 ], | 88 ], |
| 89 'msvs_disabled_warnings': [4018, 4244], | 89 'msvs_disabled_warnings': [4018, 4244, 4267], |
| 90 'conditions': [ | 90 'conditions': [ |
| 91 [ 'clang == 1', { | 91 [ 'clang == 1', { |
| 92 'cflags': [ | 92 'cflags': [ |
| 93 # See http://crbug.com/138571#c8. In short, sslsecur.c picks up the | 93 # See http://crbug.com/138571#c8. In short, sslsecur.c picks up the |
| 94 # system's cert.h because cert.h isn't in chromium's repo. | 94 # system's cert.h because cert.h isn't in chromium's repo. |
| 95 '-Wno-incompatible-pointer-types', | 95 '-Wno-incompatible-pointer-types', |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 [ 'OS == "mac" or OS == "ios"', { | 98 [ 'OS == "mac" or OS == "ios"', { |
| 99 'defines': [ | 99 'defines': [ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 'configurations': { | 171 'configurations': { |
| 172 'Debug_Base': { | 172 'Debug_Base': { |
| 173 'defines': [ | 173 'defines': [ |
| 174 'DEBUG', | 174 'DEBUG', |
| 175 ], | 175 ], |
| 176 }, | 176 }, |
| 177 }, | 177 }, |
| 178 }, | 178 }, |
| 179 ], | 179 ], |
| 180 } | 180 } |
| OLD | NEW |