| 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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 'tab_contents/web_contents_view.cc', | 812 'tab_contents/web_contents_view.cc', |
| 813 'tab_contents/web_drag_source.cc', | 813 'tab_contents/web_drag_source.cc', |
| 814 'tab_contents/web_drop_target.cc', | 814 'tab_contents/web_drop_target.cc', |
| 815 'tabs/tab_strip_model.cc', | 815 'tabs/tab_strip_model.cc', |
| 816 'tabs/tab_strip_model_order_controller.cc', | 816 'tabs/tab_strip_model_order_controller.cc', |
| 817 'task_manager.cc', | 817 'task_manager.cc', |
| 818 'task_manager_resource_providers.cc', | 818 'task_manager_resource_providers.cc', |
| 819 'toolbar_model.cc', | 819 'toolbar_model.cc', |
| 820 'user_data_manager.cc', | 820 'user_data_manager.cc', |
| 821 'views/download_tab_view.cc', | 821 'views/download_tab_view.cc', |
| 822 'visitedlink_master.cc', |
| 822 'web_app.cc', | 823 'web_app.cc', |
| 823 'web_app_icon_manager.cc', | 824 'web_app_icon_manager.cc', |
| 824 'web_app_launcher.cc', | 825 'web_app_launcher.cc', |
| 825 'window_sizer.cc', | 826 'window_sizer.cc', |
| 826 ) | 827 ) |
| 827 | 828 |
| 828 input_files.Remove( | 829 input_files.Remove( |
| 829 'browser_main_win.cc', | 830 'browser_main_win.cc', |
| 830 'importer/firefox_profile_lock_win.cc', | 831 'importer/firefox_profile_lock_win.cc', |
| 831 'password_manager/password_form_manager_win.cc', | 832 'password_manager/password_form_manager_win.cc', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 | 942 |
| 942 xmldoc_tool_list = [ | 943 xmldoc_tool_list = [ |
| 943 MSVSTool('VCCLCompilerTool', | 944 MSVSTool('VCCLCompilerTool', |
| 944 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 945 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 945 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 946 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 946 ] | 947 ] |
| 947 | 948 |
| 948 for filename in xmldoc_files: | 949 for filename in xmldoc_files: |
| 949 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 950 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 950 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 951 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |