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

Side by Side Diff: net/net_unittests.scons

Issue 10769: Move dmg_fp in scons build to compile from (Closed)
Patch Set: linux too Created 12 years, 1 month 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 | « net/net_perftests.scons ('k') | net/stress_cache.scons » ('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 the net_unittests{,.exe} executable. 6 Configuration for building the net_unittests{,.exe} executable.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
11 env = env.Clone() 11 env = env.Clone()
12 12
13 env.SConscript([ 13 env.SConscript([
14 '$BASE_DIR/using_base.scons', 14 '$BASE_DIR/using_base.scons',
15 '$BZIP2_DIR/using_bzip2.scons', 15 '$BZIP2_DIR/using_bzip2.scons',
16 '$CHROME_SRC_DIR/build/using_googleurl.scons', 16 '$CHROME_SRC_DIR/build/using_googleurl.scons',
17 '$DMG_FP_DIR/using_dmg_fp.scons',
18 '$GTEST_DIR/../using_gtest.scons', 17 '$GTEST_DIR/../using_gtest.scons',
19 '$ICU38_DIR/using_icu38.scons', 18 '$ICU38_DIR/using_icu38.scons',
20 '$MODP_B64_DIR/using_modp_b64.scons', 19 '$MODP_B64_DIR/using_modp_b64.scons',
21 '$NET_DIR/using_net.scons', 20 '$NET_DIR/using_net.scons',
22 '$SDCH_DIR/using_sdch.scons', 21 '$SDCH_DIR/using_sdch.scons',
23 '$ZLIB_DIR/using_zlib.scons', 22 '$ZLIB_DIR/using_zlib.scons',
24 ], {'env':env}) 23 ], {'env':env})
25 24
26 if env['PLATFORM'] in ('posix', 'darwin'): 25 if env['PLATFORM'] in ('posix', 'darwin'):
27 env.SConscript([ 26 env.SConscript([
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 input_files.extend([ 117 input_files.extend([
119 '../base/platform_test_mac$OBJSUFFIX', 118 '../base/platform_test_mac$OBJSUFFIX',
120 ]) 119 ])
121 120
122 if env['PLATFORM'] == 'posix': 121 if env['PLATFORM'] == 'posix':
123 input_files.extend([ 122 input_files.extend([
124 'url_request/url_request_unittest.cc', 123 'url_request/url_request_unittest.cc',
125 ]) 124 ])
126 125
127 env.ChromeTestProgram('net_unittests', input_files) 126 env.ChromeTestProgram('net_unittests', input_files)
OLDNEW
« no previous file with comments | « net/net_perftests.scons ('k') | net/stress_cache.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698