| 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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 ) | 794 ) |
| 795 | 795 |
| 796 # Add files shared across non-Windows platforms. | 796 # Add files shared across non-Windows platforms. |
| 797 input_files.Append( | 797 input_files.Append( |
| 798 'renderer_host/backing_store_posix.cc', | 798 'renderer_host/backing_store_posix.cc', |
| 799 ) | 799 ) |
| 800 | 800 |
| 801 | 801 |
| 802 if env.Bit('linux'): | 802 if env.Bit('linux'): |
| 803 input_files.Extend([ | 803 input_files.Extend([ |
| 804 'browser_main_gtk.cc', | 804 'gtk/browser_main_gtk.cc', |
| 805 'browser_window_factory_gtk.cc', | 805 'gtk/browser_toolbar_view_gtk.cc', |
| 806 'browser_window_gtk.cc', | 806 'gtk/browser_window_factory_gtk.cc', |
| 807 'gtk/browser_window_gtk.cc', |
| 807 'renderer_host/render_widget_host_view_gtk.cc', | 808 'renderer_host/render_widget_host_view_gtk.cc', |
| 808 'tab_contents/web_contents_view_gtk.cc', | 809 'tab_contents/web_contents_view_gtk.cc', |
| 809 ]) | 810 ]) |
| 810 | 811 |
| 811 if env.Bit('mac'): | 812 if env.Bit('mac'): |
| 812 input_files.Remove( | 813 input_files.Remove( |
| 813 'spellchecker.cc', | 814 'spellchecker.cc', |
| 814 'tab_contents/web_contents_view.cc', | 815 'tab_contents/web_contents_view.cc', |
| 815 ) | 816 ) |
| 816 | 817 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 | 919 |
| 919 xmldoc_tool_list = [ | 920 xmldoc_tool_list = [ |
| 920 MSVSTool('VCCLCompilerTool', | 921 MSVSTool('VCCLCompilerTool', |
| 921 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 922 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 922 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 923 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 923 ] | 924 ] |
| 924 | 925 |
| 925 for filename in xmldoc_files: | 926 for filename in xmldoc_files: |
| 926 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 927 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 927 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 928 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |