| OLD | NEW |
| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'http/http_auth_cache.cc', | 214 'http/http_auth_cache.cc', |
| 215 'http/http_auth_cache.h', | 215 'http/http_auth_cache.h', |
| 216 'http/http_auth_handler.h', | 216 'http/http_auth_handler.h', |
| 217 'http/http_auth_handler.cc', | 217 'http/http_auth_handler.cc', |
| 218 'http/http_auth_handler_basic.cc', | 218 'http/http_auth_handler_basic.cc', |
| 219 'http/http_auth_handler_basic.h', | 219 'http/http_auth_handler_basic.h', |
| 220 'http/http_auth_handler_digest.cc', | 220 'http/http_auth_handler_digest.cc', |
| 221 'http/http_auth_handler_digest.h', | 221 'http/http_auth_handler_digest.h', |
| 222 'http/http_auth_handler_ntlm.cc', | 222 'http/http_auth_handler_ntlm.cc', |
| 223 'http/http_auth_handler_ntlm.h', | 223 'http/http_auth_handler_ntlm.h', |
| 224 'http/http_auth_handler_ntlm_portable.cc', |
| 225 'http/http_auth_handler_ntlm_win.cc', |
| 224 'http/http_basic_stream.h', | 226 'http/http_basic_stream.h', |
| 225 'http/http_byte_range.cc', | 227 'http/http_byte_range.cc', |
| 226 'http/http_byte_range.h', | 228 'http/http_byte_range.h', |
| 227 'http/http_cache.cc', | 229 'http/http_cache.cc', |
| 228 'http/http_cache.h', | 230 'http/http_cache.h', |
| 229 'http/http_chunked_decoder.cc', | 231 'http/http_chunked_decoder.cc', |
| 230 'http/http_chunked_decoder.h', | 232 'http/http_chunked_decoder.h', |
| 231 'http/http_network_layer.cc', | 233 'http/http_network_layer.cc', |
| 232 'http/http_network_layer.h', | 234 'http/http_network_layer.h', |
| 233 'http/http_network_session.cc', | 235 'http/http_network_session.cc', |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 [ 'OS == "linux"', { | 374 [ 'OS == "linux"', { |
| 373 'dependencies': [ | 375 'dependencies': [ |
| 374 '../build/linux/system.gyp:gconf', | 376 '../build/linux/system.gyp:gconf', |
| 375 '../build/linux/system.gyp:gdk', | 377 '../build/linux/system.gyp:gdk', |
| 376 '../build/linux/system.gyp:nss', | 378 '../build/linux/system.gyp:nss', |
| 377 ], | 379 ], |
| 378 }], | 380 }], |
| 379 [ 'OS == "win"', { | 381 [ 'OS == "win"', { |
| 380 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ], | 382 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ], |
| 381 'sources!': [ | 383 'sources!': [ |
| 384 'http/http_auth_handler_ntlm_portable.cc', |
| 382 'socket/tcp_client_socket_libevent.cc', | 385 'socket/tcp_client_socket_libevent.cc', |
| 383 ], | 386 ], |
| 384 'dependencies': [ | 387 'dependencies': [ |
| 385 'tld_cleanup', | 388 'tld_cleanup', |
| 386 ], | 389 ], |
| 387 }, | 390 }, |
| 388 { # else: OS != "win" | 391 { # else: OS != "win" |
| 389 'sources!': [ | 392 'sources!': [ |
| 390 'base/wininet_util.cc', | 393 'base/wininet_util.cc', |
| 391 'base/winsock_init.cc', | 394 'base/winsock_init.cc', |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 'tools/dump_cache/dump_cache.cc', | 730 'tools/dump_cache/dump_cache.cc', |
| 728 'tools/dump_cache/dump_files.cc', | 731 'tools/dump_cache/dump_files.cc', |
| 729 'tools/dump_cache/upgrade.cc', | 732 'tools/dump_cache/upgrade.cc', |
| 730 'tools/dump_cache/url_to_filename_encoder.h', | 733 'tools/dump_cache/url_to_filename_encoder.h', |
| 731 ], | 734 ], |
| 732 }, | 735 }, |
| 733 ], | 736 ], |
| 734 }], | 737 }], |
| 735 ], | 738 ], |
| 736 } | 739 } |
| OLD | NEW |