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 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 # TODO(port): Port these. | 211 # TODO(port): Port these. |
212 input_files.Remove( | 212 input_files.Remove( |
213 'chrome_plugin_lib.cc', | 213 'chrome_plugin_lib.cc', |
214 'chrome_plugin_util.cc', | 214 'chrome_plugin_util.cc', |
215 'chrome_process_filter.cc', | 215 'chrome_process_filter.cc', |
216 'drag_drop_types.cc', | 216 'drag_drop_types.cc', |
217 'gfx/emf.cc', | 217 'gfx/emf.cc', |
218 'gfx/icon_util.cc', | 218 'gfx/icon_util.cc', |
219 'gfx/path.cc', | 219 'gfx/path.cc', |
220 'ipc_logging.cc', | 220 'ipc_logging.cc', |
221 'jstemplate_builder.cc', | |
222 'os_exchange_data.cc', | 221 'os_exchange_data.cc', |
223 'plugin_messages.cc', | 222 'plugin_messages.cc', |
224 'process_watcher.cc', | |
225 'security_filter_peer.cc', | |
226 'win_safe_util.cc', | |
227 'win_util.cc', | |
228 ) | 223 ) |
229 | 224 |
230 if not env.Bit('windows'): | 225 if not env.Bit('windows'): |
231 # Windows specific files | 226 # Windows specific files |
232 input_files.Remove( | 227 input_files.Remove( |
233 'classfactory.cc', | 228 'classfactory.cc', |
234 'gfx/chrome_canvas_win.cc', | 229 'gfx/chrome_canvas_win.cc', |
235 'gfx/chrome_font_win.cc', | 230 'gfx/chrome_font_win.cc', |
236 'ipc_channel_win.cc', | 231 'ipc_channel_win.cc', |
237 'resource_bundle_win.cc', | 232 'resource_bundle_win.cc', |
| 233 'win_safe_util.cc', |
| 234 'win_util.cc', |
238 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', | 235 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', |
239 ) | 236 ) |
240 | 237 |
241 if not env.Bit('linux'): | 238 if not env.Bit('linux'): |
242 # Linux specific files | 239 # Linux specific files |
243 input_files.Remove( | 240 input_files.Remove( |
244 'gfx/chrome_canvas_skia.cc', | 241 'gfx/chrome_canvas_skia.cc', |
245 'gfx/chrome_font_gtk.cc', | 242 'gfx/chrome_font_gtk.cc', |
246 'gfx/chrome_font_skia.cc', | 243 'gfx/chrome_font_skia.cc', |
247 ) | 244 ) |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 './common.vsprops', | 297 './common.vsprops', |
301 '$(SolutionDir)../build/release.vsprops', | 298 '$(SolutionDir)../build/release.vsprops', |
302 ]) | 299 ]) |
303 | 300 |
304 p.AddFileConfig('../tools/build/win/precompiled.cc', | 301 p.AddFileConfig('../tools/build/win/precompiled.cc', |
305 'Debug|Win32', | 302 'Debug|Win32', |
306 tools=[ | 303 tools=[ |
307 MSVSTool('VCCLCompilerTool', | 304 MSVSTool('VCCLCompilerTool', |
308 UsePrecompiledHeader='1'), | 305 UsePrecompiledHeader='1'), |
309 ]) | 306 ]) |
OLD | NEW |