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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 693 'importer/firefox_importer_utils.cc', |
694 'importer/ie_importer.cc', | 694 'importer/ie_importer.cc', |
695 'importer/importer.cc', | |
696 'importer/toolbar_importer.cc', | 695 'importer/toolbar_importer.cc', |
697 'jankometer.cc', | 696 'jankometer.cc', |
698 'login_prompt.cc', | 697 'login_prompt.cc', |
699 'memory_details.cc', | 698 'memory_details.cc', |
700 'modal_html_dialog_delegate.cc', | 699 'modal_html_dialog_delegate.cc', |
701 'google_update.cc', | 700 'google_update.cc', |
702 'password_manager/encryptor.cc', | 701 'password_manager/encryptor.cc', |
703 'printing/page_overlays.cc', | 702 'printing/page_overlays.cc', |
704 'printing/print_job.cc', | 703 'printing/print_job.cc', |
705 'printing/print_job_manager.cc', | 704 'printing/print_job_manager.cc', |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 | 875 |
877 xmldoc_tool_list = [ | 876 xmldoc_tool_list = [ |
878 MSVSTool('VCCLCompilerTool', | 877 MSVSTool('VCCLCompilerTool', |
879 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 878 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
880 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 879 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
881 ] | 880 ] |
882 | 881 |
883 for filename in xmldoc_files: | 882 for filename in xmldoc_files: |
884 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 883 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
885 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 884 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |