summaryrefslogtreecommitdiffstats
path: root/base/debug_message.scons
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-10 22:22:33 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-10 22:22:33 +0000
commita7ad74b14339ca330c491631ba27e0aaffbe6429 (patch)
tree7503f78fedc993bb12cb5ef93c7051485691ebb5 /base/debug_message.scons
parentc2d469d62ff5a8ee42b5c5212488298a182ee30c (diff)
downloadchromium_src-a7ad74b14339ca330c491631ba27e0aaffbe6429.zip
chromium_src-a7ad74b14339ca330c491631ba27e0aaffbe6429.tar.gz
chromium_src-a7ad74b14339ca330c491631ba27e0aaffbe6429.tar.bz2
Updates to Visual Studio project generation to accomodate
recent changes and get rid of cut-and-paste: * Add generation of the new net_resource.vcproj file. * Accomodate the net\net.vsprops file. * New base.vcproj dependency in activex_shim_dll.vcproj. * New tld_cleanup.vcproj dependency in net.vcproj. * New ondemand_updates.vcproj dependencies in gcapi_{dll,lib}.vcproj. * Re-order dump_cache.vcproj dependencies to match new checked-in solutions. * New input file directory layout in zlib (minizip folder) and testing\gtest (hierarchy). * Use a new dest= argument to ChromeMSVSSolution() and ChromeMSVSProject() to get rid of cut-and-pste installation code, and provide a central point for controlling when/whether we want to generate the files only under the build directory, or drop them in place for checking in. * Comment out an unnecessarily verbose warning if the buildtarget is executed with an action that we don't map to specific Visual Studio settings. Sometimes this is normal and okay, but the warning should get restored at some point when we work out the precise conditions under which it makes sense. Review URL: http://codereview.chromium.org/17602 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug_message.scons')
-rw-r--r--base/debug_message.scons7
1 files changed, 1 insertions, 6 deletions
diff --git a/base/debug_message.scons b/base/debug_message.scons
index 5ae6f24..55f981f 100644
--- a/base/debug_message.scons
+++ b/base/debug_message.scons
@@ -32,6 +32,7 @@ env.ChromeMSVSProject('$BASE_DIR/build/debug_message.vcproj',
guid='{0E5474AC-5996-4B13-87C0-4AE931EE0815}')
p = env.ChromeMSVSProject('build/debug_message.vcproj',
+ dest='$CHROME_SRC_DIR/base/build/debug_message.vcproj',
guid='{0E5474AC-5996-4B13-87C0-4AE931EE0815}',
files=input_files,
root_namespace='DebugMessage',
@@ -69,9 +70,3 @@ p.AddConfig('Release|Win32',
'$(SolutionDir)../build/common.vsprops',
'$(SolutionDir)../build/release.vsprops',
])
-
-env.AlwaysBuild(p)
-
-i = env.Command('$CHROME_SRC_DIR/base/build/debug_message.vcproj', p,
- Copy('$TARGET', '$SOURCE'))
-Alias('msvs', i)