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

Unified Diff: net/third_party/nss/ssl.gyp

Issue 2828002: Support for using OS-native certificates for SSL client auth.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Add a short-circuit when the CSP reports the container is not removable Created 10 years, 1 month 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
« no previous file with comments | « net/socket/ssl_client_socket_nss_factory.cc ('k') | net/third_party/nss/ssl/ssl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/nss/ssl.gyp
diff --git a/net/third_party/nss/ssl.gyp b/net/third_party/nss/ssl.gyp
index a804e926d444727a73460675a01acaf018dd1bd5..7a0d21ed324fc8e69a0c441b7977d8aa20e613ab 100644
--- a/net/third_party/nss/ssl.gyp
+++ b/net/third_party/nss/ssl.gyp
@@ -53,6 +53,7 @@
'ssl/sslmutex.c',
'ssl/sslmutex.h',
'ssl/sslnonce.c',
+ 'ssl/sslplatf.c',
'ssl/sslproto.h',
'ssl/sslreveal.c',
'ssl/sslsecur.c',
@@ -83,6 +84,13 @@
'NO_NSPR_10_SUPPORT',
],
'conditions': [
+ [ 'OS=="mac"', {
+ 'defines': [
+ 'XP_UNIX',
+ 'DARWIN',
+ 'XP_MACOSX',
+ ],
+ }],
[ 'OS == "win"', {
'sources!': [
'ssl/unix_err.c',
@@ -122,6 +130,9 @@
'sources/': [
['exclude', 'ssl/bodge/'],
],
+ 'defines': [
+ 'NSS_PLATFORM_CLIENT_AUTH',
+ ],
'dependencies': [
'../../../third_party/zlib/zlib.gyp:zlib',
'../../../third_party/nss/nss.gyp:nss',
@@ -130,6 +141,9 @@
'include_dirs': [
'ssl',
],
+ 'defines': [
+ 'NSS_PLATFORM_CLIENT_AUTH',
+ ],
},
}],
],
« no previous file with comments | « net/socket/ssl_client_socket_nss_factory.cc ('k') | net/third_party/nss/ssl/ssl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698