| 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 'UI_TEST', | 12 'UI_TEST', |
| 13 'UNIT_TEST', | 13 'UNIT_TEST', |
| 14 ], | 14 ], |
| 15 CPPPATH = [ | 15 CPPPATH = [ |
| 16 '$GTEST_DIR/include', | 16 '$GTEST_DIR/include', |
| 17 '$GTEST_DIR', | 17 '$GTEST_DIR', |
| 18 '$SKIA_DIR/include', | 18 '$SKIA_DIR/include', |
| 19 '$SKIA_DIR/include/corecg', | 19 '$SKIA_DIR/include/corecg', |
| 20 '$SKIA_DIR/platform', | 20 '$SKIA_DIR/platform', |
| 21 '#/..', | 21 '$CHROME_SRC_DIR', |
| 22 ], | 22 ], |
| 23 LIBS = [ | 23 LIBS = [ |
| 24 'googleurl', | 24 'googleurl', |
| 25 'skia', | 25 'skia', |
| 26 'libpng', | 26 'libpng', |
| 27 'gtest', | 27 'gtest', |
| 28 'base_gfx', | 28 'base_gfx', |
| 29 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 29 env_test['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
| 30 'common', | 30 'common', |
| 31 'zlib', | 31 'zlib', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
| 72 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | 72 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', |
| 73 'page_cycler_test.cc', | 73 'page_cycler_test.cc', |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 exe = env_test.ChromeTestProgram('page_cycler_tests', input_files) | 76 exe = env_test.ChromeTestProgram('page_cycler_tests', input_files) |
| 77 i = env_test.Install('$TARGET_ROOT', exe) | 77 i = env_test.Install('$TARGET_ROOT', exe) |
| 78 | 78 |
| 79 env_test.Alias('chrome', i) | 79 env_test.Alias('chrome', i) |
| 80 | 80 |
| OLD | NEW |