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

Side by Side Diff: chrome/browser/browser.scons

Issue 18530: First step of porting VisitedLinkMaster to POSIX: (Closed)
Patch Set: Fixes for Brett's comments. Created 11 years, 11 months 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
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('env') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.SConscript([ 9 env.SConscript([
10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', 10 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons',
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 'tab_contents/web_contents_view.cc', 819 'tab_contents/web_contents_view.cc',
820 'tab_contents/web_drag_source.cc', 820 'tab_contents/web_drag_source.cc',
821 'tab_contents/web_drop_target.cc', 821 'tab_contents/web_drop_target.cc',
822 'tabs/tab_strip_model.cc', 822 'tabs/tab_strip_model.cc',
823 'tabs/tab_strip_model_order_controller.cc', 823 'tabs/tab_strip_model_order_controller.cc',
824 'task_manager.cc', 824 'task_manager.cc',
825 'task_manager_resource_providers.cc', 825 'task_manager_resource_providers.cc',
826 'toolbar_model.cc', 826 'toolbar_model.cc',
827 'user_data_manager.cc', 827 'user_data_manager.cc',
828 'views/download_tab_view.cc', 828 'views/download_tab_view.cc',
829 'visitedlink_master.cc',
830 'web_app.cc', 829 'web_app.cc',
831 'web_app_icon_manager.cc', 830 'web_app_icon_manager.cc',
832 'web_app_launcher.cc', 831 'web_app_launcher.cc',
833 'window_sizer.cc', 832 'window_sizer.cc',
834 ) 833 )
835 834
836 input_files.Remove( 835 input_files.Remove(
837 'browser_main_win.cc', 836 'browser_main_win.cc',
838 'importer/firefox_profile_lock_win.cc', 837 'importer/firefox_profile_lock_win.cc',
839 'password_manager/password_form_manager_win.cc', 838 'password_manager/password_form_manager_win.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 948
950 xmldoc_tool_list = [ 949 xmldoc_tool_list = [
951 MSVSTool('VCCLCompilerTool', 950 MSVSTool('VCCLCompilerTool',
952 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 951 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
953 ObjectFile='$(IntDir)/$(InputName)1.obj'), 952 ObjectFile='$(IntDir)/$(InputName)1.obj'),
954 ] 953 ]
955 954
956 for filename in xmldoc_files: 955 for filename in xmldoc_files:
957 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 956 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
958 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 957 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698