From 823b63ec4135ed33a1bd358d05e863dbf821a3b1 Mon Sep 17 00:00:00 2001 From: "tc@google.com" Date: Wed, 13 Aug 2008 22:53:51 +0000 Subject: 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 --- chrome/test/reliability/SConscript | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'chrome/test/reliability') 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) -- cgit v1.1