| 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 stress_cache{,.exe} executable. | 6 Configuration for building the stress_cache{,.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', |
| 16 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| 15 '$GTEST_DIR/../using_gtest.scons', | 17 '$GTEST_DIR/../using_gtest.scons', |
| 16 '$ICU38_DIR/using_icu38.scons', | 18 '$ICU38_DIR/using_icu38.scons', |
| 19 '$MODP_B64_DIR/using_modp_b64.scons', |
| 17 '$NET_DIR/using_net.scons', | 20 '$NET_DIR/using_net.scons', |
| 18 ]) | 21 ]) |
| 19 | 22 |
| 20 if env.Bit('posix'): | 23 if env.Bit('posix'): |
| 21 env.ApplySConscript(['$THIRD_PARTY_DIR/libevent/using_libevent.scons']) | 24 env.ApplySConscript(['$THIRD_PARTY_DIR/libevent/using_libevent.scons']) |
| 22 | 25 |
| 23 env.Prepend( | 26 env.Prepend( |
| 24 CPPPATH = [ | 27 CPPPATH = [ |
| 25 '$CHROME_SRC_DIR', | 28 '$CHROME_SRC_DIR', |
| 26 ], | 29 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 42 env.ChromeTestProgram('stress_cache', input_files) | 45 env.ChromeTestProgram('stress_cache', input_files) |
| 43 | 46 |
| 44 env.ChromeMSVSProject('$NET_DIR/build/stress_cache.vcproj', | 47 env.ChromeMSVSProject('$NET_DIR/build/stress_cache.vcproj', |
| 45 dependencies = [ | 48 dependencies = [ |
| 46 '$BASE_DIR/build/base.vcproj', | 49 '$BASE_DIR/build/base.vcproj', |
| 47 '$NET_DIR/build/net.vcproj', | 50 '$NET_DIR/build/net.vcproj', |
| 48 '$ICU38_DIR/build/icu.vcproj', | 51 '$ICU38_DIR/build/icu.vcproj', |
| 49 '$TESTING_DIR/gtest.vcproj', | 52 '$TESTING_DIR/gtest.vcproj', |
| 50 ], | 53 ], |
| 51 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}') | 54 guid='{B491C3A1-DE5F-4843-A1BB-AB8C4337187B}') |
| OLD | NEW |