| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 'renderer_host/render_widget_host_view_win.cc', | 772 'renderer_host/render_widget_host_view_win.cc', |
| 773 'tab_contents/web_contents_view_win.cc', | 773 'tab_contents/web_contents_view_win.cc', |
| 774 'webdata/web_data_service_win.cc', | 774 'webdata/web_data_service_win.cc', |
| 775 'webdata/web_database_win.cc', | 775 'webdata/web_database_win.cc', |
| 776 '../tools/build/win/precompiled_wtl.cc', | 776 '../tools/build/win/precompiled_wtl.cc', |
| 777 '../tools/build/win/precompiled_wtl.h', | 777 '../tools/build/win/precompiled_wtl.h', |
| 778 ) | 778 ) |
| 779 | 779 |
| 780 # Add files shared across non-Windows platforms. | 780 # Add files shared across non-Windows platforms. |
| 781 input_files.Append( | 781 input_files.Append( |
| 782 'importer/firefox_profile_lock_posix.cc', |
| 782 'renderer_host/backing_store_posix.cc', | 783 'renderer_host/backing_store_posix.cc', |
| 783 ) | 784 ) |
| 784 | 785 |
| 785 | 786 |
| 786 if env.Bit('linux'): | 787 if env.Bit('linux'): |
| 787 input_files.Extend([ | 788 input_files.Extend([ |
| 788 'browser_main_gtk.cc', | 789 'browser_main_gtk.cc', |
| 789 'gtk/browser_toolbar_view_gtk.cc', | 790 'gtk/browser_toolbar_view_gtk.cc', |
| 790 'gtk/browser_window_factory_gtk.cc', | 791 'gtk/browser_window_factory_gtk.cc', |
| 791 'gtk/browser_window_gtk.cc', | 792 'gtk/browser_window_gtk.cc', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 908 |
| 908 xmldoc_tool_list = [ | 909 xmldoc_tool_list = [ |
| 909 MSVSTool('VCCLCompilerTool', | 910 MSVSTool('VCCLCompilerTool', |
| 910 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 911 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 911 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 912 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 912 ] | 913 ] |
| 913 | 914 |
| 914 for filename in xmldoc_files: | 915 for filename in xmldoc_files: |
| 915 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 916 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 916 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 917 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |