Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Side by Side Diff: net/net_unittests.scons

Issue 14472: Initial generation of native Visual Studio solution files... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/net_sln.scons ('k') | net/stress_cache.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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}')
OLDNEW
« no previous file with comments | « net/net_sln.scons ('k') | net/stress_cache.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698