| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 ]), | 413 ]), |
| 414 MSVSFilter('Net', [ | 414 MSVSFilter('Net', [ |
| 415 'net/chrome_url_request_context.cc', | 415 'net/chrome_url_request_context.cc', |
| 416 'net/chrome_url_request_context.h', | 416 'net/chrome_url_request_context.h', |
| 417 'net/dns_global.cc', | 417 'net/dns_global.cc', |
| 418 'net/dns_global.h', | 418 'net/dns_global.h', |
| 419 'net/dns_host_info.cc', | 419 'net/dns_host_info.cc', |
| 420 'net/dns_host_info.h', | 420 'net/dns_host_info.h', |
| 421 'net/dns_master.cc', | 421 'net/dns_master.cc', |
| 422 'net/dns_master.h', | 422 'net/dns_master.h', |
| 423 'net/dns_slave.cc', |
| 424 'net/dns_slave.h', |
| 423 'net/referrer.cc', | 425 'net/referrer.cc', |
| 424 'net/referrer.h', | 426 'net/referrer.h', |
| 425 'net/resolve_proxy_msg_helper.cc', | 427 'net/resolve_proxy_msg_helper.cc', |
| 426 'net/resolve_proxy_msg_helper.h', | 428 'net/resolve_proxy_msg_helper.h', |
| 427 'net/sdch_dictionary_fetcher.cc', | 429 'net/sdch_dictionary_fetcher.cc', |
| 428 'net/sdch_dictionary_fetcher.h', | 430 'net/sdch_dictionary_fetcher.h', |
| 429 'net/url_fetcher.cc', | 431 'net/url_fetcher.cc', |
| 430 'net/url_fetcher.h', | 432 'net/url_fetcher.h', |
| 431 'net/url_fetcher_protect.cc', | 433 'net/url_fetcher_protect.cc', |
| 432 'net/url_fetcher_protect.h', | 434 'net/url_fetcher_protect.h', |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 'importer/firefox_importer_utils.cc', | 718 'importer/firefox_importer_utils.cc', |
| 717 'importer/ie_importer.cc', | 719 'importer/ie_importer.cc', |
| 718 'importer/importer.cc', | 720 'importer/importer.cc', |
| 719 'importer/toolbar_importer.cc', | 721 'importer/toolbar_importer.cc', |
| 720 'jankometer.cc', | 722 'jankometer.cc', |
| 721 'login_prompt.cc', | 723 'login_prompt.cc', |
| 722 'memory_details.cc', | 724 'memory_details.cc', |
| 723 'metrics/metrics_service.cc', | 725 'metrics/metrics_service.cc', |
| 724 'modal_html_dialog_delegate.cc', | 726 'modal_html_dialog_delegate.cc', |
| 725 'net/dns_global.cc', | 727 'net/dns_global.cc', |
| 728 'net/dns_master.cc', |
| 729 'net/dns_slave.cc', |
| 726 'google_update.cc', | 730 'google_update.cc', |
| 727 'password_manager/encryptor.cc', | 731 'password_manager/encryptor.cc', |
| 728 'password_manager/password_manager.cc', | 732 'password_manager/password_manager.cc', |
| 729 'plugin_installer.cc', | 733 'plugin_installer.cc', |
| 730 'plugin_process_host.cc', | 734 'plugin_process_host.cc', |
| 731 'plugin_service.cc', | 735 'plugin_service.cc', |
| 732 'printing/page_overlays.cc', | 736 'printing/page_overlays.cc', |
| 733 'printing/print_job.cc', | 737 'printing/print_job.cc', |
| 734 'printing/print_job_manager.cc', | 738 'printing/print_job_manager.cc', |
| 735 'printing/print_job_worker.cc', | 739 'printing/print_job_worker.cc', |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 | 919 |
| 916 xmldoc_tool_list = [ | 920 xmldoc_tool_list = [ |
| 917 MSVSTool('VCCLCompilerTool', | 921 MSVSTool('VCCLCompilerTool', |
| 918 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 922 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 919 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 923 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 920 ] | 924 ] |
| 921 | 925 |
| 922 for filename in xmldoc_files: | 926 for filename in xmldoc_files: |
| 923 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 927 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 924 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 928 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |