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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 'google_update.cc', | 641 'google_update.cc', |
642 'google_update.h', | 642 'google_update.h', |
643 'modal_html_dialog_delegate.cc', | 643 'modal_html_dialog_delegate.cc', |
644 'modal_html_dialog_delegate.h', | 644 'modal_html_dialog_delegate.h', |
645 'page_state.cc', | 645 'page_state.cc', |
646 'page_state.h', | 646 'page_state.h', |
647 'plugin_installer.cc', | 647 'plugin_installer.cc', |
648 'plugin_installer.h', | 648 'plugin_installer.h', |
649 'toolbar_model.cc', | 649 'toolbar_model.cc', |
650 'toolbar_model.h', | 650 'toolbar_model.h', |
| 651 'worker_host/worker_process_host.cc', |
| 652 'worker_host/worker_process_host.h', |
| 653 'worker_host/worker_service.cc', |
| 654 'worker_host/worker_service.h', |
651 ]) | 655 ]) |
652 | 656 |
653 if not env.Bit('windows'): | 657 if not env.Bit('windows'): |
654 # TODO: Port these. | 658 # TODO: Port these. |
655 input_files.Remove( | 659 input_files.Remove( |
656 'app_modal_dialog_queue.cc', | 660 'app_modal_dialog_queue.cc', |
657 'autocomplete/autocomplete_accessibility.cc', | 661 'autocomplete/autocomplete_accessibility.cc', |
658 'autocomplete/autocomplete_popup_view_win.cc', | 662 'autocomplete/autocomplete_popup_view_win.cc', |
659 'autocomplete/edit_drop_target.cc', | 663 'autocomplete/edit_drop_target.cc', |
660 'automation/ui_controls.cc', | 664 'automation/ui_controls.cc', |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 | 859 |
856 xmldoc_tool_list = [ | 860 xmldoc_tool_list = [ |
857 MSVSTool('VCCLCompilerTool', | 861 MSVSTool('VCCLCompilerTool', |
858 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 862 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
859 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 863 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
860 ] | 864 ] |
861 | 865 |
862 for filename in xmldoc_files: | 866 for filename in xmldoc_files: |
863 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 867 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
864 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 868 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |