diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 00:46:18 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 00:46:18 +0000 |
commit | 771e47c22478e28a0783a62cacba00d48402d7b8 (patch) | |
tree | af41098371d73f0bedd88e914e64f8f73ddc20a9 /sandbox/tests/unit_tests | |
parent | 952cc40307a2309fde272079e8706113d609a450 (diff) | |
download | chromium_src-771e47c22478e28a0783a62cacba00d48402d7b8.zip chromium_src-771e47c22478e28a0783a62cacba00d48402d7b8.tar.gz chromium_src-771e47c22478e28a0783a62cacba00d48402d7b8.tar.bz2 |
Avoid having the Hammer modules strip _WINDOWS for test programs,
since doing so conflicts with the way we build the .pch file
(and our explicit settings for the rest of object files).
Review URL: http://codereview.chromium.org/9380
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4716 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/tests/unit_tests')
-rw-r--r-- | sandbox/tests/unit_tests/sbox_unittests.scons | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sandbox/tests/unit_tests/sbox_unittests.scons b/sandbox/tests/unit_tests/sbox_unittests.scons index 2ce1759..f311ede 100644 --- a/sandbox/tests/unit_tests/sbox_unittests.scons +++ b/sandbox/tests/unit_tests/sbox_unittests.scons @@ -74,6 +74,5 @@ input_files = [ '../common/controller$OBJSUFFIX', ] -sbox_unittests = env.ChromeTestProgram('sbox_unittests', input_files) -i = env.Install('$TARGET_ROOT', sbox_unittests) -env.Alias('sandbox', i) +env.ChromeTestProgram('sbox_unittests', input_files, + COMPONENT_PLATFORM_SETUP=None) |