| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 'tab_contents/web_contents_view_win.cc', | 739 'tab_contents/web_contents_view_win.cc', |
| 740 'webdata/web_data_service_win.cc', | 740 'webdata/web_data_service_win.cc', |
| 741 'webdata/web_database_win.cc', | 741 'webdata/web_database_win.cc', |
| 742 '../tools/build/win/precompiled_wtl.cc', | 742 '../tools/build/win/precompiled_wtl.cc', |
| 743 '../tools/build/win/precompiled_wtl.h', | 743 '../tools/build/win/precompiled_wtl.h', |
| 744 ) | 744 ) |
| 745 | 745 |
| 746 # Add files shared across non-Windows platforms. | 746 # Add files shared across non-Windows platforms. |
| 747 input_files.Append( | 747 input_files.Append( |
| 748 'importer/firefox_profile_lock_posix.cc', | 748 'importer/firefox_profile_lock_posix.cc', |
| 749 'renderer_host/backing_store_posix.cc', | 749 'renderer_host/backing_store_x.cc', |
| 750 ) | 750 ) |
| 751 | 751 |
| 752 | 752 |
| 753 if env.Bit('linux'): | 753 if env.Bit('linux'): |
| 754 input_files.Extend([ | 754 input_files.Extend([ |
| 755 'browser_main_gtk.cc', | 755 'browser_main_gtk.cc', |
| 756 'gtk/back_forward_menu_model_gtk.cc', | 756 'gtk/back_forward_menu_model_gtk.cc', |
| 757 'gtk/browser_toolbar_view_gtk.cc', | 757 'gtk/browser_toolbar_view_gtk.cc', |
| 758 'gtk/browser_window_factory_gtk.cc', | 758 'gtk/browser_window_factory_gtk.cc', |
| 759 'gtk/browser_window_gtk.cc', | 759 'gtk/browser_window_gtk.cc', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 | 879 |
| 880 xmldoc_tool_list = [ | 880 xmldoc_tool_list = [ |
| 881 MSVSTool('VCCLCompilerTool', | 881 MSVSTool('VCCLCompilerTool', |
| 882 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 882 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 883 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 883 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 884 ] | 884 ] |
| 885 | 885 |
| 886 for filename in xmldoc_files: | 886 for filename in xmldoc_files: |
| 887 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 887 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 888 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 888 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |