Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: net/net_lib.scons

Issue 27054: Multiple fixes for broken Linux SHARED=1 build. (Closed)
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.scons ('k') | webkit/build/WebCore/SConscript » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ])
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.scons ('k') | webkit/build/WebCore/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698