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

Side by Side Diff: net/third_party/nss/ssl.gyp

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: use system srp and mpi libs, not local copies Created 9 years, 8 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 unified diff | Download patch | Annotate | Revision Log
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'ssl/bodge', 117 'ssl/bodge',
118 ], 118 ],
119 'cflags': [ 119 'cflags': [
120 '<!@(<(pkg-config) --cflags nss)', 120 '<!@(<(pkg-config) --cflags nss)',
121 ], 121 ],
122 'ldflags': [ 122 'ldflags': [
123 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)', 123 '<!@(<(pkg-config) --libs-only-L --libs-only-other nss)',
124 ], 124 ],
125 'libraries': [ 125 'libraries': [
126 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")', 126 '<!@(<(pkg-config) --libs-only-l nss | sed -e "s/-lssl3//")',
127 '-lnssdbm3', # TODO(sqs): still needed?
wtc 2011/04/20 18:00:37 I believe this change is wrong. libnssdbm3 is dyn
127 ], 128 ],
128 }], 129 }],
129 [ 'OS == "mac" or OS == "win"', { 130 [ 'OS == "mac" or OS == "win"', {
130 'sources/': [ 131 'sources/': [
131 ['exclude', 'ssl/bodge/'], 132 ['exclude', 'ssl/bodge/'],
132 ], 133 ],
133 'defines': [ 134 'defines': [
134 'NSS_PLATFORM_CLIENT_AUTH', 135 'NSS_PLATFORM_CLIENT_AUTH',
135 ], 136 ],
136 'dependencies': [ 137 'dependencies': [
(...skipping 19 matching lines...) Expand all
156 }, 157 },
157 }, 158 },
158 ], 159 ],
159 } 160 }
160 161
161 # Local Variables: 162 # Local Variables:
162 # tab-width:2 163 # tab-width:2
163 # indent-tabs-mode:nil 164 # indent-tabs-mode:nil
164 # End: 165 # End:
165 # vim: set expandtab tabstop=2 shiftwidth=2: 166 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698