| 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() | 11 env = env.Clone() |
| 12 | 12 |
| 13 env.ApplySConscript([ | 13 env.ApplySConscript([ |
| 14 '$BZIP2_DIR/using_bzip2.scons', |
| 15 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| 14 '$GRIT_DIR/build/using_generated_resources.scons', | 16 '$GRIT_DIR/build/using_generated_resources.scons', |
| 15 '$ICU38_DIR/using_icu38.scons', | 17 '$ICU38_DIR/using_icu38.scons', |
| 18 '$MODP_B64_DIR/using_modp_b64.scons', |
| 16 '$SDCH_DIR/using_sdch.scons', | 19 '$SDCH_DIR/using_sdch.scons', |
| 17 '$ZLIB_DIR/using_zlib.scons', | 20 '$ZLIB_DIR/using_zlib.scons', |
| 18 ]) | 21 ]) |
| 19 | 22 |
| 20 input_files = ChromeFileList([ | 23 input_files = ChromeFileList([ |
| 21 MSVSFilter('base', [ | 24 MSVSFilter('base', [ |
| 22 'base/address_list.cc', | 25 'base/address_list.cc', |
| 23 'base/address_list.h', | 26 'base/address_list.h', |
| 24 'base/auth.h', | 27 'base/auth.h', |
| 25 'base/base64.cc', | 28 'base/base64.cc', |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 UsePrecompiledHeader='1'), | 415 UsePrecompiledHeader='1'), |
| 413 ]) | 416 ]) |
| 414 | 417 |
| 415 # TODO(sgk): remove when we can derive this information | 418 # TODO(sgk): remove when we can derive this information |
| 416 p.AddFileConfig('build/precompiled_net.cc', | 419 p.AddFileConfig('build/precompiled_net.cc', |
| 417 'Release|Win32', | 420 'Release|Win32', |
| 418 ExcludedFromBuild='true', | 421 ExcludedFromBuild='true', |
| 419 tools=[ | 422 tools=[ |
| 420 'VCCLCompilerTool', | 423 'VCCLCompilerTool', |
| 421 ]) | 424 ]) |
| OLD | NEW |