| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 'http/http_auth_cache.cc', | 208 'http/http_auth_cache.cc', |
| 209 'http/http_auth_cache.h', | 209 'http/http_auth_cache.h', |
| 210 'http/http_auth_handler.h', | 210 'http/http_auth_handler.h', |
| 211 'http/http_auth_handler.cc', | 211 'http/http_auth_handler.cc', |
| 212 'http/http_auth_handler_basic.cc', | 212 'http/http_auth_handler_basic.cc', |
| 213 'http/http_auth_handler_basic.h', | 213 'http/http_auth_handler_basic.h', |
| 214 'http/http_auth_handler_digest.cc', | 214 'http/http_auth_handler_digest.cc', |
| 215 'http/http_auth_handler_digest.h', | 215 'http/http_auth_handler_digest.h', |
| 216 'http/http_auth_handler_ntlm.cc', | 216 'http/http_auth_handler_ntlm.cc', |
| 217 'http/http_auth_handler_ntlm.h', | 217 'http/http_auth_handler_ntlm.h', |
| 218 'http/http_auth_handler_ntlm_portable.cc', |
| 219 'http/http_auth_handler_ntlm_win.cc', |
| 218 'http/http_basic_stream.h', | 220 'http/http_basic_stream.h', |
| 219 'http/http_byte_range.cc', | 221 'http/http_byte_range.cc', |
| 220 'http/http_byte_range.h', | 222 'http/http_byte_range.h', |
| 221 'http/http_cache.cc', | 223 'http/http_cache.cc', |
| 222 'http/http_cache.h', | 224 'http/http_cache.h', |
| 223 'http/http_chunked_decoder.cc', | 225 'http/http_chunked_decoder.cc', |
| 224 'http/http_chunked_decoder.h', | 226 'http/http_chunked_decoder.h', |
| 225 'http/http_network_layer.cc', | 227 'http/http_network_layer.cc', |
| 226 'http/http_network_layer.h', | 228 'http/http_network_layer.h', |
| 227 'http/http_network_session.cc', | 229 'http/http_network_session.cc', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 [ 'OS == "linux"', { | 358 [ 'OS == "linux"', { |
| 357 'dependencies': [ | 359 'dependencies': [ |
| 358 '../build/linux/system.gyp:gconf', | 360 '../build/linux/system.gyp:gconf', |
| 359 '../build/linux/system.gyp:gdk', | 361 '../build/linux/system.gyp:gdk', |
| 360 '../build/linux/system.gyp:nss', | 362 '../build/linux/system.gyp:nss', |
| 361 ], | 363 ], |
| 362 }], | 364 }], |
| 363 [ 'OS == "win"', { | 365 [ 'OS == "win"', { |
| 364 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ], | 366 'sources/': [ ['exclude', '_(mac|linux|posix)\\.cc$'] ], |
| 365 'sources!': [ | 367 'sources!': [ |
| 368 'http/http_auth_handler_ntlm_portable.cc', |
| 366 'socket/tcp_client_socket_libevent.cc', | 369 'socket/tcp_client_socket_libevent.cc', |
| 367 ], | 370 ], |
| 368 'dependencies': [ | 371 'dependencies': [ |
| 369 'tld_cleanup', | 372 'tld_cleanup', |
| 370 ], | 373 ], |
| 371 'configurations': { | 374 'configurations': { |
| 372 'Debug': { | 375 'Debug': { |
| 373 'msvs_precompiled_header': 'build/precompiled_net.h', | 376 'msvs_precompiled_header': 'build/precompiled_net.h', |
| 374 'msvs_precompiled_source': 'build/precompiled_net.cc', | 377 'msvs_precompiled_source': 'build/precompiled_net.cc', |
| 375 }, | 378 }, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 'sources': [ | 709 'sources': [ |
| 707 'tools/dump_cache/dump_cache.cc', | 710 'tools/dump_cache/dump_cache.cc', |
| 708 'tools/dump_cache/dump_files.cc', | 711 'tools/dump_cache/dump_files.cc', |
| 709 'tools/dump_cache/upgrade.cc', | 712 'tools/dump_cache/upgrade.cc', |
| 710 ], | 713 ], |
| 711 }, | 714 }, |
| 712 ], | 715 ], |
| 713 }], | 716 }], |
| 714 ], | 717 ], |
| 715 } | 718 } |
| OLD | NEW |