summaryrefslogtreecommitdiffstats
path: root/chrome/tools
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-03 21:21:54 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-03 21:21:54 +0000
commitb56791c36d461ea0902ede1f0d2fd3044e9ed595 (patch)
tree85b761aa2449b985051d376f8074f43633947f5e /chrome/tools
parentf7df58905b11fa7df6fa01d2523e2136d6d774d0 (diff)
downloadchromium_src-b56791c36d461ea0902ede1f0d2fd3044e9ed595.zip
chromium_src-b56791c36d461ea0902ede1f0d2fd3044e9ed595.tar.gz
chromium_src-b56791c36d461ea0902ede1f0d2fd3044e9ed595.tar.bz2
Convert chrome SConscript files to psuedo-builder calls.
TBR: evanm,bradnelson git-svn-id: svn://svn.chromium.org/chrome/trunk/src@306 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r--chrome/tools/crash_service/SConscript2
-rw-r--r--chrome/tools/perf/flush_cache/SConscript2
-rw-r--r--chrome/tools/test/image_diff/SConscript2
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/tools/crash_service/SConscript b/chrome/tools/crash_service/SConscript
index b682986..538bf58 100644
--- a/chrome/tools/crash_service/SConscript
+++ b/chrome/tools/crash_service/SConscript
@@ -93,7 +93,7 @@ input_files = [
'crash_service.cc',
]
-exe = env.Program('crash_service.exe', input_files + libs)
+exe = env.ChromeProgram('crash_service.exe', input_files + libs)
i = env.Install('$TARGET_ROOT', exe)
Alias('chrome', i)
diff --git a/chrome/tools/perf/flush_cache/SConscript b/chrome/tools/perf/flush_cache/SConscript
index 7b3d853..22d927b 100644
--- a/chrome/tools/perf/flush_cache/SConscript
+++ b/chrome/tools/perf/flush_cache/SConscript
@@ -84,7 +84,7 @@ libs = [
'$BASE_DIR/base.lib',
]
-exe = env_test.Program(['flush_cache',
+exe = env_test.ChromeTestProgram(['flush_cache',
'flush_cache'],
input_files + libs)
i = env_test.Install('$TARGET_ROOT', exe)
diff --git a/chrome/tools/test/image_diff/SConscript b/chrome/tools/test/image_diff/SConscript
index b9445d9..6054a304 100644
--- a/chrome/tools/test/image_diff/SConscript
+++ b/chrome/tools/test/image_diff/SConscript
@@ -96,7 +96,7 @@ libs = [
'$BASE_DIR/base.lib',
]
-exe = env_test.Program(['image_diff',
+exe = env_test.ChromeTestProgram(['image_diff',
'image_diff.pdb'],
input_files + libs)
i = env_test.Install('$TARGET_ROOT', exe)