| 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 'LIBXSLT_STATIC', | 14 'LIBXSLT_STATIC', |
| 15 'LIBXML_STATIC', | 15 'LIBXML_STATIC', |
| 16 ], | 16 ], |
| 17 CPPPATH = [ | 17 CPPPATH = [ |
| 18 '$GTEST_DIR/include', | 18 '$GTEST_DIR/include', |
| 19 '$GTEST_DIR', | 19 '$GTEST_DIR', |
| 20 '$SKIA_DIR/include', | 20 '$SKIA_DIR/include', |
| 21 '$SKIA_DIR/include/corecg', | 21 '$SKIA_DIR/include/corecg', |
| 22 '$SKIA_DIR/platform', | 22 '$SKIA_DIR/platform', |
| 23 '#/..', | 23 '$CHROME_SRC_DIR', |
| 24 '$LIBXSLT_DIR', | 24 '$LIBXSLT_DIR', |
| 25 '$LIBXML_DIR/includ', | 25 '$LIBXML_DIR/includ', |
| 26 ], | 26 ], |
| 27 LIBS = [ | 27 LIBS = [ |
| 28 'googleurl', | 28 'googleurl', |
| 29 'security_tests', | 29 'security_tests', |
| 30 'skia', | 30 'skia', |
| 31 'libpng', | 31 'libpng', |
| 32 'gtest', | 32 'gtest', |
| 33 'base_gfx', | 33 'base_gfx', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | 75 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', |
| 76 'plugin_test.cpp', | 76 'plugin_test.cpp', |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 | 79 |
| 80 exe = env_test.ChromeTestProgram('plugin_tests', input_files) | 80 exe = env_test.ChromeTestProgram('plugin_tests', input_files) |
| 81 i = env_test.Install('$TARGET_ROOT', exe) | 81 i = env_test.Install('$TARGET_ROOT', exe) |
| 82 | 82 |
| 83 env_test.Alias('chrome', i) | 83 env_test.Alias('chrome', i) |
| 84 | 84 |
| OLD | NEW |