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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 MSVSFilter('Autofill', [ | 501 MSVSFilter('Autofill', [ |
502 'autofill_manager.cc', | 502 'autofill_manager.cc', |
503 'autofill_manager.h', | 503 'autofill_manager.h', |
504 ]), | 504 ]), |
505 MSVSFilter('Extensions', [ | 505 MSVSFilter('Extensions', [ |
506 'extensions/extension.cc', | 506 'extensions/extension.cc', |
507 'extensions/extension.h', | 507 'extensions/extension.h', |
508 'extensions/extension_protocols.h', | 508 'extensions/extension_protocols.h', |
509 'extensions/extensions_service.cc', | 509 'extensions/extensions_service.cc', |
510 'extensions/extensions_service.h', | 510 'extensions/extensions_service.h', |
| 511 'extensions/url_pattern.h', |
| 512 'extensions/url_pattern.cc', |
511 'extensions/user_script_master.cc', | 513 'extensions/user_script_master.cc', |
512 'extensions/user_script_master.h', | 514 'extensions/user_script_master.h', |
513 ]), | 515 ]), |
514 MSVSFilter('Renderer Host', [ | 516 MSVSFilter('Renderer Host', [ |
515 'renderer_host/async_resource_handler.cc', | 517 'renderer_host/async_resource_handler.cc', |
516 'renderer_host/async_resource_handler.h', | 518 'renderer_host/async_resource_handler.h', |
517 'renderer_host/browser_render_process_host.cc', | 519 'renderer_host/browser_render_process_host.cc', |
518 'renderer_host/browser_render_process_host.h', | 520 'renderer_host/browser_render_process_host.h', |
519 'renderer_host/buffered_resource_handler.cc', | 521 'renderer_host/buffered_resource_handler.cc', |
520 'renderer_host/buffered_resource_handler.h', | 522 'renderer_host/buffered_resource_handler.h', |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
937 | 939 |
938 xmldoc_tool_list = [ | 940 xmldoc_tool_list = [ |
939 MSVSTool('VCCLCompilerTool', | 941 MSVSTool('VCCLCompilerTool', |
940 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 942 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
941 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 943 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
942 ] | 944 ] |
943 | 945 |
944 for filename in xmldoc_files: | 946 for filename in xmldoc_files: |
945 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 947 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
946 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 948 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |