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

Unified Diff: sandbox/sandbox_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 | « sandbox/sandbox.scons ('k') | sdch/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/sandbox_sln.scons
===================================================================
--- sandbox/sandbox_sln.scons (revision 0)
+++ sandbox/sandbox_sln.scons (revision 0)
@@ -0,0 +1,142 @@
+# 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.ChromeMSVSProject('$SANDBOX_DIR/sandbox_poc/sandbox_poc.vcproj',
+ dependencies = [
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ '$SANDBOX_DIR/sandbox_poc/pocdll/pocdll.vcproj',
+ ],
+ guid='{CF757839-F2A1-417C-8F25-DCAE480020F1}')
+
+env.ChromeMSVSProject('$SANDBOX_DIR/sandbox_poc/pocdll/pocdll.vcproj',
+ guid='{AE5BFB87-850E-4454-B01D-58E7D8BAC224}')
+
+env.ChromeMSVSProject('$SANDBOX_DIR/src/sandbox.vcproj',
+ guid='{881F6A97-D539-4C48-B401-DF04385B2343}')
+
+env.ChromeMSVSProject(('$SANDBOX_DIR/tests/integration_tests/' +
+ 'sbox_integration_tests.vcproj'),
+ dependencies = [
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ ],
+ guid='{542D4B3B-98D4-4233-B68D-0103891508C6}')
+
+env.ChromeMSVSProject('$SANDBOX_DIR/tests/unit_tests/sbox_unittests.vcproj',
+ dependencies = [
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ ],
+ guid='{883553BE-2A9D-418C-A121-61FE1DFBC562}')
+
+env.ChromeMSVSProject(('$SANDBOX_DIR/tests/validation_tests/' +
+ 'sbox_validation_tests.vcproj'),
+ dependencies = [
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ ],
+ guid='{B9CC7B0D-145A-49C2-B887-84E43CFA0F27}')
+
+env.ChromeMSVSProject('$SANDBOX_DIR/tools/finder/finder.vcproj',
+ dependencies = [
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ ],
+ guid='{ACDC2E06-0366-41A4-A646-C37E130A605D}')
+
+env.ChromeMSVSProject('$SANDBOX_DIR/tools/launcher/launcher.vcproj',
+ dependencies = [
+ '$BASE_DIR/build/base.vcproj',
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ ],
+ guid='{386FA217-FBC2-4461-882D-CDAD221ED800}')
+
+
+dependencies = env.ChromeMSVSFolder('sandbox_dependencies',
+ name='dependencies',
+ entries = [
+ '$BASE_DIR/build/debug_message.vcproj',
+ '$BASE_DIR/build/base.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ ],
+ guid='{BCE54389-D18D-48B9-977E-9D1998200F63}')
+
+proof_of_concept = env.ChromeMSVSFolder('proof_of_concept',
+ entries = [
+ ('$SANDBOX_DIR/sandbox_poc/pocdll/' +
+ 'pocdll.vcproj'),
+ ('$SANDBOX_DIR/sandbox_poc/' +
+ 'sandbox_poc.vcproj'),
+ ],
+ guid='{B607BE7B-3555-422C-A40B-28E73C0B5E24}')
+
+tests = env.ChromeMSVSFolder('tests',
+ entries = [
+ ('$SANDBOX_DIR/tests/integration_tests/' +
+ 'sbox_integration_tests.vcproj'),
+ ('$SANDBOX_DIR/tests/unit_tests/' +
+ 'sbox_unittests.vcproj'),
+ ('$SANDBOX_DIR/tests/validation_tests/' +
+ 'sbox_validation_tests.vcproj'),
+ ],
+ guid='{F7A3B82E-B8B4-4FDF-BC8E-FEC9398F57ED}')
+
+tools = env.ChromeMSVSFolder('sandbox_tools',
+ name='tools',
+ entries = [
+ '$SANDBOX_DIR/tools/launcher/launcher.vcproj',
+ '$SANDBOX_DIR/tools/finder/finder.vcproj',
+ ],
+ guid='{7F36EE20-5016-4051-B0D7-42824CDA0291}')
+
+
+solution = env.ChromeMSVSSolution('$SANDBOX_DIR/sandbox.sln',
+ entries = [
+ '$SANDBOX_DIR/src/sandbox.vcproj',
+ ('$SANDBOX_DIR/tests/unit_tests/' +
+ 'sbox_unittests.vcproj'),
+ tests,
+ ('$SANDBOX_DIR/tests/validation_tests/' +
+ 'sbox_validation_tests.vcproj'),
+ dependencies,
+ '$BASE_DIR/build/debug_message.vcproj',
+ tools,
+ proof_of_concept,
+ '$SANDBOX_DIR/sandbox_poc/sandbox_poc.vcproj',
+ '$SANDBOX_DIR/sandbox_poc/pocdll/pocdll.vcproj',
+ '$SANDBOX_DIR/tools/finder/finder.vcproj',
+ '$SANDBOX_DIR/tools/launcher/launcher.vcproj',
+ ('$SANDBOX_DIR/tests/integration_tests/' +
+ 'sbox_integration_tests.vcproj'),
+ '$BASE_DIR/build/base.vcproj',
+ '$TESTING_DIR/gtest.vcproj',
+ ],
+ variants = [
+ 'Debug|Win32',
+ 'Release|Win32',
+ ],
+ websiteProperties=False)
+
+env.AlwaysBuild(solution)
+
+i = env.Command('$CHROME_SRC_DIR/sandbox/sandbox.sln', solution,
+ Copy('$TARGET', '$SOURCE'))
+Alias('solutions', i)
Property changes on: sandbox\sandbox_sln.scons
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « sandbox/sandbox.scons ('k') | sdch/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698