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

Side by Side Diff: net/net.gyp

Issue 173528: Use SSPI for NTLM authentication on Windows.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin Created 11 years, 3 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
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 'http/http_auth_cache.cc', 216 'http/http_auth_cache.cc',
217 'http/http_auth_cache.h', 217 'http/http_auth_cache.h',
218 'http/http_auth_handler.h', 218 'http/http_auth_handler.h',
219 'http/http_auth_handler.cc', 219 'http/http_auth_handler.cc',
220 'http/http_auth_handler_basic.cc', 220 'http/http_auth_handler_basic.cc',
221 'http/http_auth_handler_basic.h', 221 'http/http_auth_handler_basic.h',
222 'http/http_auth_handler_digest.cc', 222 'http/http_auth_handler_digest.cc',
223 'http/http_auth_handler_digest.h', 223 'http/http_auth_handler_digest.h',
224 'http/http_auth_handler_ntlm.cc', 224 'http/http_auth_handler_ntlm.cc',
225 'http/http_auth_handler_ntlm.h', 225 'http/http_auth_handler_ntlm.h',
226 'http/http_auth_handler_ntlm_portable.cc',
227 'http/http_auth_handler_ntlm_win.cc',
226 'http/http_basic_stream.h', 228 'http/http_basic_stream.h',
227 'http/http_byte_range.cc', 229 'http/http_byte_range.cc',
228 'http/http_byte_range.h', 230 'http/http_byte_range.h',
229 'http/http_cache.cc', 231 'http/http_cache.cc',
230 'http/http_cache.h', 232 'http/http_cache.h',
231 'http/http_chunked_decoder.cc', 233 'http/http_chunked_decoder.cc',
232 'http/http_chunked_decoder.h', 234 'http/http_chunked_decoder.h',
233 'http/http_network_layer.cc', 235 'http/http_network_layer.cc',
234 'http/http_network_layer.h', 236 'http/http_network_layer.h',
235 'http/http_network_session.cc', 237 'http/http_network_session.cc',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 [ 'OS == "linux"', { 378 [ 'OS == "linux"', {
377 'dependencies': [ 379 'dependencies': [
378 '../build/linux/system.gyp:gconf', 380 '../build/linux/system.gyp:gconf',
379 '../build/linux/system.gyp:gdk', 381 '../build/linux/system.gyp:gdk',
380 '../build/linux/system.gyp:nss', 382 '../build/linux/system.gyp:nss',
381 ], 383 ],
382 }], 384 }],
383 [ 'OS == "win"', { 385 [ 'OS == "win"', {
384 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ], 386 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ],
385 'sources!': [ 387 'sources!': [
388 'http/http_auth_handler_ntlm_portable.cc',
386 'socket/tcp_client_socket_libevent.cc', 389 'socket/tcp_client_socket_libevent.cc',
387 ], 390 ],
388 'dependencies': [ 391 'dependencies': [
389 'tld_cleanup', 392 'tld_cleanup',
390 ], 393 ],
391 'configurations': { 394 'configurations': {
392 'Debug': { 395 'Debug': {
393 'msvs_precompiled_header': 'build/precompiled_net.h', 396 'msvs_precompiled_header': 'build/precompiled_net.h',
394 'msvs_precompiled_source': 'build/precompiled_net.cc', 397 'msvs_precompiled_source': 'build/precompiled_net.cc',
395 }, 398 },
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 'tools/dump_cache/dump_cache.cc', 740 'tools/dump_cache/dump_cache.cc',
738 'tools/dump_cache/dump_files.cc', 741 'tools/dump_cache/dump_files.cc',
739 'tools/dump_cache/upgrade.cc', 742 'tools/dump_cache/upgrade.cc',
740 'tools/dump_cache/url_to_filename_encoder.h', 743 'tools/dump_cache/url_to_filename_encoder.h',
741 ], 744 ],
742 }, 745 },
743 ], 746 ],
744 }], 747 }],
745 ], 748 ],
746 } 749 }
OLDNEW
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698