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 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 | 808 |
809 # Add files shared across non-Windows platforms. | 809 # Add files shared across non-Windows platforms. |
810 input_files.Append( | 810 input_files.Append( |
811 'renderer_host/backing_store_posix.cc', | 811 'renderer_host/backing_store_posix.cc', |
812 ) | 812 ) |
813 | 813 |
814 | 814 |
815 if env.Bit('linux'): | 815 if env.Bit('linux'): |
816 input_files.Extend([ | 816 input_files.Extend([ |
817 'browser_main_gtk.cc', | 817 'browser_main_gtk.cc', |
| 818 'browser_window_factory_gtk.cc', |
| 819 'browser_window_gtk.cc', |
818 'renderer_host/render_widget_host_view_gtk.cc', | 820 'renderer_host/render_widget_host_view_gtk.cc', |
819 ]) | 821 ]) |
820 | 822 |
821 if env.Bit('mac'): | 823 if env.Bit('mac'): |
822 input_files.Remove( | 824 input_files.Remove( |
823 'spellchecker.cc', | 825 'spellchecker.cc', |
824 ) | 826 ) |
825 | 827 |
826 if env.Bit('windows'): | 828 if env.Bit('windows'): |
827 env.TypeLibrary('history/history_indexer.idl') | 829 env.TypeLibrary('history/history_indexer.idl') |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 | 929 |
928 xmldoc_tool_list = [ | 930 xmldoc_tool_list = [ |
929 MSVSTool('VCCLCompilerTool', | 931 MSVSTool('VCCLCompilerTool', |
930 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 932 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
931 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 933 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
932 ] | 934 ] |
933 | 935 |
934 for filename in xmldoc_files: | 936 for filename in xmldoc_files: |
935 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 937 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
936 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 938 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |