diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 22:53:59 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-13 22:53:59 +0000 |
commit | 099334476813e112dc12f912b89718fdef2cc384 (patch) | |
tree | d08e1f2b247d769e9f835212c68f0607b3964196 /chrome/tools | |
parent | 823b63ec4135ed33a1bd358d05e863dbf821a3b1 (diff) | |
download | chromium_src-099334476813e112dc12f912b89718fdef2cc384.zip chromium_src-099334476813e112dc12f912b89718fdef2cc384.tar.gz chromium_src-099334476813e112dc12f912b89718fdef2cc384.tar.bz2 |
Part 2 of the chrome_program change. Split into two changes
to avoid the rietveld 1mb diff limit.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/crash_service/SConscript | 2 | ||||
-rw-r--r-- | chrome/tools/perf/flush_cache/SConscript | 4 | ||||
-rw-r--r-- | chrome/tools/test/image_diff/SConscript | 4 |
3 files changed, 3 insertions, 7 deletions
diff --git a/chrome/tools/crash_service/SConscript b/chrome/tools/crash_service/SConscript index d650ced..b40e60c 100644 --- a/chrome/tools/crash_service/SConscript +++ b/chrome/tools/crash_service/SConscript @@ -72,7 +72,7 @@ input_files = [ 'crash_service.cc', ] -exe = env.ChromeProgram('crash_service.exe', input_files) +exe = env.ChromeProgram('crash_service', input_files) 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 c0b6fa3..3deebe7 100644 --- a/chrome/tools/perf/flush_cache/SConscript +++ b/chrome/tools/perf/flush_cache/SConscript @@ -64,9 +64,7 @@ input_files = [ 'flush_cache.cc', ] -exe = env_test.ChromeTestProgram(['flush_cache', - 'flush_cache'], - input_files) +exe = env_test.ChromeTestProgram('flush_cache', input_files) i = env_test.Install('$TARGET_ROOT', exe) env_test.Alias('chrome', i) diff --git a/chrome/tools/test/image_diff/SConscript b/chrome/tools/test/image_diff/SConscript index 55584dd..b62a794 100644 --- a/chrome/tools/test/image_diff/SConscript +++ b/chrome/tools/test/image_diff/SConscript @@ -76,9 +76,7 @@ input_files = [ 'image_diff.cc', ] -exe = env_test.ChromeTestProgram(['image_diff', - 'image_diff.pdb'], - input_files) +exe = env_test.ChromeTestProgram('image_diff', input_files) i = env_test.Install('$TARGET_ROOT', exe) env_test.Alias('chrome', i) |