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

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: Moves to SecureHash (and other comments) 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'socket/ssl_client_socket_openssl.h', 621 'socket/ssl_client_socket_openssl.h',
622 'socket/ssl_client_socket_pool.cc', 622 'socket/ssl_client_socket_pool.cc',
623 'socket/ssl_client_socket_pool.h', 623 'socket/ssl_client_socket_pool.h',
624 'socket/ssl_client_socket_win.cc', 624 'socket/ssl_client_socket_win.cc',
625 'socket/ssl_client_socket_win.h', 625 'socket/ssl_client_socket_win.h',
626 'socket/ssl_error_params.cc', 626 'socket/ssl_error_params.cc',
627 'socket/ssl_error_params.h', 627 'socket/ssl_error_params.h',
628 'socket/ssl_server_socket.h', 628 'socket/ssl_server_socket.h',
629 'socket/ssl_server_socket_nss.cc', 629 'socket/ssl_server_socket_nss.cc',
630 'socket/ssl_server_socket_nss.h', 630 'socket/ssl_server_socket_nss.h',
631 'socket/ssl_server_socket_openssl.cc',
631 'socket/ssl_host_info.cc', 632 'socket/ssl_host_info.cc',
632 'socket/ssl_host_info.h', 633 'socket/ssl_host_info.h',
633 'socket/tcp_client_socket.cc', 634 'socket/tcp_client_socket.cc',
634 'socket/tcp_client_socket.h', 635 'socket/tcp_client_socket.h',
635 'socket/tcp_client_socket_libevent.cc', 636 'socket/tcp_client_socket_libevent.cc',
636 'socket/tcp_client_socket_libevent.h', 637 'socket/tcp_client_socket_libevent.h',
637 'socket/tcp_client_socket_pool.cc', 638 'socket/tcp_client_socket_pool.cc',
638 'socket/tcp_client_socket_pool.h', 639 'socket/tcp_client_socket_pool.h',
639 'socket/tcp_client_socket_win.cc', 640 'socket/tcp_client_socket_win.cc',
640 'socket/tcp_client_socket_win.h', 641 'socket/tcp_client_socket_win.h',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 'socket/ssl_client_socket_nss_factory.cc', 763 'socket/ssl_client_socket_nss_factory.cc',
763 'socket/ssl_client_socket_nss_factory.h', 764 'socket/ssl_client_socket_nss_factory.h',
764 'socket/ssl_server_socket_nss.cc', 765 'socket/ssl_server_socket_nss.cc',
765 'socket/ssl_server_socket_nss.h', 766 'socket/ssl_server_socket_nss.h',
766 ], 767 ],
767 }, 768 },
768 { # else !use_openssl: remove the unneeded files 769 { # else !use_openssl: remove the unneeded files
769 'sources!': [ 770 'sources!': [
770 'socket/ssl_client_socket_openssl.cc', 771 'socket/ssl_client_socket_openssl.cc',
771 'socket/ssl_client_socket_openssl.h', 772 'socket/ssl_client_socket_openssl.h',
773 'socket/ssl_server_socket_openssl.cc',
772 ], 774 ],
773 }, 775 },
774 ], 776 ],
775 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { 777 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', {
776 'dependencies': [ 778 'dependencies': [
777 '../build/linux/system.gyp:gconf', 779 '../build/linux/system.gyp:gconf',
778 '../build/linux/system.gyp:gdk', 780 '../build/linux/system.gyp:gdk',
779 ], 781 ],
780 'conditions': [ 782 'conditions': [
781 ['use_openssl==1', { 783 ['use_openssl==1', {
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1441 ], 1443 ],
1442 }], 1444 }],
1443 ], 1445 ],
1444 } 1446 }
1445 1447
1446 # Local Variables: 1448 # Local Variables:
1447 # tab-width:2 1449 # tab-width:2
1448 # indent-tabs-mode:nil 1450 # indent-tabs-mode:nil
1449 # End: 1451 # End:
1450 # vim: set expandtab tabstop=2 shiftwidth=2: 1452 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698