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 __doc__ = """ | 5 __doc__ = """ |
6 Configuration for building the net_unittests{,.exe} executable. | 6 Configuration for building the net_unittests{,.exe} executable. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 # TODO(port): | 109 # TODO(port): |
110 to_be_ported_files = [ | 110 to_be_ported_files = [ |
111 'base/x509_certificate_unittest.cc', | 111 'base/x509_certificate_unittest.cc', |
112 'base/sdch_filter_unittest.cc', | 112 'base/sdch_filter_unittest.cc', |
113 'base/ssl_config_service_unittest.cc', | 113 'base/ssl_config_service_unittest.cc', |
114 'url_request/url_request_unittest.cc', | 114 'url_request/url_request_unittest.cc', |
115 ] | 115 ] |
116 input_files = list(set(input_files) - set(to_be_ported_files)) | 116 input_files = list(set(input_files) - set(to_be_ported_files)) |
117 | 117 |
118 env.ChromeTestProgram('net_unittests', input_files) | 118 env.ChromeTestProgram('net_unittests', input_files) |
| 119 |
| 120 env.ChromeMSVSProject('$NET_DIR/build/net_unittests.vcproj', |
| 121 dependencies = [ |
| 122 '$BASE_DIR/build/base.vcproj', |
| 123 '$BZIP2_DIR/bzip2.vcproj', |
| 124 '$NET_DIR/build/net.vcproj', |
| 125 '$MODP_B64_DIR/modp_b64.vcproj', |
| 126 '$ZLIB_DIR/zlib.vcproj', |
| 127 '$ICU38_DIR/build/icu.vcproj', |
| 128 '$TESTING_DIR/gtest.vcproj', |
| 129 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 130 '$SDCH_DIR/sdch.vcproj', |
| 131 ], |
| 132 guid='{E99DA267-BE90-4F45-88A1-6919DB2C7567}') |
OLD | NEW |