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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'ssl/win32err.h', | 70 'ssl/win32err.h', |
71 ], | 71 ], |
72 'sources!': [ | 72 'sources!': [ |
73 'ssl/os2_err.c', | 73 'ssl/os2_err.c', |
74 'ssl/os2_err.h', | 74 'ssl/os2_err.h', |
75 ], | 75 ], |
76 'defines': [ | 76 'defines': [ |
77 'NO_PKCS11_BYPASS', | 77 'NO_PKCS11_BYPASS', |
78 'NSS_ENABLE_ECC', | 78 'NSS_ENABLE_ECC', |
79 'USE_UTIL_DIRECTLY', | 79 'USE_UTIL_DIRECTLY', |
| 80 "_GNU_SOURCE", |
80 ], | 81 ], |
81 'msvs_disabled_warnings': [4018, 4244, 4267], | 82 'msvs_disabled_warnings': [4018, 4244, 4267], |
82 'variables': { | 83 'variables': { |
83 'clang_warning_flags_unset': [ | 84 'clang_warning_flags_unset': [ |
84 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo") | 85 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo") |
85 '-Wstring-conversion', | 86 '-Wstring-conversion', |
86 ], | 87 ], |
87 }, | 88 }, |
88 'conditions': [ | 89 'conditions': [ |
89 ['component == "shared_library"', { | 90 ['component == "shared_library"', { |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'configurations': { | 193 'configurations': { |
193 'Debug_Base': { | 194 'Debug_Base': { |
194 'defines': [ | 195 'defines': [ |
195 'DEBUG', | 196 'DEBUG', |
196 ], | 197 ], |
197 }, | 198 }, |
198 }, | 199 }, |
199 }, | 200 }, |
200 ], | 201 ], |
201 } | 202 } |
OLD | NEW |