| 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', 'env_res') | 5 Import('env', 'env_res') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 env_res = env_res.Clone() | 8 env_res = env_res.Clone() |
| 9 | 9 |
| 10 if env['PLATFORM'] == 'win32': | 10 if env['PLATFORM'] == 'win32': |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'glue', | 30 'glue', |
| 31 'port', | 31 'port', |
| 32 'base', | 32 'base', |
| 33 'base_gfx', | 33 'base_gfx', |
| 34 'breakpad_handler', | 34 'breakpad_handler', |
| 35 'googleurl', | 35 'googleurl', |
| 36 'net', | 36 'net', |
| 37 'sdch', | 37 'sdch', |
| 38 'skia', | 38 'skia', |
| 39 'gtest', | 39 'gtest', |
| 40 'bzip2', | 40 env['BZIP2_LIB'], |
| 41 'V8Bindings', | 41 'V8Bindings', |
| 42 'WebCore', | 42 'WebCore', |
| 43 'WTF', | 43 'WTF', |
| 44 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 44 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
| 45 'libjpeg', | 45 'libjpeg', |
| 46 'libpng', | 46 'libpng', |
| 47 'libxml', | 47 env['XML_LIB'], |
| 48 'libxslt', | 48 'libxslt', |
| 49 'modp_b64', | 49 'modp_b64', |
| 50 'zlib', | 50 'zlib', |
| 51 'sqlite', | 51 'sqlite', |
| 52 'v8', | 52 'v8', |
| 53 'JavaScriptCore_pcre', | 53 'JavaScriptCore_pcre', |
| 54 'default_plugin', | 54 'default_plugin', |
| 55 ], | 55 ], |
| 56 ) | 56 ) |
| 57 | 57 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 # Commented out until a regression is fixed and this file is restored. | 190 # Commented out until a regression is fixed and this file is restored. |
| 191 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', | 191 #'$WEBKIT_DIR/glue/stringimpl_unittest.cc', |
| 192 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc', | 192 '$WEBKIT_DIR/glue/webplugin_impl_unittest.cc', |
| 193 ]) | 193 ]) |
| 194 | 194 |
| 195 test_shell_tests = env.ChromeTestProgram('test_shell_tests', | 195 test_shell_tests = env.ChromeTestProgram('test_shell_tests', |
| 196 resources + test_files) | 196 resources + test_files) |
| 197 i = env.Install('$TARGET_ROOT', test_shell_tests) | 197 i = env.Install('$TARGET_ROOT', test_shell_tests) |
| 198 env.Alias('webkit', i) | 198 env.Alias('webkit', i) |
| 199 | 199 |
| OLD | NEW |