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

Side by Side Diff: chrome/test/unit/unit_tests.scons

Issue 10857: Add OPT=1 flag to build optimized on Linux. (Closed)
Patch Set: alles ist gut 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
« no previous file with comments | « build/using_v8.scons ('k') | net/base/host_resolver_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 Import('env') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.SConscript([ 9 env.SConscript([
10 '$BASE_DIR/gfx/using_base_gfx.scons', 10 '$BASE_DIR/gfx/using_base_gfx.scons',
11 '$BASE_DIR/using_base.scons', 11 '$BASE_DIR/using_base.scons',
12 '$BZIP2_DIR/using_bzip2.scons', 12 '$BZIP2_DIR/using_bzip2.scons',
13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', 13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', 14 '$CHROME_DIR/third_party/wtl/using_wtl.scons',
15 '$CHROME_SRC_DIR/build/using_googleurl.scons', 15 '$CHROME_SRC_DIR/build/using_googleurl.scons',
16 '$CHROME_SRC_DIR/build/using_v8.scons',
16 '$DMG_FP_DIR/using_dmg_fp.scons', 17 '$DMG_FP_DIR/using_dmg_fp.scons',
17 '$GTEST_DIR/../using_gtest.scons', 18 '$GTEST_DIR/../using_gtest.scons',
18 '$ICU38_DIR/using_icu38.scons', 19 '$ICU38_DIR/using_icu38.scons',
19 '$LIBJPEG_DIR/using_libjpeg.scons', 20 '$LIBJPEG_DIR/using_libjpeg.scons',
20 '$LIBPNG_DIR/using_libpng.scons', 21 '$LIBPNG_DIR/using_libpng.scons',
21 '$LIBXML_DIR/using_libxml.scons', 22 '$LIBXML_DIR/using_libxml.scons',
22 '$LIBXSLT_DIR/using_libxslt.scons', 23 '$LIBXSLT_DIR/using_libxslt.scons',
23 '$MODP_B64_DIR/using_modp_b64.scons', 24 '$MODP_B64_DIR/using_modp_b64.scons',
24 '$NET_DIR/using_net.scons', 25 '$NET_DIR/using_net.scons',
25 '$SKIA_DIR/using_skia.scons', 26 '$SKIA_DIR/using_skia.scons',
(...skipping 15 matching lines...) Expand all
41 '$CHROME_DIR/app/resources', 42 '$CHROME_DIR/app/resources',
42 '$CHROME_SRC_DIR', 43 '$CHROME_SRC_DIR',
43 ], 44 ],
44 LIBS = [ 45 LIBS = [
45 'browser', 46 'browser',
46 'common', 47 'common',
47 'plugin', 48 'plugin',
48 'renderer', 49 'renderer',
49 'sqlite', 50 'sqlite',
50 'util', 51 'util',
51 'v8_g',
52 'v8_snapshot', 52 'v8_snapshot',
53 53
54 'WTF', 54 'WTF',
55 'V8Bindings', 55 'V8Bindings',
56 'default_plugin', 56 'default_plugin',
57 'glue', 57 'glue',
58 'JavaScriptCore_pcre', 58 'JavaScriptCore_pcre',
59 'port', 59 'port',
60 'WebCore', 60 'WebCore',
61 ], 61 ],
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 '$CHROME_DIR/test/data/resource.res', 233 '$CHROME_DIR/test/data/resource.res',
234 ]) 234 ])
235 235
236 if env['PLATFORM'] in ('posix', 'win32'): 236 if env['PLATFORM'] in ('posix', 'win32'):
237 # TODO(port): This should work on all platforms. 237 # TODO(port): This should work on all platforms.
238 238
239 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) 239 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files)
240 240
241 i = env.Install('$TARGET_ROOT', unit_tests) 241 i = env.Install('$TARGET_ROOT', unit_tests)
242 Alias('chrome', i) 242 Alias('chrome', i)
OLDNEW
« no previous file with comments | « build/using_v8.scons ('k') | net/base/host_resolver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698