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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'shell_integration.cc', | 132 'shell_integration.cc', |
133 'shell_integration.h', | 133 'shell_integration.h', |
134 'spellcheck_worditerator.cc', | 134 'spellcheck_worditerator.cc', |
135 'spellcheck_worditerator.h', | 135 'spellcheck_worditerator.h', |
136 'spellchecker.cc', | 136 'spellchecker.cc', |
137 'spellchecker.h', | 137 'spellchecker.h', |
138 'user_data_manager.cc', | 138 'user_data_manager.cc', |
139 'user_data_manager.h', | 139 'user_data_manager.h', |
140 'visitedlink_master.cc', | 140 'visitedlink_master.cc', |
141 'visitedlink_master.h', | 141 'visitedlink_master.h', |
| 142 'worker_process_host.cc', |
| 143 'worker_process_host.h', |
| 144 'worker_service.cc', |
| 145 'worker_service.h', |
142 ]), | 146 ]), |
143 MSVSFilter('Bookmarks', [ | 147 MSVSFilter('Bookmarks', [ |
144 'bookmarks/bookmark_codec.cc', | 148 'bookmarks/bookmark_codec.cc', |
145 'bookmarks/bookmark_codec.h', | 149 'bookmarks/bookmark_codec.h', |
146 'bookmarks/bookmark_context_menu.cc', | 150 'bookmarks/bookmark_context_menu.cc', |
147 'bookmarks/bookmark_context_menu.h', | 151 'bookmarks/bookmark_context_menu.h', |
148 'bookmarks/bookmark_drag_data.cc', | 152 'bookmarks/bookmark_drag_data.cc', |
149 'bookmarks/bookmark_drag_data.h', | 153 'bookmarks/bookmark_drag_data.h', |
150 'bookmarks/bookmark_drop_info.cc', | 154 'bookmarks/bookmark_drop_info.cc', |
151 'bookmarks/bookmark_drop_info.h', | 155 'bookmarks/bookmark_drop_info.h', |
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 | 911 |
908 xmldoc_tool_list = [ | 912 xmldoc_tool_list = [ |
909 MSVSTool('VCCLCompilerTool', | 913 MSVSTool('VCCLCompilerTool', |
910 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), | 914 XMLDocumentationFileName=('$(IntDir)/$(InputName)1.xdc'), |
911 ObjectFile='$(IntDir)/$(InputName)1.obj'), | 915 ObjectFile='$(IntDir)/$(InputName)1.obj'), |
912 ] | 916 ] |
913 | 917 |
914 for filename in xmldoc_files: | 918 for filename in xmldoc_files: |
915 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) | 919 p.AddFileConfig(filename, 'Debug|Win32', xmldoc_tool_list) |
916 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) | 920 p.AddFileConfig(filename, 'Release|Win32', xmldoc_tool_list) |
OLD | NEW |