| 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 '$CHROME_DIR/app/resources', | 11 '$CHROME_DIR/app/resources', |
| 12 '$ICU38_DIR/public/common', | 12 '$ICU38_DIR/public/common', |
| 13 '$ICU38_DIR/public/i18n', | 13 '$ICU38_DIR/public/i18n', |
| 14 '$SKIA_DIR/include', | 14 '$SKIA_DIR/include', |
| 15 '$SKIA_DIR/include/corecg', | 15 '$SKIA_DIR/include/corecg', |
| 16 '$SKIA_DIR/platform', | 16 '$SKIA_DIR/platform', |
| 17 '#/..', | 17 '$CHROME_SRC_DIR', |
| 18 '$GTEST_DIR/include', | 18 '$GTEST_DIR/include', |
| 19 'third_party/wtl/include', | 19 'third_party/wtl/include', |
| 20 '$LIBXSLT_DIR', | 20 '$LIBXSLT_DIR', |
| 21 '$LIBXML_DIR/include', | 21 '$LIBXML_DIR/include', |
| 22 '$LIBXML_DIR/DerivedSources/include', | 22 '$LIBXML_DIR/DerivedSources/include', |
| 23 'tools/build/win', | 23 'tools/build/win', |
| 24 ], | 24 ], |
| 25 CPPDEFINES = [ | 25 CPPDEFINES = [ |
| 26 'LIBXSLT_STATIC', | 26 'LIBXSLT_STATIC', |
| 27 'LIBXML_STATIC', | 27 'LIBXML_STATIC', |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'test/ui/history_uitest.cc', | 132 'test/ui/history_uitest.cc', |
| 133 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | 133 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', |
| 134 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', | 134 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', |
| 135 ] | 135 ] |
| 136 | 136 |
| 137 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs) | 137 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs) |
| 138 | 138 |
| 139 i = env_test.Install('$TARGET_ROOT', ui_tests) | 139 i = env_test.Install('$TARGET_ROOT', ui_tests) |
| 140 Alias('chrome', i) | 140 Alias('chrome', i) |
| 141 | 141 |
| OLD | NEW |