summaryrefslogtreecommitdiffstats
path: root/chrome/installer/mini_installer
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-11 09:09:34 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-11 09:09:34 +0000
commitc184895a01fc849c49513b4d32b314a57181360b (patch)
tree8904c15d294604ede1f7e43e04ffcf3ef5c5907f /chrome/installer/mini_installer
parent4a3488257acbe21a9080abc0f7bf60b90fb34a57 (diff)
downloadchromium_src-c184895a01fc849c49513b4d32b314a57181360b.zip
chromium_src-c184895a01fc849c49513b4d32b314a57181360b.tar.gz
chromium_src-c184895a01fc849c49513b4d32b314a57181360b.tar.bz2
Move the installer_unittests.scons file into installer\util,
to match where the .vcproj file lives. Review URL: http://codereview.chromium.org/17349 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/mini_installer')
-rw-r--r--chrome/installer/mini_installer/installer_unittests.scons70
1 files changed, 0 insertions, 70 deletions
diff --git a/chrome/installer/mini_installer/installer_unittests.scons b/chrome/installer/mini_installer/installer_unittests.scons
deleted file mode 100644
index 288cda2..0000000
--- a/chrome/installer/mini_installer/installer_unittests.scons
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-Import('env')
-
-env = env.Clone()
-
-env.ApplySConscript([
- '$BASE_DIR/using_base.scons',
- '$GTEST_DIR/../using_gtest.scons',
- '$ICU38_DIR/using_icu38.scons',
-])
-
-env.Prepend(
- CPPPATH = [
- '$CHROME_SRC_DIR',
- ],
- LIBS = [
- 'common',
- 'util',
- ],
-)
-
-if env.Bit('windows'):
- env.FilterOut(
- LIBS = ['DelayImp.lib'],
- )
-
- env.Prepend(
- LINKFLAGS = [
- '/INCREMENTAL',
- '/DEBUG',
-
- '/DELAYLOAD:"dwmapi.dll"',
- '/DELAYLOAD:"uxtheme.dll"',
-
- '/MACHINE:X86',
- '/FIXED:No',
-
- '/safeseh',
- '/dynamicbase',
- '/ignore:4199',
- '/nxcompat',
- ],
- LIBS = [
- 'comsupp',
- 'oleacc',
- 'rpcrt4',
- 'shlwapi',
- ],
- )
-
-input_files = [
- '../setup/setup_constants$OBJSUFFIX',
- '../util/copy_tree_work_item_unittest.cc',
- '../util/create_dir_work_item_unittest.cc',
- '../util/create_reg_key_work_item_unittest.cc',
- '../util/delete_reg_value_work_item_unittest.cc',
- '../util/delete_tree_work_item_unittest.cc',
- '../util/google_chrome_distribution_unittest.cc',
- '../util/helper_unittest.cc',
- '../util/run_all_unittests.cc',
- '../util/set_reg_value_work_item_unittest.cc',
- '../util/work_item_list_unittest.cc',
-]
-
-# TODO(port):
-if env.Bit('windows'):
- env.ChromeTestProgram('installer_unittests', input_files)