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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.scons ('k') | chrome/tools/convert_dict/convert_dict.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 Import('env')
6
7 env = env.Clone()
8
9 env.ApplySConscript([
10 '$BASE_DIR/gfx/using_base_gfx.scons',
11 '$BASE_DIR/using_base.scons',
12 '$BZIP2_DIR/using_bzip2.scons',
13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
14 '$CHROME_SRC_DIR/build/using_googleurl.scons',
15 '$CHROME_SRC_DIR/build/using_v8.scons',
16 '$GTEST_DIR/../using_gtest.scons',
17 '$ICU38_DIR/using_icu38.scons',
18 '$LIBJPEG_DIR/using_libjpeg.scons',
19 '$LIBPNG_DIR/using_libpng.scons',
20 '$LIBXML_DIR/using_libxml.scons',
21 '$LIBXSLT_DIR/using_libxslt.scons',
22 '$MODP_B64_DIR/using_modp_b64.scons',
23 '$NET_DIR/using_net.scons',
24 '$SDCH_DIR/using_sdch.scons',
25 '$SKIA_DIR/using_skia.scons',
26 '$ZLIB_DIR/using_zlib.scons',
27 ])
28
29 env.Prepend(
30 CPPDEFINES = [
31 'PERF_TEST',
32 ],
33 LIBS = [
34 'activex_shim',
35 'browser',
36 'browser_views',
37 'common',
38 'debugger',
39 'default_plugin',
40 'glue',
41 'JavaScriptCore_pcre',
42 'plugin',
43 'port',
44 'renderer',
45 'sqlite',
46 'util',
47 'v8_snapshot',
48 'V8Bindings',
49 'views',
50 'WebCore',
51 'WTF',
52 ],
53 )
54
55 if env['PLATFORM'] == 'win32':
56 env.Prepend(
57 LIBS = [
58 'rpcrt4',
59 'shlwapi',
60 'winmm',
61 ],
62 )
63
64 input_files = [
65 'perftests.cc',
66 'url_parse_perftest.cc',
67 '$BASE_DIR/perftimer$OBJSUFFIX',
68 '$CHROME_DIR/browser/safe_browsing/database_perftest.cc',
69 '$CHROME_DIR/browser/visitedlink_master$OBJSUFFIX',
70 '$CHROME_DIR/browser/visitedlink_perftest.cc',
71 '$CHROME_DIR/common/json_value_serializer_perftest.cc',
72 '$CHROME_DIR/test/test_file_util$OBJSUFFIX',
73 ]
74
75 env.ChromeTestProgram('perf_tests', input_files)
OLDNEW
« 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