Revert "Added std::string to Value via Set/GetString overloading."
[chromium-blink-merge.git] / net / stress_cache.scons
blobe7dfedfd6a827d1e864fc01db1cb6cd067388272
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
3 # found in the LICENSE file.
5 __doc__ = """
6 Configuration for building the stress_cache{,.exe} executable.
7 """
9 Import('env')
11 env = env.Clone()
13 env.ApplySConscript([
14     '$BASE_DIR/using_base.scons',
15     '$GTEST_DIR/../using_gtest.scons',
16     '$ICU38_DIR/using_icu38.scons',
17     '$NET_DIR/using_net.scons',
20 if env['PLATFORM'] in ('darwin', 'posix'):
21   env.ApplySConscript(['$THIRD_PARTY_DIR/libevent/using_libevent.scons'])
23 env.Prepend(
24     CPPPATH = [
25         '$CHROME_SRC_DIR',
26     ],
29 if env['PLATFORM'] == 'win32':
30   env.Prepend(
31       CCFLAGS = [
32           '/WX',
33       ],
34   )
36 input_files = [
37     'disk_cache/disk_cache_test_util$OBJSUFFIX',
38     'disk_cache/stress_cache.cc',
41 if env['PLATFORM'] in ('posix', 'win32'):
42   env.ChromeTestProgram('stress_cache', input_files)