OLD | NEW |
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 '$CHROME_SRC_DIR/build/using_v8.scons', |
17 '$DMG_FP_DIR/using_dmg_fp.scons', | |
18 '$GTEST_DIR/../using_gtest.scons', | 17 '$GTEST_DIR/../using_gtest.scons', |
19 '$ICU38_DIR/using_icu38.scons', | 18 '$ICU38_DIR/using_icu38.scons', |
20 '$LIBJPEG_DIR/using_libjpeg.scons', | 19 '$LIBJPEG_DIR/using_libjpeg.scons', |
21 '$LIBPNG_DIR/using_libpng.scons', | 20 '$LIBPNG_DIR/using_libpng.scons', |
22 '$LIBXML_DIR/using_libxml.scons', | 21 '$LIBXML_DIR/using_libxml.scons', |
23 '$LIBXSLT_DIR/using_libxslt.scons', | 22 '$LIBXSLT_DIR/using_libxslt.scons', |
24 '$MODP_B64_DIR/using_modp_b64.scons', | 23 '$MODP_B64_DIR/using_modp_b64.scons', |
25 '$NET_DIR/using_net.scons', | 24 '$NET_DIR/using_net.scons', |
26 '$SKIA_DIR/using_skia.scons', | 25 '$SKIA_DIR/using_skia.scons', |
27 '$ZLIB_DIR/using_zlib.scons', | 26 '$ZLIB_DIR/using_zlib.scons', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 '$CHROME_DIR/test/data/resource.res', | 232 '$CHROME_DIR/test/data/resource.res', |
234 ]) | 233 ]) |
235 | 234 |
236 if env['PLATFORM'] in ('posix', 'win32'): | 235 if env['PLATFORM'] in ('posix', 'win32'): |
237 # TODO(port): This should work on all platforms. | 236 # TODO(port): This should work on all platforms. |
238 | 237 |
239 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) | 238 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) |
240 | 239 |
241 i = env.Install('$TARGET_ROOT', unit_tests) | 240 i = env.Install('$TARGET_ROOT', unit_tests) |
242 Alias('chrome', i) | 241 Alias('chrome', i) |
OLD | NEW |