| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'libssl', | 8 'target_name': 'libssl', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl | 10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ], | 55 ], |
| 56 'sources!': [ | 56 'sources!': [ |
| 57 'ssl/os2_err.c', | 57 'ssl/os2_err.c', |
| 58 'ssl/os2_err.h', | 58 'ssl/os2_err.h', |
| 59 ], | 59 ], |
| 60 'defines': [ | 60 'defines': [ |
| 61 'NO_PKCS11_BYPASS', | 61 'NO_PKCS11_BYPASS', |
| 62 'NSS_ENABLE_ECC', | 62 'NSS_ENABLE_ECC', |
| 63 'USE_UTIL_DIRECTLY', | 63 'USE_UTIL_DIRECTLY', |
| 64 ], | 64 ], |
| 65 'msvs_disabled_warnings': [4018, 4244, 4267], | 65 'msvs_disabled_warnings': [4244, 4267], |
| 66 'variables': { | 66 'variables': { |
| 67 'clang_warning_flags_unset': [ | 67 'clang_warning_flags_unset': [ |
| 68 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo") | 68 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo") |
| 69 '-Wstring-conversion', | 69 '-Wstring-conversion', |
| 70 ], | 70 ], |
| 71 }, | 71 }, |
| 72 'conditions': [ | 72 'conditions': [ |
| 73 ['component == "shared_library"', { | 73 ['component == "shared_library"', { |
| 74 'conditions': [ | 74 'conditions': [ |
| 75 ['OS == "mac" or OS == "ios"', { | 75 ['OS == "mac" or OS == "ios"', { |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 'configurations': { | 176 'configurations': { |
| 177 'Debug_Base': { | 177 'Debug_Base': { |
| 178 'defines': [ | 178 'defines': [ |
| 179 'DEBUG', | 179 'DEBUG', |
| 180 ], | 180 ], |
| 181 }, | 181 }, |
| 182 }, | 182 }, |
| 183 }, | 183 }, |
| 184 ], | 184 ], |
| 185 } | 185 } |
| OLD | NEW |