| 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 '$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 Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |