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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 'printing/print_settings.cc', | 705 'printing/print_settings.cc', |
706 'printing/print_view_manager.cc', | 706 'printing/print_view_manager.cc', |
707 'printing/printed_document.cc', | 707 'printing/printed_document.cc', |
708 'printing/printed_page.cc', | 708 'printing/printed_page.cc', |
709 'printing/printer_query.cc', | 709 'printing/printer_query.cc', |
710 'printing/win_printing_context.cc', | 710 'printing/win_printing_context.cc', |
711 'rlz/rlz.cc', | 711 'rlz/rlz.cc', |
712 'sandbox_policy.cc', | 712 'sandbox_policy.cc', |
713 'shell_integration.cc', | 713 'shell_integration.cc', |
714 'tab_contents/native_ui_contents.cc', | 714 'tab_contents/native_ui_contents.cc', |
715 'tab_contents/render_view_context_menu.cc', | |
716 'tab_contents/view_source_contents.cc', | 715 'tab_contents/view_source_contents.cc', |
717 'tab_contents/web_drop_target.cc', | 716 'tab_contents/web_drop_target.cc', |
718 'task_manager.cc', | 717 'task_manager.cc', |
719 'task_manager_resource_providers.cc', | 718 'task_manager_resource_providers.cc', |
720 'views/download_tab_view.cc', | 719 'views/download_tab_view.cc', |
721 'window_sizer.cc', | 720 'window_sizer.cc', |
722 ) | 721 ) |
723 | 722 |
724 # Remove Windows-specific files on other platforms. | 723 # Remove Windows-specific files on other platforms. |
725 input_files.Remove( | 724 input_files.Remove( |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 | 875 |
877 xmldoc_tool_list = [ | 876 xmldoc_tool_list = [ |
878 MSVSTool('VCCLCompilerTool', | 877 MSVSTool('VCCLCompilerTool', |
879 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 878 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
880 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 879 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
881 ] | 880 ] |
882 | 881 |
883 for filename in xmldoc_files: | 882 for filename in xmldoc_files: |
884 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 883 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
885 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 884 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |