| 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_test') | 5 Import('env_test') |
| 6 | 6 |
| 7 env_test = env_test.Clone() | 7 env_test = env_test.Clone() |
| 8 | 8 |
| 9 | 9 |
| 10 env_test.Prepend( | 10 env_test.Prepend( |
| 11 CPPDEFINES = [ | 11 CPPDEFINES = [ |
| 12 'RELIABILITY_TEST', # seems to be unused | 12 'RELIABILITY_TEST', # seems to be unused |
| 13 'UI_TEST', | 13 'UI_TEST', |
| 14 'UNIT_TEST', | 14 'UNIT_TEST', |
| 15 ], | 15 ], |
| 16 CPPPATH = [ | 16 CPPPATH = [ |
| 17 '$GTEST_DIR/include', | 17 '$GTEST_DIR/include', |
| 18 '$GTEST_DIR', | 18 '$GTEST_DIR', |
| 19 '$SKIA_DIR/include', | 19 '$SKIA_DIR/include', |
| 20 '$SKIA_DIR/include/corecg', | 20 '$SKIA_DIR/include/corecg', |
| 21 '$SKIA_DIR/platform', | 21 '$SKIA_DIR/platform', |
| 22 '#/..', | 22 '$CHROME_SRC_DIR', |
| 23 ], | 23 ], |
| 24 LIBS = [ | 24 LIBS = [ |
| 25 'googleurl', | 25 'googleurl', |
| 26 'skia', | 26 'skia', |
| 27 'libpng', | 27 'libpng', |
| 28 'gtest', | 28 'gtest', |
| 29 'base_gfx', | 29 'base_gfx', |
| 30 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 30 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
| 31 'common', | 31 'common', |
| 32 'zlib', | 32 'zlib', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | 69 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', |
| 70 'page_load_test.cc', | 70 'page_load_test.cc', |
| 71 'run_all_unittests.cc', | 71 'run_all_unittests.cc', |
| 72 ] | 72 ] |
| 73 | 73 |
| 74 exe = env_test.ChromeTestProgram('reliability_tests', input_files) | 74 exe = env_test.ChromeTestProgram('reliability_tests', input_files) |
| 75 i = env_test.Install('$TARGET_ROOT', exe) | 75 i = env_test.Install('$TARGET_ROOT', exe) |
| 76 | 76 |
| 77 env_test.Alias('chrome', i) | 77 env_test.Alias('chrome', i) |
| 78 | 78 |
| OLD | NEW |