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

Side by Side Diff: build/SConscript.main

Issue 10725: Fixes for Visual Studio solution + project file generation:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | site_scons/site_tools/component_setup.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 import shutil 6 import shutil
7 import sys 7 import sys
8 8
9 9
10 p = ARGUMENTS.get('PROGRESS') 10 p = ARGUMENTS.get('PROGRESS')
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 '$CHROME_SRC_DIR/testing', 768 '$CHROME_SRC_DIR/testing',
769 '$CHROME_SRC_DIR/third_party', 769 '$CHROME_SRC_DIR/third_party',
770 '$CHROME_SRC_DIR/tools', 770 '$CHROME_SRC_DIR/tools',
771 '$CHROME_SRC_DIR/v8', 771 '$CHROME_SRC_DIR/v8',
772 '$CHROME_SRC_DIR/webkit', 772 '$CHROME_SRC_DIR/webkit',
773 ], 773 ],
774 COMPONENT_VS_SOURCE_FOLDERS = [ 774 COMPONENT_VS_SOURCE_FOLDERS = [
775 (None, '$DESTINATION_ROOT'), 775 (None, '$DESTINATION_ROOT'),
776 ('src', '$CHROME_SRC_DIR'), 776 ('src', '$CHROME_SRC_DIR'),
777 ], 777 ],
778 COMPONENT_VS_PROJECT_DIR = '$MAIN_DIR',
778 ) 779 )
779 780
781 # Always try to (re)build the project files when requested.
782 vs_env.AlwaysBuild(p)
783
780 vs_env.ComponentVSSolution( 784 vs_env.ComponentVSSolution(
781 'chrome_solution', 785 'chrome_solution',
782 [ 786 [
783 'all_libraries', 787 'all_libraries',
784 'all_languages', 788 'all_languages',
785 'all_programs', 789 'all_programs',
786 'all_test_programs', 790 'all_test_programs',
787 ], projects = [p], 791 ], projects = [p],
788 COMPONENT_VS_PROJECT_SCRIPT_PATH=( 792 COMPONENT_VS_PROJECT_SCRIPT_PATH=(
789 'cd $$(ProjectDir)/$VS_PROJECT_TO_MAIN_DIR && hammer.bat'), 793 'cd $$(ProjectDir)/$VS_PROJECT_TO_MAIN_DIR && hammer.bat'),
790 ) 794 )
791 795
792 # ------------------------------------------------------------------------- 796 # -------------------------------------------------------------------------
OLDNEW
« no previous file with comments | « no previous file | site_scons/site_tools/component_setup.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698