summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui/ui_tests.scons
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
commit0fad1f1a74408b939d1b09dcc2f9391544e7e692 (patch)
treec62164260c26f143c9ae43c32694142a725bc7eb /chrome/test/ui/ui_tests.scons
parenta9b826af8ef183810c176b9ede4a2934f4678d50 (diff)
downloadchromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.zip
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.gz
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.bz2
Remove the checked-in scons configuration files.
Review URL: http://codereview.chromium.org/53121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_tests.scons')
-rw-r--r--chrome/test/ui/ui_tests.scons431
1 files changed, 0 insertions, 431 deletions
diff --git a/chrome/test/ui/ui_tests.scons b/chrome/test/ui/ui_tests.scons
deleted file mode 100644
index 28c50ee..0000000
--- a/chrome/test/ui/ui_tests.scons
+++ /dev/null
@@ -1,431 +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.SConscript([
- '$BASE_DIR/using_base.scons',
- '$BASE_DIR/gfx/using_base_gfx.scons',
- '$BZIP2_DIR/using_bzip2.scons',
- '$CHROME_DIR/third_party/wtl/using_wtl.scons',
- '$CHROME_SRC_DIR/build/using_googleurl.scons',
- '$CHROME_SRC_DIR/tools/grit/build/using_generated_resources.scons',
- '$GTEST_DIR/../using_gtest.scons',
- '$ICU38_DIR/using_icu38.scons',
- '$LIBPNG_DIR/using_libpng.scons',
- '$LIBXML_DIR/using_libxml.scons',
- '$LIBXSLT_DIR/using_libxslt.scons',
- '$MODP_B64_DIR/using_modp_b64.scons',
- '$NET_DIR/using_net.scons',
- #'$NPAPI_DIR/using_npapi.scons',
- '$SDCH_DIR/using_sdch.scons',
- '$SKIA_DIR/using_skia.scons',
- '$ZLIB_DIR/using_zlib.scons',
- '$CHROME_SRC_DIR/build/using_v8.scons',
-], {'env':env})
-
-env.Prepend(
- CPPPATH = [
- '$CHROME_DIR/app/resources',
- '$CHROME_SRC_DIR',
- ],
- CPPDEFINES = [
- 'UI_TEST',
- ],
- LIBS = [
- 'automation',
- 'browser',
- 'common',
- 'glue',
- 'port',
- 'sqlite',
- 'WTF',
- 'views',
-
- 'WebKit',
- 'WebCore',
- 'V8Bindings',
- 'v8_snapshot',
- 'libxml',
- 'port',
- 'renderer',
- 'JavaScriptCore_pcre',
-
- 'jpeg',
-
- 'bzip2',
- 'X11',
- 'Xrender',
- 'Xext',
-
- 'media',
- 'sdch',
- 'views',
-
- 'hunspell',
- 'printing',
- 'modp_b64',
- 'debugger',
-
- ]
-)
-
-if env.Bit('windows'):
- # TODO(port): split these into upper env.Prepend (for portable libs) and
- # lower env.Prepend (for win-specific libs).
- env.Prepend(
- LIBS = [
- 'browser_views',
- 'npapi_layout_test_plugin',
- 'npapi_test_plugin',
- 'security_tests',
- ],
- )
-
-if env.Bit('windows'):
- env.Prepend(
- CPPPATH = [
- '$CHROME_DIR/tools/build/win',
- ],
- LINKFLAGS = [
- '/INCREMENTAL',
-
- '/safeseh',
- '/dynamicbase',
- '/ignore:4199',
- '/nxcompat',
-
- '/MANIFEST',
- '/DELAYLOAD:"ws2_32.dll"',
- '/DELAYLOAD:"dwmapi.dll"',
- '/DELAYLOAD:"uxtheme.dll"',
-
- '/DEBUG',
- '/MACHINE:X86',
- '/FIXED:No',
- ],
- LIBS = [
- 'comsupp',
- 'oleacc',
- 'rpcrt4',
- 'winmm',
- ],
- )
-
-input_files = ChromeFileList([
- # TODO(sgk): violate standard indentation so we don't have to
- # reindent too much when we remove the explicit MSVSFilter() calls
- # in favor of generating the hierarchy to reflect the file system.
- MSVSFilter('Common', [
- 'npapi_test_helper.cc',
- 'npapi_test_helper.h',
- '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX',
- '$CHROME_DIR/tools/build/win/precompiled_wtl.h',
- 'run_all_unittests.cc',
- 'javascript_test_util.cc',
- 'javascript_test_util.h',
- '$CHROME_DIR/test/testing_browser_process.h',
- 'ui_test.cc',
- 'ui_test.h',
- 'ui_test_suite.cc',
- 'ui_test_suite.h',
- '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX',
- '$NET_DIR/url_request/url_request_test_job.h',
- ]),
- MSVSFilter('TestChromeMain', [
- '$CHROME_DIR/app/chrome_main_uitest.cc',
- ]),
- MSVSFilter('TestErrorPage', [
- '$CHROME_DIR/browser/errorpage_uitest.cc',
- ]),
- MSVSFilter('TestBrowser', [
- '$CHROME_DIR/browser/browser_uitest.cc',
- MSVSFilter('TestImages', [
- '$CHROME_DIR/browser/images_uitest.cc',
- ]),
- ]),
- MSVSFilter('TestChromeLogging', [
- '$CHROME_DIR/common/logging_chrome_uitest.cc',
- ]),
- MSVSFilter('TestDownload', [
- '$CHROME_DIR/browser/download/download_uitest.cc',
- ]),
- MSVSFilter('TestIFrame', [
- '$CHROME_DIR/browser/iframe_uitest.cc',
- ]),
- MSVSFilter('TestCache', [
- '$CHROME_DIR/common/net/cache_uitest.cc',
- ]),
- MSVSFilter('TestSanity', [
- '$CHROME_DIR/browser/sanity_uitest.cc',
- ]),
- MSVSFilter('TestAutomationProxy', [
- '$CHROME_DIR/test/automation/automation_proxy_uitest.cc',
- ]),
- MSVSFilter('TestNPAPI', [
- 'layout_plugin_uitest.cc',
- 'npapi_uitest.cc',
- ]),
- MSVSFilter('TestSessionHistory', [
- '$CHROME_DIR/browser/session_history_uitest.cc',
- ]),
- MSVSFilter('TestSessionRestore', [
- '$CHROME_DIR/browser/sessions/session_restore_uitest.cc',
- ]),
- MSVSFilter('TestTabRestore', [
- '$CHROME_DIR/browser/tab_restore_uitest.cc',
- ]),
- MSVSFilter('TestUnload', [
- '$CHROME_DIR/browser/unload_uitest.cc',
- ]),
- MSVSFilter('TestAuthentication', [
- '$CHROME_DIR/browser/login_prompt_uitest.cc',
- ]),
- MSVSFilter('TestPreferences', [
- '$CHROME_DIR/common/pref_service_uitest.cc',
- ]),
- MSVSFilter('TestViewSource', [
- '$CHROME_DIR/browser/tab_contents/view_source_uitest.cc',
- ]),
- MSVSFilter('TestRedirects', [
- '$CHROME_DIR/browser/history/redirect_uitest.cc',
- ]),
- MSVSFilter('TestResourceDispatcherHost', [
- '$CHROME_DIR/browser/renderer_host/resource_dispatcher_host_uitest.cc',
- ]),
- MSVSFilter('TestFindInPage', [
- '$CHROME_DIR/browser/views/find_bar_win_uitest.cc',
- ]),
- MSVSFilter('TestPageLoader', [
- '$CHROME_DIR/test/perf/mem_usage.cc',
- '$CHROME_DIR/test/perf/mem_usage.h',
- '$CHROME_DIR/test/reliability/page_load_test$OBJSUFFIX',
- '$CHROME_DIR/test/reliability/page_load_test.h',
- ]),
- MSVSFilter('TestSandbox', [
- 'sandbox_uitests.cc',
- ]),
- MSVSFilter('TestInspector', [
- 'inspector_controller_uitest.cc',
- ]),
- MSVSFilter('TestLocalizedBuilds', [
- '$CHROME_DIR/browser/locale_tests_uitest.cc',
- ]),
- MSVSFilter('TestMetricsService', [
- '$CHROME_DIR/browser/metrics/metrics_service_uitest.cc',
- ]),
- MSVSFilter('TestInterstitialPage', [
- '$CHROME_DIR/browser/interstitial_page_uitest.cc',
- ]),
- MSVSFilter('TestSSL', [
- '$CHROME_DIR/browser/ssl/ssl_uitest.cc',
- ]),
- MSVSFilter('TestAccessibility', [
- '$CHROME_DIR/test/accessibility/accessibility_tests.cc',
- MSVSFilter('Accessibility Client', [
- '$CHROME_DIR/test/accessibility/accessibility_util.cc',
- '$CHROME_DIR/test/accessibility/accessibility_util.h',
- '$CHROME_DIR/test/accessibility/browser_impl.cc',
- '$CHROME_DIR/test/accessibility/browser_impl.h',
- '$CHROME_DIR/test/accessibility/constants.h',
- '$CHROME_DIR/test/accessibility/keyboard_util.cc',
- '$CHROME_DIR/test/accessibility/keyboard_util.h',
- '$CHROME_DIR/test/accessibility/registry_util.cc',
- '$CHROME_DIR/test/accessibility/registry_util.h',
- '$CHROME_DIR/test/accessibility/tab_impl.cc',
- '$CHROME_DIR/test/accessibility/tab_impl.h',
- ]),
- ]),
- MSVSFilter('TestCrashRecovery', [
- '$CHROME_DIR/browser/crash_recovery_uitest.cc',
- ]),
- MSVSFilter('TestPrinting', [
- '$CHROME_DIR/browser/printing/printing_layout_uitest.cc',
- '$CHROME_DIR/browser/printing/printing_test.h',
- ]),
- MSVSFilter('TestSavePage', [
- '$CHROME_DIR/browser/download/save_page_uitest.cc',
- ]),
- MSVSFilter('TestOmnibox', [
- 'omnibox_uitest.cc',
- ]),
- MSVSFilter('TestHistory', [
- 'history_uitest.cc',
- ]),
- MSVSFilter('TestDOMChecker', [
- 'dom_checker_uitest.cc',
- ]),
- MSVSFilter('TestSunSpider', [
- 'sunspider_uitest.cc',
- ]),
- MSVSFilter('TestV8Benchmark', [
- 'v8_benchmark_uitest.cc',
- ]),
-])
-
-if not env.Bit('windows'):
- # TODO(port): mark which of these work and which don't.
- input_files.Remove(
- 'layout_plugin_uitest.cc',
- 'npapi_test_helper.cc',
- 'npapi_uitest.cc',
- 'omnibox_uitest.cc',
- 'dom_checker_uitest.cc',
- 'sunspider_uitest.cc',
- 'v8_benchmark_uitest.cc',
-
- 'sandbox_uitests.cc',
-
- '$CHROME_DIR/app/chrome_main_uitest.cc',
- '$CHROME_DIR/browser/browser_uitest.cc',
- '$CHROME_DIR/browser/crash_recovery_uitest.cc',
- '$CHROME_DIR/browser/download/download_uitest.cc',
- '$CHROME_DIR/browser/download/save_page_uitest.cc',
- '$CHROME_DIR/browser/errorpage_uitest.cc',
- '$CHROME_DIR/browser/iframe_uitest.cc',
- '$CHROME_DIR/browser/history/redirect_uitest.cc',
- '$CHROME_DIR/browser/interstitial_page_uitest.cc',
- '$CHROME_DIR/browser/login_prompt_uitest.cc',
- '$CHROME_DIR/browser/metrics/metrics_service_uitest.cc',
- '$CHROME_DIR/browser/printing/printing_layout_uitest.cc',
- '$CHROME_DIR/browser/renderer_host/resource_dispatcher_host_uitest.cc',
- '$CHROME_DIR/browser/session_history_uitest.cc',
- '$CHROME_DIR/browser/sessions/session_restore_uitest.cc',
- '$CHROME_DIR/browser/ssl/ssl_uitest.cc',
- '$CHROME_DIR/browser/tab_contents/view_source_uitest.cc',
- '$CHROME_DIR/browser/tab_restore_uitest.cc',
- '$CHROME_DIR/browser/unload_uitest.cc',
- '$CHROME_DIR/common/logging_chrome_uitest.cc',
- '$CHROME_DIR/common/net/cache_uitest.cc',
- '$CHROME_DIR/common/pref_service_uitest.cc',
- '$CHROME_DIR/test/accessibility/accessibility_tests.cc',
- '$CHROME_DIR/test/accessibility/accessibility_util.cc',
- '$CHROME_DIR/test/accessibility/browser_impl.cc',
- '$CHROME_DIR/test/accessibility/keyboard_util.cc',
- '$CHROME_DIR/test/accessibility/registry_util.cc',
- '$CHROME_DIR/test/accessibility/tab_impl.cc',
- '$CHROME_DIR/test/automation/automation_proxy_uitest.cc',
- '$CHROME_DIR/test/perf/mem_usage.cc',
- '$CHROME_DIR/test/reliability/page_load_test$OBJSUFFIX',
- '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX',
- )
-
-if not env.Bit('windows'):
- # Windows-specific tests.
- input_files.Remove(
- '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX',
- '$CHROME_DIR/tools/build/win/precompiled_wtl.h',
- '$CHROME_DIR/browser/views/find_bar_win_interactive_uitest.cc',
- '$CHROME_DIR/browser/views/find_bar_win_uitest.cc',
- )
-
-env.ChromeTestProgram('ui_tests', input_files)
-
-p = env.ChromeMSVSProject('ui_tests.vcproj',
- dest='$CHROME_SRC_DIR/chrome/test/ui/ui_tests.vcproj',
- guid='{76235B67-1C27-4627-8A33-4B2E1EF93EDE}',
- dependencies = [
- ('$WEBKIT_DIR/glue/plugins/test/' +
- 'npapi_test_plugin.vcproj'),
- '$CHROME_DIR/test/automation/automation.vcproj',
- '$BASE_DIR/build/base.vcproj',
- '$BZIP2_DIR/bzip2.vcproj',
- '$NET_DIR/build/net.vcproj',
- '$CHROME_DIR/browser/browser.vcproj',
- '$MODP_B64_DIR/modp_b64.vcproj',
- '$CHROME_DIR/app/chrome_exe.vcproj',
- '$ZLIB_DIR/zlib.vcproj',
- '$CHROME_DIR/common/common.vcproj',
- '$ICU38_DIR/build/icu.vcproj',
- '$CHROME_DIR/app/locales/he.vcproj',
- '$CHROME_DIR/app/locales/da.vcproj',
- '$BASE_DIR/build/base_gfx.vcproj',
- ('$WEBKIT_DIR/tools/npapi_layout_test_plugin/'
- + 'npapi_layout_test_plugin.vcproj'),
- '$TESTING_DIR/gtest.vcproj',
- '$LIBPNG_DIR/libpng.vcproj',
- '$CHROME_DIR/app/locales/en-US.vcproj',
- '$SKIA_DIR/skia.vcproj',
- ('$CHROME_DIR/test/security_tests/'
- + 'security_tests.vcproj'),
- '$CHROME_DIR/app/locales/zh-TW.vcproj',
- '$GOOGLEURL_DIR/build/googleurl.vcproj',
- '$SDCH_DIR/sdch.vcproj',
- '$LIBXML_DIR/build/libxml.vcproj',
- '$CHROME_DIR/browser/views/browser_views.vcproj',
- ],
- # TODO(sgk): when we can intuit the hierarchy
- # from the built targets.
- #buildtargets=TODO,
- files=input_files,
- local_directory_prefix='./',
- tools=[
- 'VCPreBuildEventTool',
- 'VCCustomBuildTool',
- 'VCXMLDataGeneratorTool',
- 'VCWebServiceProxyGeneratorTool',
- 'VCMIDLTool',
- MSVSTool('VCCLCompilerTool',
- AdditionalIncludeDirectories=[
- '"$(OutDir)/obj/generated_resources"',
- ]),
- 'VCManagedResourceCompilerTool',
- 'VCResourceCompilerTool',
- 'VCPreLinkEventTool',
- MSVSTool('VCLinkerTool',
- AdditionalDependencies='winmm.lib'),
- 'VCALinkTool',
- 'VCManifestTool',
- 'VCXDCMakeTool',
- 'VCBscMakeTool',
- 'VCFxCopTool',
- 'VCAppVerifierTool',
- 'VCWebDeploymentTool',
- 'VCPostBuildEventTool',
- ],
- ConfigurationType='1')
-
-
-p.AddConfig('Debug|Win32',
- InheritedPropertySheets=[
- '$(SolutionDir)../build/common.vsprops',
- '$(SolutionDir)../build/debug.vsprops',
- '../../tools/build/win/precompiled_wtl.vsprops',
- ('$(SolutionDir)../third_party/'
- + 'libxml/build/using_libxml.vsprops'),
- ('$(SolutionDir)../third_party/'
- + 'libxslt/build/using_libxslt.vsprops'),
- '../../tools/build/win/unit_test.vsprops',
- '../../tools/build/win/ui_test.vsprops',
- '../../tools/build/win/test_memory_usage.vsprops',
- '$(SolutionDir)../skia/using_skia.vsprops',
- '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops',
- '$(SolutionDir)/tools/build/win/js_engine.vsprops',
- '$(SolutionDir)../testing/using_gtest.vsprops',
- ])
-
-p.AddConfig('Release|Win32',
- InheritedPropertySheets=[
- '$(SolutionDir)../build/common.vsprops',
- '$(SolutionDir)../build/release.vsprops',
- ('$(SolutionDir)../third_party/'
- + 'libxml/build/using_libxml.vsprops'),
- ('$(SolutionDir)../third_party/'
- + 'libxslt/build/using_libxslt.vsprops'),
- '../../tools/build/win/unit_test.vsprops',
- '../../tools/build/win/ui_test.vsprops',
- '$(SolutionDir)../skia/using_skia.vsprops',
- '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops',
- '$(SolutionDir)/tools/build/win/js_engine.vsprops',
- '$(SolutionDir)../testing/using_gtest.vsprops',
- ])
-
-p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc',
- 'Debug|Win32',
- tools=[
- MSVSTool('VCCLCompilerTool',
- UsePrecompiledHeader='1'),
- ])