| 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_perftests{,.exe} executable. | 6 Configuration for building the net_perftests{,.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.ApplySConscript([ | 13 env.ApplySConscript([ |
| 14 '$BASE_DIR/using_base.scons', | 14 '$BASE_DIR/using_base.scons', |
| 15 '$BZIP2_DIR/using_bzip2.scons', |
| 15 '$CHROME_SRC_DIR/build/using_googleurl.scons', | 16 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| 16 '$GTEST_DIR/../using_gtest.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 '$NET_DIR/using_net.scons', | 20 '$NET_DIR/using_net.scons', |
| 20 ]) | 21 ]) |
| 21 | 22 |
| 22 if env.Bit('posix'): | 23 if env.Bit('posix'): |
| 23 env.SConscript([ | 24 env.SConscript([ |
| 24 '$LIBEVENT_DIR/using_libevent.scons', | 25 '$LIBEVENT_DIR/using_libevent.scons', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 53 dependencies = [ | 54 dependencies = [ |
| 54 '$BASE_DIR/build/base.vcproj', | 55 '$BASE_DIR/build/base.vcproj', |
| 55 '$NET_DIR/build/net.vcproj', | 56 '$NET_DIR/build/net.vcproj', |
| 56 '$MODP_B64_DIR/modp_b64.vcproj', | 57 '$MODP_B64_DIR/modp_b64.vcproj', |
| 57 '$ICU38_DIR/build/icu.vcproj', | 58 '$ICU38_DIR/build/icu.vcproj', |
| 58 '$TESTING_DIR/gtest.vcproj', | 59 '$TESTING_DIR/gtest.vcproj', |
| 59 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 60 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 60 '$SDCH_DIR/sdch.vcproj', | 61 '$SDCH_DIR/sdch.vcproj', |
| 61 ], | 62 ], |
| 62 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}') | 63 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}') |
| OLD | NEW |