| 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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 715 'tab_contents/render_view_context_menu.cc', |
| 716 'tab_contents/view_source_contents.cc', | 716 'tab_contents/view_source_contents.cc', |
| 717 'tab_contents/web_drag_source.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 Loading... |
| 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) |
| OLD | NEW |