diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 17:28:04 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 17:28:04 +0000 |
commit | a6021be60e931b146c7694c168ae6e13304ee7dc (patch) | |
tree | 093945f9091bc67e415e2595393615d753b8cb8d /chrome/test/automated_ui_tests | |
parent | d8d0ddfd25965139899cb946e41f2cf825a1f858 (diff) | |
download | chromium_src-a6021be60e931b146c7694c168ae6e13304ee7dc.zip chromium_src-a6021be60e931b146c7694c168ae6e13304ee7dc.tar.gz chromium_src-a6021be60e931b146c7694c168ae6e13304ee7dc.tar.bz2 |
SCons rename: automated_ui_tests and ui_tests.
Review URL: http://codereview.chromium.org/8225
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4784 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automated_ui_tests')
-rw-r--r-- | chrome/test/automated_ui_tests/automated_ui_tests.scons | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/chrome/test/automated_ui_tests/automated_ui_tests.scons b/chrome/test/automated_ui_tests/automated_ui_tests.scons new file mode 100644 index 0000000..668754e --- /dev/null +++ b/chrome/test/automated_ui_tests/automated_ui_tests.scons @@ -0,0 +1,75 @@ +# 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', + '$CHROME_DIR/third_party/wtl/using_wtl.scons', + '$CHROME_SRC_DIR/build/using_googleurl.scons', + '$GTEST_DIR/../using_gtest.scons', + '$ICU38_DIR/using_icu38.scons', + '$LIBPNG_DIR/using_libpng.scons', + '$LIBXML_DIR/using_libxml.scons', + '$NET_DIR/using_net.scons', + '$SKIA_DIR/using_skia.scons', + '$ZLIB_DIR/using_zlib.scons', +], {'env':env}) + +env.Prepend( + CPPPATH = [ + '$CHROME_SRC_DIR', + ], + LIBS = [ + 'automation', + 'browser', + 'browser_views', + 'common', + ], +) + +if env['PLATFORM'] == 'win32': + 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', + 'psapi', + 'rpcrt4', + ], + ) + +input_files = [ + 'automated_ui_tests.cc', + + '$CHROME_DIR/test/test_file_util$OBJSUFFIX', + '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', + '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', + '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', + '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', +] + +env.ChromeTestProgram('automated_ui_tests', input_files) |