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

Side by Side Diff: openssl.gyp

Issue 11467016: Small patch to fix the "linux_redux" Chromium build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/openssl/
Patch Set: Created 8 years 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 | « config/piii/openssl/opensslconf.h ('k') | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'openssl', 8 'target_name': 'openssl',
9 'type': '<(library)', 9 'type': '<(library)',
10 'defines': [ 10 'defines': [
11 'L_ENDIAN', 11 'L_ENDIAN',
12 'OPENSSL_THREADS', 12 'OPENSSL_THREADS',
13 'PURIFY', 13 'PURIFY',
14 'TERMIO', 14 'TERMIO',
15 '_REENTRANT', 15 '_REENTRANT',
16 # We do not use TLS over UDP on Chromium so far. 16 # We do not use TLS over UDP on Chromium so far.
17 'OPENSSL_NO_DTLS1', 17 'OPENSSL_NO_DTLS1',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'openssl/ssl/bio_ssl.c', 20 'openssl/ssl/bio_ssl.c',
21 'openssl/ssl/d1_both.c', 21 'openssl/ssl/d1_both.c',
22 'openssl/ssl/d1_clnt.c',
22 'openssl/ssl/d1_enc.c', 23 'openssl/ssl/d1_enc.c',
23 'openssl/ssl/d1_lib.c', 24 'openssl/ssl/d1_lib.c',
25 'openssl/ssl/d1_meth.c',
24 'openssl/ssl/d1_pkt.c', 26 'openssl/ssl/d1_pkt.c',
25 'openssl/ssl/d1_srtp.c', 27 'openssl/ssl/d1_srtp.c',
28 'openssl/ssl/d1_srvr.c',
26 'openssl/ssl/kssl.c', 29 'openssl/ssl/kssl.c',
27 'openssl/ssl/s23_clnt.c', 30 'openssl/ssl/s23_clnt.c',
28 'openssl/ssl/s23_lib.c', 31 'openssl/ssl/s23_lib.c',
29 'openssl/ssl/s23_meth.c', 32 'openssl/ssl/s23_meth.c',
30 'openssl/ssl/s23_pkt.c', 33 'openssl/ssl/s23_pkt.c',
31 'openssl/ssl/s23_srvr.c', 34 'openssl/ssl/s23_srvr.c',
32 'openssl/ssl/s2_clnt.c', 35 'openssl/ssl/s2_clnt.c',
33 'openssl/ssl/s2_enc.c', 36 'openssl/ssl/s2_enc.c',
34 'openssl/ssl/s2_lib.c', 37 'openssl/ssl/s2_lib.c',
35 'openssl/ssl/s2_meth.c', 38 'openssl/ssl/s2_meth.c',
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
674 }, 677 },
675 }, 678 },
676 ], 679 ],
677 } 680 }
678 681
679 # Local Variables: 682 # Local Variables:
680 # tab-width:2 683 # tab-width:2
681 # indent-tabs-mode:nil 684 # indent-tabs-mode:nil
682 # End: 685 # End:
683 # vim: set expandtab tabstop=2 shiftwidth=2: 686 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « config/piii/openssl/opensslconf.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698