OLD | NEW |
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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 # TODO: Port these. | 661 # TODO: Port these. |
662 input_files.Remove( | 662 input_files.Remove( |
663 'app_modal_dialog_queue.cc', | 663 'app_modal_dialog_queue.cc', |
664 'autocomplete/autocomplete_accessibility.cc', | 664 'autocomplete/autocomplete_accessibility.cc', |
665 'autocomplete/autocomplete_edit.cc', | 665 'autocomplete/autocomplete_edit.cc', |
666 'autocomplete/autocomplete_popup.cc', | 666 'autocomplete/autocomplete_popup.cc', |
667 'autocomplete/edit_drop_target.cc', | 667 'autocomplete/edit_drop_target.cc', |
668 'automation/ui_controls.cc', | 668 'automation/ui_controls.cc', |
669 'browser_accessibility.cc', | 669 'browser_accessibility.cc', |
670 'browser_accessibility_manager.cc', | 670 'browser_accessibility_manager.cc', |
671 'chrome_plugin_host.cc', | |
672 'dock_info.cc', | 671 'dock_info.cc', |
673 'dom_ui/html_dialog_contents.cc', | 672 'dom_ui/html_dialog_contents.cc', |
674 'download/download_exe.cc', | 673 'download/download_exe.cc', |
675 'download/download_util.cc', | 674 'download/download_util.cc', |
676 'drag_utils.cc', | 675 'drag_utils.cc', |
677 'encoding_menu_controller_delegate.cc', | 676 'encoding_menu_controller_delegate.cc', |
678 'external_protocol_handler.cc', | 677 'external_protocol_handler.cc', |
679 'external_tab_container.cc', | 678 'external_tab_container.cc', |
680 'first_run.cc', | 679 'first_run.cc', |
681 'hang_monitor/hung_plugin_action.cc', | 680 'hang_monitor/hung_plugin_action.cc', |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 | 877 |
879 xmldoc_tool_list = [ | 878 xmldoc_tool_list = [ |
880 MSVSTool('VCCLCompilerTool', | 879 MSVSTool('VCCLCompilerTool', |
881 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 880 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
882 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 881 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
883 ] | 882 ] |
884 | 883 |
885 for filename in xmldoc_files: | 884 for filename in xmldoc_files: |
886 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 885 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
887 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 886 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |