| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 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 __doc__ = """ | 5 __doc__ = """ |
| 6 Configuration for building net.lib / libnet.a. | 6 Configuration for building net.lib / libnet.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 'proxy/proxy_script_fetcher.cc', | 266 'proxy/proxy_script_fetcher.cc', |
| 267 'proxy/proxy_script_fetcher.h', | 267 'proxy/proxy_script_fetcher.h', |
| 268 'proxy/proxy_server.cc', | 268 'proxy/proxy_server.cc', |
| 269 'proxy/proxy_server.h', | 269 'proxy/proxy_server.h', |
| 270 'proxy/proxy_service.cc', | 270 'proxy/proxy_service.cc', |
| 271 'proxy/proxy_service.h', | 271 'proxy/proxy_service.h', |
| 272 ]), | 272 ]), |
| 273 MSVSFilter('ftp', [ | 273 MSVSFilter('ftp', [ |
| 274 'ftp/ftp_auth_cache.cc', | 274 'ftp/ftp_auth_cache.cc', |
| 275 'ftp/ftp_auth_cache.h', | 275 'ftp/ftp_auth_cache.h', |
| 276 'ftp/ftp_directory_parser.cc', |
| 277 'ftp/ftp_directory_parser.h', |
| 276 'ftp/ftp_network_layer.cc', | 278 'ftp/ftp_network_layer.cc', |
| 277 'ftp/ftp_network_layer.h', | 279 'ftp/ftp_network_layer.h', |
| 278 'ftp/ftp_network_session.h', | 280 'ftp/ftp_network_session.h', |
| 279 'ftp/ftp_network_transaction.cc', | 281 'ftp/ftp_network_transaction.cc', |
| 280 'ftp/ftp_network_transaction.h', | 282 'ftp/ftp_network_transaction.h', |
| 281 'ftp/ftp_request_info.h', | 283 'ftp/ftp_request_info.h', |
| 282 'ftp/ftp_response_info.h', | 284 'ftp/ftp_response_info.h', |
| 283 'ftp/ftp_transaction.h', | 285 'ftp/ftp_transaction.h', |
| 284 'ftp/ftp_transaction_factory.h', | 286 'ftp/ftp_transaction_factory.h', |
| 285 ]), | 287 ]), |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 UsePrecompiledHeader='1'), | 438 UsePrecompiledHeader='1'), |
| 437 ]) | 439 ]) |
| 438 | 440 |
| 439 # TODO(sgk): remove when we can derive this information | 441 # TODO(sgk): remove when we can derive this information |
| 440 p.AddFileConfig('build/precompiled_net.cc', | 442 p.AddFileConfig('build/precompiled_net.cc', |
| 441 'Release|Win32', | 443 'Release|Win32', |
| 442 ExcludedFromBuild='true', | 444 ExcludedFromBuild='true', |
| 443 tools=[ | 445 tools=[ |
| 444 'VCCLCompilerTool', | 446 'VCCLCompilerTool', |
| 445 ]) | 447 ]) |
| OLD | NEW |