OLD | NEW |
---|---|
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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
616 'socket/ssl_client_socket_nss.cc', | 616 'socket/ssl_client_socket_nss.cc', |
617 'socket/ssl_client_socket_nss.h', | 617 'socket/ssl_client_socket_nss.h', |
618 'socket/ssl_client_socket_nss_factory.cc', | 618 'socket/ssl_client_socket_nss_factory.cc', |
619 'socket/ssl_client_socket_nss_factory.h', | 619 'socket/ssl_client_socket_nss_factory.h', |
620 'socket/ssl_client_socket_openssl.cc', | 620 'socket/ssl_client_socket_openssl.cc', |
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_client_socket_win_factory.cc', | |
627 'socket/ssl_client_socket_win_factory.h', | |
626 'socket/ssl_error_params.cc', | 628 'socket/ssl_error_params.cc', |
627 'socket/ssl_error_params.h', | 629 'socket/ssl_error_params.h', |
628 'socket/ssl_server_socket.h', | 630 'socket/ssl_server_socket.h', |
629 'socket/ssl_server_socket_nss.cc', | 631 'socket/ssl_server_socket_nss.cc', |
630 'socket/ssl_server_socket_nss.h', | 632 'socket/ssl_server_socket_nss.h', |
631 'socket/ssl_server_socket_openssl.cc', | 633 'socket/ssl_server_socket_openssl.cc', |
632 'socket/ssl_host_info.cc', | 634 'socket/ssl_host_info.cc', |
633 'socket/ssl_host_info.h', | 635 'socket/ssl_host_info.h', |
634 'socket/tcp_client_socket.cc', | 636 'socket/tcp_client_socket.cc', |
635 'socket/tcp_client_socket.h', | 637 'socket/tcp_client_socket.h', |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
809 'third_party/nss/ssl.gyp:ssl', | 811 'third_party/nss/ssl.gyp:ssl', |
810 'tld_cleanup', | 812 'tld_cleanup', |
811 ], | 813 ], |
812 }, | 814 }, |
813 { # else: OS != "win" | 815 { # else: OS != "win" |
814 'dependencies': [ | 816 'dependencies': [ |
815 '../third_party/libevent/libevent.gyp:libevent', | 817 '../third_party/libevent/libevent.gyp:libevent', |
816 ], | 818 ], |
817 'sources!': [ | 819 'sources!': [ |
818 'proxy/proxy_resolver_winhttp.cc', | 820 'proxy/proxy_resolver_winhttp.cc', |
821 'socket/ssl_client_socket_win_factory.cc', | |
822 'socket/ssl_client_socket_win_factory.h', | |
wtc
2011/02/23 00:38:38
Nit: list the _win_factory.* files after the
_nss_
| |
819 'socket/ssl_client_socket_nss_factory.cc', | 823 'socket/ssl_client_socket_nss_factory.cc', |
820 'socket/ssl_client_socket_nss_factory.h', | 824 'socket/ssl_client_socket_nss_factory.h', |
821 ], | 825 ], |
822 }, | 826 }, |
823 ], | 827 ], |
824 [ 'OS == "mac"', { | 828 [ 'OS == "mac"', { |
825 'dependencies': [ | 829 'dependencies': [ |
826 '../third_party/nss/nss.gyp:nss', | 830 '../third_party/nss/nss.gyp:nss', |
827 'third_party/nss/ssl.gyp:ssl', | 831 'third_party/nss/ssl.gyp:ssl', |
828 ], | 832 ], |
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1460 ], | 1464 ], |
1461 }], | 1465 }], |
1462 ], | 1466 ], |
1463 } | 1467 } |
1464 | 1468 |
1465 # Local Variables: | 1469 # Local Variables: |
1466 # tab-width:2 | 1470 # tab-width:2 |
1467 # indent-tabs-mode:nil | 1471 # indent-tabs-mode:nil |
1468 # End: | 1472 # End: |
1469 # vim: set expandtab tabstop=2 shiftwidth=2: | 1473 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |