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

Side by Side Diff: chrome/tools/profiles/generate_profile.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/tools/convert_dict/convert_dict.scons ('k') | no next file » | 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_SRC_DIR/build/using_googleurl.scons',
14 '$CHROME_SRC_DIR/build/using_v8.scons',
15 '$GTEST_DIR/../using_gtest.scons',
16 '$ICU38_DIR/using_icu38.scons',
17 '$LIBJPEG_DIR/using_libjpeg.scons',
18 '$LIBPNG_DIR/using_libpng.scons',
19 '$LIBXML_DIR/using_libxml.scons',
20 '$LIBXSLT_DIR/using_libxslt.scons',
21 '$MODP_B64_DIR/using_modp_b64.scons',
22 '$NET_DIR/using_net.scons',
23 '$SDCH_DIR/using_sdch.scons',
24 '$SKIA_DIR/using_skia.scons',
25 '$ZLIB_DIR/using_zlib.scons',
26 ])
27
28 env.Prepend(
29 CPPDEFINES = [
30 'PERF_TEST',
31 ],
32 LIBS = [
33 'activex_shim',
34 'browser',
35 'browser_views',
36 'common',
37 'debugger',
38 'default_plugin',
39 'glue',
40 'hunspell',
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 'generate_profile.cc',
66 ]
67
68 env.ChromeTestProgram('generate_profile', input_files)
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698