| 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 env_test.Prepend( | 9 env_test.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| 11 '$ICU38_DIR/public/common', | 11 '$ICU38_DIR/public/common', |
| 12 '$ICU38_DIR/public/i18n', | 12 '$ICU38_DIR/public/i18n', |
| 13 '$LIBXML_DIR/include', | 13 '$LIBXML_DIR/include', |
| 14 '$LIBXML_DIR/DerivedSources/include', | 14 '$LIBXML_DIR/DerivedSources/include', |
| 15 '$SKIA_DIR/include', | 15 '$SKIA_DIR/include', |
| 16 '$SKIA_DIR/include/corecg', | 16 '$SKIA_DIR/include/corecg', |
| 17 '$SKIA_DIR/platform', | 17 '$SKIA_DIR/platform', |
| 18 '#/..', | 18 '$CHROME_SRC_DIR', |
| 19 '$GTEST_DIR/include', | 19 '$GTEST_DIR/include', |
| 20 'third_party/wtl/include', | 20 'third_party/wtl/include', |
| 21 'tools/build/win', | 21 'tools/build/win', |
| 22 ], | 22 ], |
| 23 CPPDEFINES = [ | 23 CPPDEFINES = [ |
| 24 'LIBXML_STATIC', | 24 'LIBXML_STATIC', |
| 25 ], | 25 ], |
| 26 LIBS = [ | 26 LIBS = [ |
| 27 'libxml', | 27 'libxml', |
| 28 'googleurl', | 28 'googleurl', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 76 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
| 77 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 77 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
| 78 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 78 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 exe = env_test.ChromeTestProgram('automated_ui_tests', test_files + libs) | 81 exe = env_test.ChromeTestProgram('automated_ui_tests', test_files + libs) |
| 82 | 82 |
| 83 i = env_test.Install('$TARGET_ROOT', exe) | 83 i = env_test.Install('$TARGET_ROOT', exe) |
| 84 Alias('chrome', i) | 84 Alias('chrome', i) |
| 85 | 85 |
| OLD | NEW |