| 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 ]), | 412 ]), |
| 413 MSVSFilter('Net', [ | 413 MSVSFilter('Net', [ |
| 414 'net/chrome_url_request_context.cc', | 414 'net/chrome_url_request_context.cc', |
| 415 'net/chrome_url_request_context.h', | 415 'net/chrome_url_request_context.h', |
| 416 'net/dns_global.cc', | 416 'net/dns_global.cc', |
| 417 'net/dns_global.h', | 417 'net/dns_global.h', |
| 418 'net/dns_host_info.cc', | 418 'net/dns_host_info.cc', |
| 419 'net/dns_host_info.h', | 419 'net/dns_host_info.h', |
| 420 'net/dns_master.cc', | 420 'net/dns_master.cc', |
| 421 'net/dns_master.h', | 421 'net/dns_master.h', |
| 422 'net/dns_slave.cc', | |
| 423 'net/dns_slave.h', | |
| 424 'net/referrer.cc', | 422 'net/referrer.cc', |
| 425 'net/referrer.h', | 423 'net/referrer.h', |
| 426 'net/resolve_proxy_msg_helper.cc', | 424 'net/resolve_proxy_msg_helper.cc', |
| 427 'net/resolve_proxy_msg_helper.h', | 425 'net/resolve_proxy_msg_helper.h', |
| 428 'net/sdch_dictionary_fetcher.cc', | 426 'net/sdch_dictionary_fetcher.cc', |
| 429 'net/sdch_dictionary_fetcher.h', | 427 'net/sdch_dictionary_fetcher.h', |
| 430 'net/url_fetcher.cc', | 428 'net/url_fetcher.cc', |
| 431 'net/url_fetcher.h', | 429 'net/url_fetcher.h', |
| 432 'net/url_fetcher_protect.cc', | 430 'net/url_fetcher_protect.cc', |
| 433 'net/url_fetcher_protect.h', | 431 'net/url_fetcher_protect.h', |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 'importer/firefox2_importer.cc', | 709 'importer/firefox2_importer.cc', |
| 712 'importer/firefox3_importer.cc', | 710 'importer/firefox3_importer.cc', |
| 713 'importer/firefox_importer_utils.cc', | 711 'importer/firefox_importer_utils.cc', |
| 714 'importer/ie_importer.cc', | 712 'importer/ie_importer.cc', |
| 715 'importer/importer.cc', | 713 'importer/importer.cc', |
| 716 'importer/toolbar_importer.cc', | 714 'importer/toolbar_importer.cc', |
| 717 'jankometer.cc', | 715 'jankometer.cc', |
| 718 'login_prompt.cc', | 716 'login_prompt.cc', |
| 719 'memory_details.cc', | 717 'memory_details.cc', |
| 720 'modal_html_dialog_delegate.cc', | 718 'modal_html_dialog_delegate.cc', |
| 721 'net/dns_global.cc', | |
| 722 'net/dns_master.cc', | |
| 723 'net/dns_slave.cc', | |
| 724 'google_update.cc', | 719 'google_update.cc', |
| 725 'password_manager/encryptor.cc', | 720 'password_manager/encryptor.cc', |
| 726 'plugin_installer.cc', | 721 'plugin_installer.cc', |
| 727 'plugin_process_host.cc', | 722 'plugin_process_host.cc', |
| 728 'plugin_service.cc', | 723 'plugin_service.cc', |
| 729 'printing/page_overlays.cc', | 724 'printing/page_overlays.cc', |
| 730 'printing/print_job.cc', | 725 'printing/print_job.cc', |
| 731 'printing/print_job_manager.cc', | 726 'printing/print_job_manager.cc', |
| 732 'printing/print_job_worker.cc', | 727 'printing/print_job_worker.cc', |
| 733 'printing/print_settings.cc', | 728 'printing/print_settings.cc', |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 | 902 |
| 908 xmldoc_tool_list = [ | 903 xmldoc_tool_list = [ |
| 909 MSVSTool('VCCLCompilerTool', | 904 MSVSTool('VCCLCompilerTool', |
| 910 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 905 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 911 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 906 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 912 ] | 907 ] |
| 913 | 908 |
| 914 for filename in xmldoc_files: | 909 for filename in xmldoc_files: |
| 915 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 910 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 916 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 911 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |