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') | 5 Import('env') |
6 | 6 |
7 | 7 |
8 env = env.Clone() | 8 env = env.Clone() |
9 | 9 |
10 env.ApplySConscript([ | 10 env.ApplySConscript([ |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ) | 58 ) |
59 | 59 |
60 input_files = [ | 60 input_files = [ |
61 '$CHROME_DIR/installer/setup/setup_constants$OBJSUFFIX', | 61 '$CHROME_DIR/installer/setup/setup_constants$OBJSUFFIX', |
62 '$CHROME_DIR/installer/util/run_all_unittests$OBJSUFFIX', | 62 '$CHROME_DIR/installer/util/run_all_unittests$OBJSUFFIX', |
63 'chrome_mini_installer.cc', | 63 'chrome_mini_installer.cc', |
64 'mini_installer_test_constants.cc', | 64 'mini_installer_test_constants.cc', |
65 'test.cc', | 65 'test.cc', |
66 ] | 66 ] |
67 | 67 |
68 env.ChromeTestProgram('mini_installer_test', input_files) | 68 # TODO(port): |
| 69 if env.Bit('windows'): |
| 70 env.ChromeTestProgram('mini_installer_test', input_files) |
| 71 |
| 72 env.ChromeMSVSProject('$CHROME_DIR/test/mini_installer_test/mini_installer_test.
vcproj', |
| 73 dependencies = [ |
| 74 '$BASE_DIR/build/base.vcproj', |
| 75 '$ICU38_DIR/build/icu.vcproj', |
| 76 '$TESTING_DIR/gtest.vcproj', |
| 77 '$CHROME_DIR/installer/util/util.vcproj', |
| 78 ], |
| 79 guid='{4B6E199A-034A-49BD-AB93-458DD37E45B1}') |
OLD | NEW |