Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8203)

Unified Diff: chrome/test/perf/perftests.scons

Issue 11541: Add builds of miscellaneous .exes:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome.scons ('k') | chrome/tools/convert_dict/convert_dict.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/perftests.scons
===================================================================
--- chrome/test/perf/perftests.scons (revision 0)
+++ chrome/test/perf/perftests.scons (revision 0)
@@ -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.ApplySConscript([
+ '$BASE_DIR/gfx/using_base_gfx.scons',
+ '$BASE_DIR/using_base.scons',
+ '$BZIP2_DIR/using_bzip2.scons',
+ '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
+ '$CHROME_SRC_DIR/build/using_googleurl.scons',
+ '$CHROME_SRC_DIR/build/using_v8.scons',
+ '$GTEST_DIR/../using_gtest.scons',
+ '$ICU38_DIR/using_icu38.scons',
+ '$LIBJPEG_DIR/using_libjpeg.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',
+ '$SDCH_DIR/using_sdch.scons',
+ '$SKIA_DIR/using_skia.scons',
+ '$ZLIB_DIR/using_zlib.scons',
+])
+
+env.Prepend(
+ CPPDEFINES = [
+ 'PERF_TEST',
+ ],
+ LIBS = [
+ 'activex_shim',
+ 'browser',
+ 'browser_views',
+ 'common',
+ 'debugger',
+ 'default_plugin',
+ 'glue',
+ 'JavaScriptCore_pcre',
+ 'plugin',
+ 'port',
+ 'renderer',
+ 'sqlite',
+ 'util',
+ 'v8_snapshot',
+ 'V8Bindings',
+ 'views',
+ 'WebCore',
+ 'WTF',
+ ],
+)
+
+if env['PLATFORM'] == 'win32':
+ env.Prepend(
+ LIBS = [
+ 'rpcrt4',
+ 'shlwapi',
+ 'winmm',
+ ],
+ )
+
+input_files = [
+ 'perftests.cc',
+ 'url_parse_perftest.cc',
+ '$BASE_DIR/perftimer$OBJSUFFIX',
+ '$CHROME_DIR/browser/safe_browsing/database_perftest.cc',
+ '$CHROME_DIR/browser/visitedlink_master$OBJSUFFIX',
+ '$CHROME_DIR/browser/visitedlink_perftest.cc',
+ '$CHROME_DIR/common/json_value_serializer_perftest.cc',
+ '$CHROME_DIR/test/test_file_util$OBJSUFFIX',
+]
+
+env.ChromeTestProgram('perf_tests', input_files)
Property changes on: chrome\test\perf\perftests.scons
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/chrome.scons ('k') | chrome/tools/convert_dict/convert_dict.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698