| 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 |
| 11 env = env.Clone(COMPONENT_STATIC=True) | 11 env = env.Clone(COMPONENT_STATIC=True) |
| 12 | 12 |
| 13 env.ApplySConscript([ | 13 env.ApplySConscript([ |
| 14 '$GRIT_DIR/build/using_generated_resources.scons', | 14 '$GRIT_DIR/build/using_generated_resources.scons', |
| 15 '$ICU38_DIR/using_icu38.scons', | 15 '$ICU38_DIR/using_icu38.scons', |
| 16 '$SDCH_DIR/using_sdch.scons', | 16 '$SDCH_DIR/using_sdch.scons', |
| 17 '$ZLIB_DIR/using_zlib.scons', | 17 '$ZLIB_DIR/using_zlib.scons', |
| 18 ]) | 18 ]) |
| 19 | 19 |
| 20 input_files = ChromeFileList([ | 20 input_files = ChromeFileList([ |
| 21 MSVSFilter('base', [ | 21 MSVSFilter('base', [ |
| 22 'base/address_list.cc', | 22 'base/address_list.cc', |
| 23 'base/address_list.h', | 23 'base/address_list.h', |
| 24 'base/auth.h', | 24 'base/auth.h', |
| 25 'base/base64.cc', | 25 'base/base64.cc', |
| 26 'base/base64.h', | 26 'base/base64.h', |
| 27 'base/bzip2_filter.cc', | 27 'base/bzip2_filter.cc', |
| 28 'base/bzip2_filter.h', | 28 'base/bzip2_filter.h', |
| 29 'base/cert_status_flags.cc', |
| 29 'base/cert_status_flags.h', | 30 'base/cert_status_flags.h', |
| 31 'base/cert_verifier.cc', |
| 32 'base/cert_verifier.h', |
| 33 'base/cert_verify_result.h', |
| 30 'base/client_socket.h', | 34 'base/client_socket.h', |
| 31 'base/client_socket_factory.cc', | 35 'base/client_socket_factory.cc', |
| 32 'base/client_socket_factory.h', | 36 'base/client_socket_factory.h', |
| 33 'base/client_socket_handle.cc', | 37 'base/client_socket_handle.cc', |
| 34 'base/client_socket_handle.h', | 38 'base/client_socket_handle.h', |
| 35 'base/client_socket_pool.cc', | 39 'base/client_socket_pool.cc', |
| 36 'base/client_socket_pool.h', | 40 'base/client_socket_pool.h', |
| 37 'base/completion_callback.h', | 41 'base/completion_callback.h', |
| 38 'base/connection_type_histograms.cc', | 42 'base/connection_type_histograms.cc', |
| 39 'base/connection_type_histograms.h', | 43 'base/connection_type_histograms.h', |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 UsePrecompiledHeader='1'), | 414 UsePrecompiledHeader='1'), |
| 411 ]) | 415 ]) |
| 412 | 416 |
| 413 # TODO(sgk): remove when we can derive this information | 417 # TODO(sgk): remove when we can derive this information |
| 414 p.AddFileConfig('build/precompiled_net.cc', | 418 p.AddFileConfig('build/precompiled_net.cc', |
| 415 'Release|Win32', | 419 'Release|Win32', |
| 416 ExcludedFromBuild='true', | 420 ExcludedFromBuild='true', |
| 417 tools=[ | 421 tools=[ |
| 418 'VCCLCompilerTool', | 422 'VCCLCompilerTool', |
| 419 ]) | 423 ]) |
| OLD | NEW |