diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 16:43:50 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 16:43:50 +0000 |
commit | b1e75f52fbac55e600415cd428dc40a6a68fe90b (patch) | |
tree | 15097d97360c4081464c0fd00623d025d57ef7b5 /build/SConscript.main | |
parent | 5a43397bd2e2fdceecf359a8430db0983fd3dba8 (diff) | |
download | chromium_src-b1e75f52fbac55e600415cd428dc40a6a68fe90b.zip chromium_src-b1e75f52fbac55e600415cd428dc40a6a68fe90b.tar.gz chromium_src-b1e75f52fbac55e600415cd428dc40a6a68fe90b.tar.bz2 |
Rollback r4734 to see if it fixes the crashing I experience when starting chrome, as well as the 1MB regression in chrome.dll size.
Review URL: http://codereview.chromium.org/8226
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4781 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/SConscript.main')
-rw-r--r-- | build/SConscript.main | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index 5618396..8e10aab 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -237,7 +237,6 @@ windows_env = root_env.Clone() environment_list.append(windows_env) windows_env.Tool('target_platform_windows') windows_env.Tool('target_debug') -windows_env.Tool('component_targets_msvs') # Per target project support. windows_env.Tool('midl') windows_env.Replace( BUILD_TYPE = 'debug-windows', @@ -655,25 +654,11 @@ BuildComponents(environment_list) # will be populated. if root_env.Bit('solution'): solution_env = root_env.Clone(tools = ['visual_studio_solution']) - src_solution = solution_env.Solution( - '$MAIN_DIR/chrome_scons_src', [windows_env], + solution = solution_env.Solution( + '$MAIN_DIR/chrome_scons', [windows_env], exclude_pattern = '.*(Program Files|platformsdk_vista_6_0|cygwin).*', ) - - solution = windows_env.ComponentVSSolution('chrome_scons', - [ - 'all_libraries', - 'all_programs', - 'all_test_programs', - ], - projects = [windows_env.File('$MAIN_DIR/chrome_scons_src.vcproj')], - COMPONENT_VS_SOLUTION_DIR='$MAIN_DIR', - COMPONENT_VS_PROJECT_DIR='$MAIN_DIR/projects', - COMPONENT_VS_PROJECT_SCRIPT_PATH=( - 'cd $$(ProjectDir)/$VS_PROJECT_TO_MAIN_DIR && hammer.bat'), - ) - Default(None) # Delete all other default targets. - Default([src_solution, solution]) # Build just the solution. + Default(solution) # Build just the solution. # ------------------------------------------------------------------------- |