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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 == "linux" or OS == "freebsd" or OS == "openbsd"', { 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
8 'conditions': [ 8 'conditions': [
9 ['sysroot!=""', { 9 ['sysroot!=""', {
10 'variables': { 10 'variables': {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'ssl/ssldef.c', 46 'ssl/ssldef.c',
47 'ssl/sslenum.c', 47 'ssl/sslenum.c',
48 'ssl/sslerr.c', 48 'ssl/sslerr.c',
49 'ssl/sslerr.h', 49 'ssl/sslerr.h',
50 'ssl/sslgathr.c', 50 'ssl/sslgathr.c',
51 'ssl/sslimpl.h', 51 'ssl/sslimpl.h',
52 'ssl/sslinfo.c', 52 'ssl/sslinfo.c',
53 'ssl/sslmutex.c', 53 'ssl/sslmutex.c',
54 'ssl/sslmutex.h', 54 'ssl/sslmutex.h',
55 'ssl/sslnonce.c', 55 'ssl/sslnonce.c',
56 'ssl/sslplatf.c',
56 'ssl/sslproto.h', 57 'ssl/sslproto.h',
57 'ssl/sslreveal.c', 58 'ssl/sslreveal.c',
58 'ssl/sslsecur.c', 59 'ssl/sslsecur.c',
59 'ssl/sslsnce.c', 60 'ssl/sslsnce.c',
60 'ssl/sslsock.c', 61 'ssl/sslsock.c',
61 'ssl/sslt.h', 62 'ssl/sslt.h',
62 'ssl/ssltrace.c', 63 'ssl/ssltrace.c',
63 'ssl/sslver.c', 64 'ssl/sslver.c',
64 'ssl/unix_err.c', 65 'ssl/unix_err.c',
65 'ssl/unix_err.h', 66 'ssl/unix_err.h',
(...skipping 10 matching lines...) Expand all
76 'defines': [ 77 'defines': [
77 'NSS_ENABLE_ECC', 78 'NSS_ENABLE_ECC',
78 'NSS_ENABLE_ZLIB', 79 'NSS_ENABLE_ZLIB',
79 'USE_UTIL_DIRECTLY', 80 'USE_UTIL_DIRECTLY',
80 ], 81 ],
81 'defines!': [ 82 'defines!': [
82 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. 83 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet.
83 'NO_NSPR_10_SUPPORT', 84 'NO_NSPR_10_SUPPORT',
84 ], 85 ],
85 'conditions': [ 86 'conditions': [
87 [ 'OS=="mac"', {
88 'defines': [
89 'XP_UNIX',
90 'DARWIN',
91 'XP_MACOSX',
92 ],
93 }],
86 [ 'OS == "win"', { 94 [ 'OS == "win"', {
87 'sources!': [ 95 'sources!': [
88 'ssl/unix_err.c', 96 'ssl/unix_err.c',
89 'ssl/unix_err.h', 97 'ssl/unix_err.h',
90 ], 98 ],
91 }, 99 },
92 { # else: OS != "win" 100 { # else: OS != "win"
93 'sources!': [ 101 'sources!': [
94 'ssl/win32err.c', 102 'ssl/win32err.c',
95 'ssl/win32err.h', 103 'ssl/win32err.h',
(...skipping 19 matching lines...) Expand all
115 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)', 123 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)',
116 ], 124 ],
117 'libraries': [ 125 'libraries': [
118 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")', 126 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
119 ], 127 ],
120 }], 128 }],
121 [ 'OS == "mac" or OS == "win"', { 129 [ 'OS == "mac" or OS == "win"', {
122 'sources/': [ 130 'sources/': [
123 ['exclude', 'ssl/bodge/'], 131 ['exclude', 'ssl/bodge/'],
124 ], 132 ],
133 'defines': [
134 'NSS_PLATFORM_CLIENT_AUTH',
135 ],
125 'dependencies': [ 136 'dependencies': [
126 '../../../third_party/zlib/zlib.gyp:zlib', 137 '../../../third_party/zlib/zlib.gyp:zlib',
127 '../../../third_party/nss/nss.gyp:nss', 138 '../../../third_party/nss/nss.gyp:nss',
128 ], 139 ],
129 'direct_dependent_settings': { 140 'direct_dependent_settings': {
130 'include_dirs': [ 141 'include_dirs': [
131 'ssl', 142 'ssl',
132 ], 143 ],
144 'defines': [
145 'NSS_PLATFORM_CLIENT_AUTH',
146 ],
133 }, 147 },
134 }], 148 }],
135 ], 149 ],
136 'configurations': { 150 'configurations': {
137 'Debug_Base': { 151 'Debug_Base': {
138 'defines': [ 152 'defines': [
139 'DEBUG', 153 'DEBUG',
140 ], 154 ],
141 }, 155 },
142 }, 156 },
143 }, 157 },
144 ], 158 ],
145 } 159 }
146 160
147 # Local Variables: 161 # Local Variables:
148 # tab-width:2 162 # tab-width:2
149 # indent-tabs-mode:nil 163 # indent-tabs-mode:nil
150 # End: 164 # End:
151 # vim: set expandtab tabstop=2 shiftwidth=2: 165 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« 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