| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 'net/dns_global.cc', | 423 'net/dns_global.cc', |
| 424 'net/dns_global.h', | 424 'net/dns_global.h', |
| 425 'net/dns_host_info.cc', | 425 'net/dns_host_info.cc', |
| 426 'net/dns_host_info.h', | 426 'net/dns_host_info.h', |
| 427 'net/dns_master.cc', | 427 'net/dns_master.cc', |
| 428 'net/dns_master.h', | 428 'net/dns_master.h', |
| 429 'net/dns_slave.cc', | 429 'net/dns_slave.cc', |
| 430 'net/dns_slave.h', | 430 'net/dns_slave.h', |
| 431 'net/referrer.cc', | 431 'net/referrer.cc', |
| 432 'net/referrer.h', | 432 'net/referrer.h', |
| 433 'net/resolve_proxy_msg_helper.cc', |
| 434 'net/resolve_proxy_msg_helper.h', |
| 433 'net/sdch_dictionary_fetcher.cc', | 435 'net/sdch_dictionary_fetcher.cc', |
| 434 'net/sdch_dictionary_fetcher.h', | 436 'net/sdch_dictionary_fetcher.h', |
| 435 'net/url_fetcher.cc', | 437 'net/url_fetcher.cc', |
| 436 'net/url_fetcher.h', | 438 'net/url_fetcher.h', |
| 437 'net/url_fetcher_protect.cc', | 439 'net/url_fetcher_protect.cc', |
| 438 'net/url_fetcher_protect.h', | 440 'net/url_fetcher_protect.h', |
| 439 'net/url_fixer_upper.cc', | 441 'net/url_fixer_upper.cc', |
| 440 'net/url_fixer_upper.h', | 442 'net/url_fixer_upper.h', |
| 441 ]), | 443 ]), |
| 442 MSVSFilter('RLZ', [ | 444 MSVSFilter('RLZ', [ |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 'jankometer.cc', | 741 'jankometer.cc', |
| 740 'js_before_unload_handler.cc', | 742 'js_before_unload_handler.cc', |
| 741 'jsmessage_box_handler.cc', | 743 'jsmessage_box_handler.cc', |
| 742 'login_prompt.cc', | 744 'login_prompt.cc', |
| 743 'memory_details.cc', | 745 'memory_details.cc', |
| 744 'metrics/metrics_service.cc', | 746 'metrics/metrics_service.cc', |
| 745 'modal_html_dialog_delegate.cc', | 747 'modal_html_dialog_delegate.cc', |
| 746 'net/dns_global.cc', | 748 'net/dns_global.cc', |
| 747 'net/dns_master.cc', | 749 'net/dns_master.cc', |
| 748 'net/dns_slave.cc', | 750 'net/dns_slave.cc', |
| 751 'net/resolve_proxy_msg_helper.cc', |
| 749 'google_update.cc', | 752 'google_update.cc', |
| 750 'password_manager/encryptor.cc', | 753 'password_manager/encryptor.cc', |
| 751 'password_manager/ie7_password.cc', | 754 'password_manager/ie7_password.cc', |
| 752 'password_manager/password_manager.cc', | 755 'password_manager/password_manager.cc', |
| 753 'plugin_installer.cc', | 756 'plugin_installer.cc', |
| 754 'plugin_process_host.cc', | 757 'plugin_process_host.cc', |
| 755 'plugin_service.cc', | 758 'plugin_service.cc', |
| 756 'printing/page_overlays.cc', | 759 'printing/page_overlays.cc', |
| 757 'printing/print_job.cc', | 760 'printing/print_job.cc', |
| 758 'printing/print_job_manager.cc', | 761 'printing/print_job_manager.cc', |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 | 940 |
| 938 xmldoc_tool_list = [ | 941 xmldoc_tool_list = [ |
| 939 MSVSTool('VCCLCompilerTool', | 942 MSVSTool('VCCLCompilerTool', |
| 940 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 943 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
| 941 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 944 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
| 942 ] | 945 ] |
| 943 | 946 |
| 944 for filename in xmldoc_files: | 947 for filename in xmldoc_files: |
| 945 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 948 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
| 946 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 949 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
| OLD | NEW |