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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 'hang_monitor/hung_window_detector.cc', | 683 'hang_monitor/hung_window_detector.cc', |
684 'history_tab_ui.cc', | 684 'history_tab_ui.cc', |
685 'history_view.cc', | 685 'history_view.cc', |
686 'icon_loader.cc', | 686 'icon_loader.cc', |
687 'icon_manager.cc', | 687 'icon_manager.cc', |
688 'ime_input.cc', | 688 'ime_input.cc', |
689 # Hold off on firefox[23]_importer.cc until importer.cc has been ported. | 689 # Hold off on firefox[23]_importer.cc until importer.cc has been ported. |
690 # Otherwise shared link builds won't work on Linux. | 690 # Otherwise shared link builds won't work on Linux. |
691 'importer/firefox2_importer.cc', | 691 'importer/firefox2_importer.cc', |
692 'importer/firefox3_importer.cc', | 692 'importer/firefox3_importer.cc', |
693 'importer/firefox_importer_utils.cc', | |
694 'importer/ie_importer.cc', | 693 'importer/ie_importer.cc', |
695 'importer/toolbar_importer.cc', | 694 'importer/toolbar_importer.cc', |
696 'jankometer.cc', | 695 'jankometer.cc', |
697 'login_prompt.cc', | 696 'login_prompt.cc', |
698 'memory_details.cc', | 697 'memory_details.cc', |
699 'modal_html_dialog_delegate.cc', | 698 'modal_html_dialog_delegate.cc', |
700 'google_update.cc', | 699 'google_update.cc', |
701 'password_manager/encryptor.cc', | 700 'password_manager/encryptor.cc', |
702 'printing/page_overlays.cc', | 701 'printing/page_overlays.cc', |
703 'printing/print_job.cc', | 702 'printing/print_job.cc', |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 | 874 |
876 xmldoc_tool_list = [ | 875 xmldoc_tool_list = [ |
877 MSVSTool('VCCLCompilerTool', | 876 MSVSTool('VCCLCompilerTool', |
878 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 877 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
879 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 878 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
880 ] | 879 ] |
881 | 880 |
882 for filename in xmldoc_files: | 881 for filename in xmldoc_files: |
883 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 882 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
884 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 883 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |