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

Side by Side Diff: net/net.gyp

Issue 6276002: Abstracts SHA256 context for NSS / OpenSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implements SHA256Context abstracting NSS / OpenSSL. Created 9 years, 11 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 'socket/ssl_client_socket_openssl.h', 622 'socket/ssl_client_socket_openssl.h',
623 'socket/ssl_client_socket_pool.cc', 623 'socket/ssl_client_socket_pool.cc',
624 'socket/ssl_client_socket_pool.h', 624 'socket/ssl_client_socket_pool.h',
625 'socket/ssl_client_socket_win.cc', 625 'socket/ssl_client_socket_win.cc',
626 'socket/ssl_client_socket_win.h', 626 'socket/ssl_client_socket_win.h',
627 'socket/ssl_error_params.cc', 627 'socket/ssl_error_params.cc',
628 'socket/ssl_error_params.h', 628 'socket/ssl_error_params.h',
629 'socket/ssl_server_socket.h', 629 'socket/ssl_server_socket.h',
630 'socket/ssl_server_socket_nss.cc', 630 'socket/ssl_server_socket_nss.cc',
631 'socket/ssl_server_socket_nss.h', 631 'socket/ssl_server_socket_nss.h',
632 'socket/ssl_server_socket_openssl.cc',
632 'socket/ssl_host_info.cc', 633 'socket/ssl_host_info.cc',
633 'socket/ssl_host_info.h', 634 'socket/ssl_host_info.h',
634 'socket/tcp_client_socket.cc', 635 'socket/tcp_client_socket.cc',
635 'socket/tcp_client_socket.h', 636 'socket/tcp_client_socket.h',
636 'socket/tcp_client_socket_libevent.cc', 637 'socket/tcp_client_socket_libevent.cc',
637 'socket/tcp_client_socket_libevent.h', 638 'socket/tcp_client_socket_libevent.h',
638 'socket/tcp_client_socket_pool.cc', 639 'socket/tcp_client_socket_pool.cc',
639 'socket/tcp_client_socket_pool.h', 640 'socket/tcp_client_socket_pool.h',
640 'socket/tcp_client_socket_win.cc', 641 'socket/tcp_client_socket_win.cc',
641 'socket/tcp_client_socket_win.h', 642 'socket/tcp_client_socket_win.h',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 'socket/ssl_client_socket_nss_factory.cc', 764 'socket/ssl_client_socket_nss_factory.cc',
764 'socket/ssl_client_socket_nss_factory.h', 765 'socket/ssl_client_socket_nss_factory.h',
765 'socket/ssl_server_socket_nss.cc', 766 'socket/ssl_server_socket_nss.cc',
766 'socket/ssl_server_socket_nss.h', 767 'socket/ssl_server_socket_nss.h',
767 ], 768 ],
768 }, 769 },
769 { # else !use_openssl: remove the unneeded files 770 { # else !use_openssl: remove the unneeded files
770 'sources!': [ 771 'sources!': [
771 'socket/ssl_client_socket_openssl.cc', 772 'socket/ssl_client_socket_openssl.cc',
772 'socket/ssl_client_socket_openssl.h', 773 'socket/ssl_client_socket_openssl.h',
774 'socket/ssl_server_socket_openssl.cc',
773 ], 775 ],
774 }, 776 },
775 ], 777 ],
776 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 778 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
777 'dependencies': [ 779 'dependencies': [
778 '../build/linux/system.gyp:gconf', 780 '../build/linux/system.gyp:gconf',
779 '../build/linux/system.gyp:gdk', 781 '../build/linux/system.gyp:gdk',
780 ], 782 ],
781 'conditions': [ 783 'conditions': [
782 ['use_openssl==1', { 784 ['use_openssl==1', {
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 ], 1441 ],
1440 }], 1442 }],
1441 ], 1443 ],
1442 } 1444 }
1443 1445
1444 # Local Variables: 1446 # Local Variables:
1445 # tab-width:2 1447 # tab-width:2
1446 # indent-tabs-mode:nil 1448 # indent-tabs-mode:nil
1447 # End: 1449 # End:
1448 # vim: set expandtab tabstop=2 shiftwidth=2: 1450 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698