| 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 'renderer_host/backing_store_posix.cc', | 789 'renderer_host/backing_store_posix.cc', |
| 790 ) | 790 ) |
| 791 | 791 |
| 792 | 792 |
| 793 if env.Bit('linux'): | 793 if env.Bit('linux'): |
| 794 input_files.Extend([ | 794 input_files.Extend([ |
| 795 'gtk/browser_main_gtk.cc', | 795 'gtk/browser_main_gtk.cc', |
| 796 'gtk/browser_toolbar_view_gtk.cc', | 796 'gtk/browser_toolbar_view_gtk.cc', |
| 797 'gtk/browser_window_factory_gtk.cc', | 797 'gtk/browser_window_factory_gtk.cc', |
| 798 'gtk/browser_window_gtk.cc', | 798 'gtk/browser_window_gtk.cc', |
| 799 'gtk/standard_menus.cc', |
| 800 'gtk/menu_gtk.cc', |
| 799 'renderer_host/render_widget_host_view_gtk.cc', | 801 'renderer_host/render_widget_host_view_gtk.cc', |
| 800 'tab_contents/web_contents_view_gtk.cc', | 802 'tab_contents/web_contents_view_gtk.cc', |
| 801 ]) | 803 ]) |
| 802 | 804 |
| 803 if env.Bit('mac'): | 805 if env.Bit('mac'): |
| 804 input_files.Remove( | 806 input_files.Remove( |
| 805 'spellchecker.cc', | 807 'spellchecker.cc', |
| 806 'tab_contents/web_contents_view.cc', | 808 'tab_contents/web_contents_view.cc', |
| 807 ) | 809 ) |
| 808 | 810 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 | 912 |
| 911 xmldoc_tool_list = [ | 913 xmldoc_tool_list = [ |
| 912 MSVSTool('VCCLCompilerTool', | 914 MSVSTool('VCCLCompilerTool', |
| 913 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 915 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 914 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 916 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 915 ] | 917 ] |
| 916 | 918 |
| 917 for filename in xmldoc_files: | 919 for filename in xmldoc_files: |
| 918 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 920 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 919 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 921 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |