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

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

Issue 28195: Remove view_source_contents.cc from the porting list as this file was removed... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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('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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 'printing/print_settings.cc', 707 'printing/print_settings.cc',
708 'printing/print_view_manager.cc', 708 'printing/print_view_manager.cc',
709 'printing/printed_document.cc', 709 'printing/printed_document.cc',
710 'printing/printed_page.cc', 710 'printing/printed_page.cc',
711 'printing/printer_query.cc', 711 'printing/printer_query.cc',
712 'printing/win_printing_context.cc', 712 'printing/win_printing_context.cc',
713 'rlz/rlz.cc', 713 'rlz/rlz.cc',
714 'sandbox_policy.cc', 714 'sandbox_policy.cc',
715 'shell_integration.cc', 715 'shell_integration.cc',
716 'tab_contents/native_ui_contents.cc', 716 'tab_contents/native_ui_contents.cc',
717 'tab_contents/view_source_contents.cc',
718 'tab_contents/web_drop_target.cc', 717 'tab_contents/web_drop_target.cc',
719 'task_manager.cc', 718 'task_manager.cc',
720 'task_manager_resource_providers.cc', 719 'task_manager_resource_providers.cc',
721 'views/download_tab_view.cc', 720 'views/download_tab_view.cc',
722 'window_sizer.cc', 721 'window_sizer.cc',
723 ) 722 )
724 723
725 # Remove Windows-specific files on other platforms. 724 # Remove Windows-specific files on other platforms.
726 input_files.Remove( 725 input_files.Remove(
727 'back_forward_menu_model_win.cc', 726 'back_forward_menu_model_win.cc',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 876
878 xmldoc_tool_list = [ 877 xmldoc_tool_list = [
879 MSVSTool('VCCLCompilerTool', 878 MSVSTool('VCCLCompilerTool',
880 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), 879 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'),
881 ObjectFile='$(IntDir)/$(InputName)1.obj'), 880 ObjectFile='$(IntDir)/$(InputName)1.obj'),
882 ] 881 ]
883 882
884 for filename in xmldoc_files: 883 for filename in xmldoc_files:
885 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) 884 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list)
886 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) 885 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698