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

Side by Side Diff: net/net.gyp

Issue 1736009: Preliminary support for GSSAPI (Linux and Mac OS X). (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Bug and style fixes. Created 10 years, 6 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'http/http_alternate_protocols.cc', 320 'http/http_alternate_protocols.cc',
321 'http/http_alternate_protocols.h', 321 'http/http_alternate_protocols.h',
322 'http/http_atom_list.h', 322 'http/http_atom_list.h',
323 'http/http_auth.cc', 323 'http/http_auth.cc',
324 'http/http_auth.h', 324 'http/http_auth.h',
325 'http/http_auth_cache.cc', 325 'http/http_auth_cache.cc',
326 'http/http_auth_cache.h', 326 'http/http_auth_cache.h',
327 'http/http_auth_filter.cc', 327 'http/http_auth_filter.cc',
328 'http/http_auth_filter.h', 328 'http/http_auth_filter.h',
329 'http/http_auth_filter_win.h', 329 'http/http_auth_filter_win.h',
330 'http/http_auth_gssapi_posix.cc',
331 'http/http_auth_gssapi_posix.h',
330 'http/http_auth_handler.cc', 332 'http/http_auth_handler.cc',
331 'http/http_auth_handler.h', 333 'http/http_auth_handler.h',
332 'http/http_auth_handler_basic.cc', 334 'http/http_auth_handler_basic.cc',
333 'http/http_auth_handler_basic.h', 335 'http/http_auth_handler_basic.h',
334 'http/http_auth_handler_digest.cc', 336 'http/http_auth_handler_digest.cc',
335 'http/http_auth_handler_digest.h', 337 'http/http_auth_handler_digest.h',
336 'http/http_auth_handler_factory.cc', 338 'http/http_auth_handler_factory.cc',
337 'http/http_auth_handler_factory.h', 339 'http/http_auth_handler_factory.h',
338 'http/http_auth_handler_negotiate.h', 340 'http/http_auth_handler_negotiate.h',
339 'http/http_auth_handler_negotiate_posix.cc', 341 'http/http_auth_handler_negotiate_posix.cc',
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 'ftp/ftp_directory_listing_parser_mlsd_unittest.cc', 678 'ftp/ftp_directory_listing_parser_mlsd_unittest.cc',
677 'ftp/ftp_directory_listing_parser_netware_unittest.cc', 679 'ftp/ftp_directory_listing_parser_netware_unittest.cc',
678 'ftp/ftp_directory_listing_parser_vms_unittest.cc', 680 'ftp/ftp_directory_listing_parser_vms_unittest.cc',
679 'ftp/ftp_directory_listing_parser_windows_unittest.cc', 681 'ftp/ftp_directory_listing_parser_windows_unittest.cc',
680 'ftp/ftp_network_transaction_unittest.cc', 682 'ftp/ftp_network_transaction_unittest.cc',
681 'ftp/ftp_util_unittest.cc', 683 'ftp/ftp_util_unittest.cc',
682 'http/des_unittest.cc', 684 'http/des_unittest.cc',
683 'http/http_alternate_protocols_unittest.cc', 685 'http/http_alternate_protocols_unittest.cc',
684 'http/http_auth_cache_unittest.cc', 686 'http/http_auth_cache_unittest.cc',
685 'http/http_auth_filter_unittest.cc', 687 'http/http_auth_filter_unittest.cc',
688 'http/http_auth_gssapi_posix_unittest.cc',
686 'http/http_auth_handler_basic_unittest.cc', 689 'http/http_auth_handler_basic_unittest.cc',
687 'http/http_auth_handler_digest_unittest.cc', 690 'http/http_auth_handler_digest_unittest.cc',
688 'http/http_auth_handler_factory_unittest.cc', 691 'http/http_auth_handler_factory_unittest.cc',
689 'http/http_auth_handler_negotiate_unittest.cc', 692 'http/http_auth_handler_negotiate_unittest.cc',
690 'http/http_auth_sspi_win_unittest.cc', 693 'http/http_auth_sspi_win_unittest.cc',
691 'http/http_auth_unittest.cc', 694 'http/http_auth_unittest.cc',
692 'http/http_byte_range_unittest.cc', 695 'http/http_byte_range_unittest.cc',
693 'http/http_cache_unittest.cc', 696 'http/http_cache_unittest.cc',
694 'http/http_chunked_decoder_unittest.cc', 697 'http/http_chunked_decoder_unittest.cc',
695 'http/http_network_layer_unittest.cc', 698 'http/http_network_layer_unittest.cc',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 ['OS == "linux"', { 759 ['OS == "linux"', {
757 'conditions': [ 760 'conditions': [
758 ['linux_use_tcmalloc==1', { 761 ['linux_use_tcmalloc==1', {
759 'dependencies': [ 762 'dependencies': [
760 '../base/allocator/allocator.gyp:allocator', 763 '../base/allocator/allocator.gyp:allocator',
761 ], 764 ],
762 }], 765 }],
763 ], 766 ],
764 }], 767 }],
765 [ 'OS == "win"', { 768 [ 'OS == "win"', {
769 'sources!': [
770 'http/http_auth_gssapi_posix_unittest.cc',
771 ],
766 # This is needed to trigger the dll copy step on windows. 772 # This is needed to trigger the dll copy step on windows.
767 # TODO(mark): Specifying this here shouldn't be necessary. 773 # TODO(mark): Specifying this here shouldn't be necessary.
768 'dependencies': [ 774 'dependencies': [
769 '../third_party/icu/icu.gyp:icudata', 775 '../third_party/icu/icu.gyp:icudata',
770 ], 776 ],
771 }, 777 },
772 ], 778 ],
773 ], 779 ],
774 }, 780 },
775 { 781 {
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 ], 1050 ],
1045 }], 1051 }],
1046 ], 1052 ],
1047 } 1053 }
1048 1054
1049 # Local Variables: 1055 # Local Variables:
1050 # tab-width:2 1056 # tab-width:2
1051 # indent-tabs-mode:nil 1057 # indent-tabs-mode:nil
1052 # End: 1058 # End:
1053 # vim: set expandtab tabstop=2 shiftwidth=2: 1059 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« net/http/http_auth_gssapi_posix.cc ('K') | « net/http/http_auth_gssapi_posix_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698