summaryrefslogtreecommitdiffstats
path: root/chrome/test/reliability
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-13 22:53:51 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-13 22:53:51 +0000
commit823b63ec4135ed33a1bd358d05e863dbf821a3b1 (patch)
tree6918b786dab0c6825a441575e81affe201686f39 /chrome/test/reliability
parentd50dacfa212414132ab7db970b8b43cfeadb9cbe (diff)
downloadchromium_src-823b63ec4135ed33a1bd358d05e863dbf821a3b1.zip
chromium_src-823b63ec4135ed33a1bd358d05e863dbf821a3b1.tar.gz
chromium_src-823b63ec4135ed33a1bd358d05e863dbf821a3b1.tar.bz2
Add a helper method to SConscript.main for adding .pdb files to the
output target of .exe files on Windows. Change all the callers to only pass in the basename of the target (e.g., 'base_unittests'). The only exception is chrome.exe which uses chrome_exe.pdb. This lets us remove a "if env['PLATFORM'] == 'win32'" condition from base/SConscript and these other files going forward. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@836 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r--chrome/test/reliability/SConscript4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/test/reliability/SConscript b/chrome/test/reliability/SConscript
index 7ad6b99..a7bf920 100644
--- a/chrome/test/reliability/SConscript
+++ b/chrome/test/reliability/SConscript
@@ -96,9 +96,7 @@ input_files = [
'run_all_unittests.cc',
]
-exe = env_test.ChromeTestProgram(['reliability_tests',
- 'reliability_tests.pdb'],
- input_files)
+exe = env_test.ChromeTestProgram('reliability_tests', input_files)
i = env_test.Install('$TARGET_ROOT', exe)
env_test.Alias('chrome', i)