diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-17 02:25:22 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-17 02:25:22 +0000 |
commit | caeb7a0ca33ec99cd3dc68e95ca23ca4aa7e8068 (patch) | |
tree | 26d23c79d97efa44f69d1b447ae4618bf34fc609 /net/net_unittests.scons | |
parent | 75ddd63be217e7fed76f90578a8918ab75b3ead8 (diff) | |
download | chromium_src-caeb7a0ca33ec99cd3dc68e95ca23ca4aa7e8068.zip chromium_src-caeb7a0ca33ec99cd3dc68e95ca23ca4aa7e8068.tar.gz chromium_src-caeb7a0ca33ec99cd3dc68e95ca23ca4aa7e8068.tar.bz2 |
Generate all chrome .vcproj files:
* Path name translation (/ to \) of various MSVSTool attributes.
* Explicit keyword= arguments to MSVSProject. This will likely
go away eventually in favor of uniform behavior.
* Add a relative_path_substitutions array that can be used
to substitute in Visual Studio variable like $(OutDir).
* Add a local_directory_prefix that can be set to './' to only
affect files in the current directory.
* Additional Keyword ordering in Tool attributes to continue to
match the default order Visual Studio generates.
* Add a Derived() proxy class that can wrap a File node to tell
the .vcproj generation that we want the derived file, not its
source(s), in the file list.
* In the individual *.scons files, add the necessary files (mostly
.h files) to file lists, and update MSVSProject() calls with
the additional necessary information.
Result is identical .vcproj files modulo the following differences:
* Four locales .vcproj files (da, en-US, he and zh-TW) with
source file orders that don't match the other locale .vcproj
files have re-ordered file lists to match the rest.
* Cosmetic XML changes (white space, ending tags) in:
chrome/app/chrome_dll.vcproj
chrome/app/generated_resources.vcproj
net/build/net_resources.vcproj
* Removal or addition of ./ prefixes from various files that don't
match the other file specifications within their individual
.vcproj files:
chrome/installer/util/util.vcproj
net/build/net.vcproj
net/build/net_unittests.vcproj
* Add missing empty sections (<ToolFiles>, <References>, <Globals>)
for consistency with other .vcproj files:
chrome/tools/test/image_diff/image_diff.vcproj
third_party/libpng/libpng.vcproj
third_party/zlib/zlib.vcproj
* Add missing RootNameSpace attribute:
chrome/test/automation/automation.vcproj
testing/gtest.vcproj
* Use && instead of \r\n as a command separator, to sidestep
XML-generation problems:
chrome/app/chrome_exe.vcproj
* Remove unnecessary (?) duplicate files in the file list:
chrome/browser/views/browser_views.vcproj
(event_utils.cc and event_utils.h were duplicated)
Review URL: http://codereview.chromium.org/17603
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net_unittests.scons')
-rw-r--r-- | net/net_unittests.scons | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/net/net_unittests.scons b/net/net_unittests.scons index 8f91e18..4f35414 100644 --- a/net/net_unittests.scons +++ b/net/net_unittests.scons @@ -39,7 +39,8 @@ input_files = ChromeFileList([ # reindent too much when we remove the explicit MSVSFilter() calls # in favor of generating the hierarchy to reflect the file system. MSVSFilter('support', [ - 'build/precompiled_net$OBJSUFFIX', + # Built from build/precomiled_net.cc, net_lib.scons. + 'precompiled_net$OBJSUFFIX', 'build/precompiled_net.h', 'base/run_all_unittests.cc', ]), @@ -71,9 +72,6 @@ input_files = ChromeFileList([ 'http/http_util_unittest.cc', 'http/http_vary_data_unittest.cc', ]), - MSVSFilter('ftp', [ - 'ftp/ftp_auth_cache_unittest.cc', - ]), MSVSFilter('base', [ 'base/base64_unittest.cc', 'base/bzip2_filter_unittest.cc', @@ -102,6 +100,9 @@ input_files = ChromeFileList([ 'base/wininet_util_unittest.cc', 'base/x509_certificate_unittest.cc', ]), + MSVSFilter('ftp', [ + 'ftp/ftp_auth_cache_unittest.cc', + ]), MSVSFilter('url_request', [ 'url_request/url_request_unittest.cc', 'url_request/url_request_unittest.h', @@ -116,7 +117,7 @@ input_files = ChromeFileList([ if not env.Bit('windows'): input_files.Remove( 'base/wininet_util_unittest.cc', - 'build/precompiled_net$OBJSUFFIX', + 'precompiled_net$OBJSUFFIX', ) if env.Bit('linux'): @@ -143,6 +144,8 @@ net_unittests = env.ChromeTestProgram('net_unittests', input_files) p = env.ChromeMSVSProject('$NET_DIR/build/net_unittests.vcproj', dest='$CHROME_SRC_DIR/net/build/net_unittests.vcproj', + guid='{E99DA267-BE90-4F45-88A1-6919DB2C7567}', + keyword='Win32Proj', dependencies = [ '$BASE_DIR/build/base.vcproj', '$BZIP2_DIR/bzip2.vcproj', @@ -154,7 +157,6 @@ p = env.ChromeMSVSProject('$NET_DIR/build/net_unittests.vcproj', '$GOOGLEURL_DIR/build/googleurl.vcproj', '$SDCH_DIR/sdch.vcproj', ], - guid='{E99DA267-BE90-4F45-88A1-6919DB2C7567}', # TODO: restore when we can derive all info, # on all platforms, from the windows build targets. #buildtargets=net_unittests, |