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