| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'linux_link_kerberos%': 0, | 8 'linux_link_kerberos%': 0, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['chromeos==1 or embedded==1 or OS=="ios"', { | 10 ['chromeos==1 or embedded==1 or OS=="ios"', { |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 ], | 233 ], |
| 234 }], | 234 }], |
| 235 [ 'use_nss_verifier == 0 and OS == "ios"', { | 235 [ 'use_nss_verifier == 0 and OS == "ios"', { |
| 236 # Only include these files on iOS when using NSS for cert | 236 # Only include these files on iOS when using NSS for cert |
| 237 # verification. | 237 # verification. |
| 238 'sources!': [ | 238 'sources!': [ |
| 239 'cert/x509_util_ios.cc', | 239 'cert/x509_util_ios.cc', |
| 240 'cert/x509_util_ios.h', | 240 'cert/x509_util_ios.h', |
| 241 ], | 241 ], |
| 242 }], | 242 }], |
| 243 [ 'use_nss_verifier == 1 and OS == "ios"', { |
| 244 'sources!': [ |
| 245 'cert/cert_verify_proc_ios.cc', |
| 246 'cert/cert_verify_proc_ios.h', |
| 247 'cert/x509_certificate_openssl_ios.cc', |
| 248 ], |
| 249 }], |
| 243 [ 'use_openssl==1', { | 250 [ 'use_openssl==1', { |
| 244 'sources!': [ | 251 'sources!': [ |
| 245 'quic/test_tools/crypto_test_utils_nss.cc', | 252 'quic/test_tools/crypto_test_utils_nss.cc', |
| 246 ], | 253 ], |
| 247 }, { # else !use_openssl: remove the unneeded files and pull in NSS. | 254 }, { # else !use_openssl: remove the unneeded files and pull in NSS. |
| 248 'sources!': [ | 255 'sources!': [ |
| 249 'quic/test_tools/crypto_test_utils_openssl.cc', | 256 'quic/test_tools/crypto_test_utils_openssl.cc', |
| 250 'ssl/ssl_client_session_cache_openssl_unittest.cc', | 257 'ssl/ssl_client_session_cache_openssl_unittest.cc', |
| 251 ], | 258 ], |
| 252 }, | 259 }, |
| (...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 '../build/isolate.gypi', | 1710 '../build/isolate.gypi', |
| 1704 ], | 1711 ], |
| 1705 'sources': [ | 1712 'sources': [ |
| 1706 'net_unittests.isolate', | 1713 'net_unittests.isolate', |
| 1707 ], | 1714 ], |
| 1708 }, | 1715 }, |
| 1709 ], | 1716 ], |
| 1710 }], | 1717 }], |
| 1711 ], | 1718 ], |
| 1712 } | 1719 } |
| OLD | NEW |