From 8322ac6958d1eed444e4f681d4f1ab6bfff4a3f9 Mon Sep 17 00:00:00 2001 From: "sgk@google.com" Date: Fri, 14 Nov 2008 02:26:30 +0000 Subject: Fixes for Visual Studio solution + project file generation: * Fix the grit tool so it works with Repository() directories (and tap gspencer to upstream the changes). * Fix the evaluation of $PRE_EVALUATE_DIRS, which was interfering with sucking up the source files for listing in the .vcproj files. * Set AlwaysBuild() on the project files so they're always evaluated for up-to-dateness when 'all_solutions' is the target. Review URL: http://codereview.chromium.org/10725 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5440 0039d316-1c4b-4281-b951-d872f2087c98 --- site_scons/site_tools/component_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'site_scons/site_tools/component_setup.py') diff --git a/site_scons/site_tools/component_setup.py b/site_scons/site_tools/component_setup.py index e3c4574..a9ec5c0 100644 --- a/site_scons/site_tools/component_setup.py +++ b/site_scons/site_tools/component_setup.py @@ -71,7 +71,7 @@ def PreEvaluateVariables(env): env: Environment for the current build mode. """ # Convert directory variables to strings - for var in env.SubstList2('PRE_EVALUATE_DIRS'): + for var in env.SubstList2('$PRE_EVALUATE_DIRS'): env[var] = str(env.Dir('$' + var)) -- cgit v1.1