| 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 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 Loading... |
| 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) |
| OLD | NEW |