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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
656 'page_state.h', | 656 'page_state.h', |
657 'plugin_installer.cc', | 657 'plugin_installer.cc', |
658 'plugin_installer.h', | 658 'plugin_installer.h', |
659 'toolbar_model.cc', | 659 'toolbar_model.cc', |
660 'toolbar_model.h', | 660 'toolbar_model.h', |
661 ]) | 661 ]) |
662 | 662 |
663 if not env.Bit('windows'): | 663 if not env.Bit('windows'): |
664 # TODO: Port these. | 664 # TODO: Port these. |
665 input_files.Remove( | 665 input_files.Remove( |
666 'autofill_manager.cc', | |
667 'alternate_nav_url_fetcher.cc', | 666 'alternate_nav_url_fetcher.cc', |
668 'app_modal_dialog_queue.cc', | 667 'app_modal_dialog_queue.cc', |
669 'autocomplete/autocomplete.cc', | 668 'autocomplete/autocomplete.cc', |
670 'autocomplete/autocomplete_accessibility.cc', | 669 'autocomplete/autocomplete_accessibility.cc', |
671 'autocomplete/autocomplete_edit.cc', | 670 'autocomplete/autocomplete_edit.cc', |
672 'autocomplete/autocomplete_popup.cc', | 671 'autocomplete/autocomplete_popup.cc', |
673 'autocomplete/edit_drop_target.cc', | 672 'autocomplete/edit_drop_target.cc', |
674 'autocomplete/history_url_provider.cc', | 673 'autocomplete/history_url_provider.cc', |
675 'autocomplete/search_provider.cc', | 674 'autocomplete/search_provider.cc', |
676 'automation/automation_provider.cc', | 675 'automation/automation_provider.cc', |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 | 935 |
937 xmldoc_tool_list = [ | 936 xmldoc_tool_list = [ |
938 MSVSTool('VCCLCompilerTool', | 937 MSVSTool('VCCLCompilerTool', |
939 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 938 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
940 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 939 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
941 ] | 940 ] |
942 | 941 |
943 for filename in xmldoc_files: | 942 for filename in xmldoc_files: |
944 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 943 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
945 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 944 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |