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

Unified Diff: net/net_sln.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/net_resources.scons ('k') | net/net_unittests.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net_sln.scons
===================================================================
--- net/net_sln.scons (revision 0)
+++ net/net_sln.scons (revision 0)
@@ -0,0 +1,74 @@
+# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+__doc__ = """
+Configuration for building base.sln.
+"""
+
+Import('env')
+
+env = env.Clone()
+
+env.Tool('MSVSNew')
+
+env.ChromeMSVSFolder('net dependencies',
+ name='dependencies',
+ entries = [
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$BZIP2_DIR/bzip2.vcproj',
+ '$MODP_B64_DIR/modp_b64.vcproj',
+ '$ZLIB_DIR/zlib.vcproj',
+ '$ICU38_DIR/build/icu.vcproj',
+ '$ICU38_DIR/build/icudt.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ '$GOOGLEURL_DIR/build/googleurl.vcproj',
+ '$SDCH_DIR/sdch.vcproj',
+ ],
+ guid='{A04F65DF-D422-4E8F-B918-29EBA839363E}')
+
+env.ChromeMSVSFolder('net tools',
+ name='tools',
+ entries = [
+ '$NET_DIR/build/dump_cache.vcproj',
+ #'build/stress_cache.vcproj',
+ '$NET_DIR/build/crash_cache.vcproj',
+ '$NET_DIR/build/tld_cleanup.vcproj',
+ ],
+ guid='{E7D78B1F-F7D3-47CB-BF51-3957C646B406}')
+
+
+solution = env.ChromeMSVSSolution('net.sln',
+ entries = [
+ 'net dependencies',
+ '$GOOGLEURL_DIR/build/googleurl.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$ICU38_DIR/build/icu.vcproj',
+ '$ICU38_DIR/build/icudt.vcproj',
+ '$NET_DIR/build/net.vcproj',
+ '$NET_DIR/build/net_unittests.vcproj',
+ '$NET_DIR/build/tld_cleanup.vcproj',
+ 'net tools',
+ '$ZLIB_DIR/zlib.vcproj',
+ '$BZIP2_DIR/bzip2.vcproj',
+ '$MODP_B64_DIR/modp_b64.vcproj',
+ '$NET_DIR/build/net_perftests.vcproj',
+ '$NET_DIR/build/crash_cache.vcproj',
+ '$NET_DIR/build/stress_cache.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ '$SDCH_DIR/sdch.vcproj',
+ '$NET_DIR/build/dump_cache.vcproj',
+
+ ],
+ variants = [
+ 'Debug|Win32',
+ 'Release|Win32',
+ ])
+
+env.AlwaysBuild(solution)
+
+i = env.Command('$CHROME_SRC_DIR/net/net.sln', solution,
+ Copy('$TARGET', '$SOURCE'))
+Alias('solutions', i)
Property changes on: net\net_sln.scons
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « net/net_resources.scons ('k') | net/net_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698