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', 'env') | 5 Import('env', 'env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 input_files = [ | 77 input_files = [ |
78 'ipc_fuzzing_tests.cc', | 78 'ipc_fuzzing_tests.cc', |
79 'ipc_tests.cc', | 79 'ipc_tests.cc', |
80 | 80 |
81 '$BASE_DIR/perftimer$OBJSUFFIX', | 81 '$BASE_DIR/perftimer$OBJSUFFIX', |
82 ] | 82 ] |
83 | 83 |
84 ipc_tests = env.ChromeTestProgram('ipc_tests', input_files) | 84 ipc_tests = env.ChromeTestProgram('ipc_tests', input_files) |
85 i = env.Install('$TARGET_ROOT', ipc_tests) | 85 i = env.Install('$TARGET_ROOT', ipc_tests) |
86 Alias('chrome', i) | 86 Alias('chrome', i) |
| 87 |
| 88 env.ChromeMSVSProject('$CHROME_DIR/common/ipc_tests.vcproj', |
| 89 dependencies = [ |
| 90 '$BASE_DIR/build/base.vcproj', |
| 91 '$CHROME_DIR/common/common.vcproj', |
| 92 '$ICU38_DIR/build/icu.vcproj', |
| 93 '$TESTING_DIR/gtest.vcproj', |
| 94 ], |
| 95 guid='{B92AE829-E1CD-4781-824A-DCB1603A1672}') |
OLD | NEW |