summaryrefslogtreecommitdiffstats
path: root/chrome/tools/perf/flush_cache/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/tools/perf/flush_cache/SConscript')
-rw-r--r--chrome/tools/perf/flush_cache/SConscript14
1 files changed, 8 insertions, 6 deletions
diff --git a/chrome/tools/perf/flush_cache/SConscript b/chrome/tools/perf/flush_cache/SConscript
index 349375b..0173e16 100644
--- a/chrome/tools/perf/flush_cache/SConscript
+++ b/chrome/tools/perf/flush_cache/SConscript
@@ -35,6 +35,13 @@ env_test.Prepend(
CPPPATH = [
'#/..',
],
+ LIBS = [
+ 'icuuc',
+ 'base',
+ ],
+)
+
+env_test.Prepend(
LINKFLAGS = [
'/INCREMENTAL',
'/DEBUG',
@@ -57,14 +64,9 @@ input_files = [
'flush_cache.cc',
]
-libs = [
- '$ICU38_DIR/icuuc.lib',
- '$BASE_DIR/base.lib',
-]
-
exe = env_test.ChromeTestProgram(['flush_cache',
'flush_cache'],
- input_files + libs)
+ input_files)
i = env_test.Install('$TARGET_ROOT', exe)
env_test.Alias('chrome', i)