Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Unified Diff: net/net.gyp

Issue 1810153002: Adding iOS OpenSSL Implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplifying logic for first iteration. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/net.gyp
diff --git a/net/net.gyp b/net/net.gyp
index 661a019eeafcd57e6695d840dde1dbdd311e9f12..e186b2019933daba7856efde7ba5bc298120e2ea 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -233,6 +233,9 @@
],
}],
[ 'use_nss_verifier == 0 and OS == "ios"', {
+ 'sources': [
+ 'cert/test_root_certs_mac.cc',
+ ],
# Only include these files on iOS when using NSS for cert
# verification.
'sources!': [
@@ -240,6 +243,13 @@
'cert/x509_util_ios.h',
],
}],
+ [ 'use_nss_verifier == 1 and OS == "ios"', {
+ 'sources!': [
+ 'cert/cert_verify_proc_openssl_ios.cc',
+ 'cert/cert_verify_proc_openssl_ios.h',
+ 'cert/x509_certificate_openssl_ios.cc',
+ ],
+ }],
[ 'use_openssl==1', {
'sources!': [
'quic/test_tools/crypto_test_utils_nss.cc',
@@ -364,6 +374,7 @@
'data/verify_certificate_chain_unittest/',
'data/verify_name_match_unittest/names/',
'data/verify_signed_data_unittest/',
+ 'third_party/nist-pkits/',
],
'test_data_prefix': 'net',
},

Powered by Google App Engine
This is Rietveld 408576698