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 __doc__ = """ | 5 __doc__ = """ |
6 Configuration for building base.lib / libbase.a. | 6 Configuration for building base.lib / libbase.a. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 'worker_pool.cc', | 269 'worker_pool.cc', |
270 'worker_pool.h', | 270 'worker_pool.h', |
271 ]) | 271 ]) |
272 | 272 |
273 if env.Bit('posix'): | 273 if env.Bit('posix'): |
274 # Remove files that still need to be ported from the input_files list. | 274 # Remove files that still need to be ported from the input_files list. |
275 # TODO(port): delete files from this list as they get ported. | 275 # TODO(port): delete files from this list as they get ported. |
276 input_files.Remove( | 276 input_files.Remove( |
277 'clipboard_util.cc', | 277 'clipboard_util.cc', |
278 'event_recorder.cc', | 278 'event_recorder.cc', |
279 'file_version_info.cc', | |
280 | 279 |
281 # We have an implementation of idle_timer that depends on XScreenSaver, | 280 # We have an implementation of idle_timer that depends on XScreenSaver, |
282 # but it's unclear if we want it yet, so it's commented out for now. | 281 # but it's unclear if we want it yet, so it's commented out for now. |
283 # Leave this 'unported'. | 282 # Leave this 'unported'. |
284 'idle_timer.cc', | 283 'idle_timer.cc', |
285 | 284 |
286 'object_watcher.cc', | 285 'object_watcher.cc', |
287 | 286 |
288 'resource_util.cc', # Uses HMODULE, but may be abstractable. | 287 'resource_util.cc', # Uses HMODULE, but may be abstractable. |
289 ) | 288 ) |
(...skipping 14 matching lines...) Expand all Loading... |
304 'base_drag_source.cc', | 303 'base_drag_source.cc', |
305 'base_drop_target.cc', | 304 'base_drop_target.cc', |
306 'base_paths_win.cc', | 305 'base_paths_win.cc', |
307 'clipboard_win.cc', | 306 'clipboard_win.cc', |
308 'condition_variable_win.cc', | 307 'condition_variable_win.cc', |
309 'cpu.cc', | 308 'cpu.cc', |
310 'debug_on_start.cc', | 309 'debug_on_start.cc', |
311 'debug_util_win.cc', | 310 'debug_util_win.cc', |
312 'directory_watcher_win.cc', | 311 'directory_watcher_win.cc', |
313 'file_util_win.cc', | 312 'file_util_win.cc', |
| 313 'file_version_info.cc', |
314 'hmac_win.cc', | 314 'hmac_win.cc', |
315 'iat_patch.cc', | 315 'iat_patch.cc', |
316 'image_util.cc', | 316 'image_util.cc', |
317 'lock_impl_win.cc', | 317 'lock_impl_win.cc', |
318 'message_pump_win.cc', | 318 'message_pump_win.cc', |
319 'pe_image.cc', | 319 'pe_image.cc', |
320 'platform_file_win.cc', | 320 'platform_file_win.cc', |
321 'platform_thread_win.cc', | 321 'platform_thread_win.cc', |
322 'process_util_win.cc', | 322 'process_util_win.cc', |
323 'process_win.cc', | 323 'process_win.cc', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 tools=[ | 466 tools=[ |
467 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 467 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
468 ]) | 468 ]) |
469 | 469 |
470 p.AddFileConfig( | 470 p.AddFileConfig( |
471 'third_party/dmg_fp/g_fmt.cc', | 471 'third_party/dmg_fp/g_fmt.cc', |
472 'Release|Win32', | 472 'Release|Win32', |
473 tools=[ | 473 tools=[ |
474 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 474 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
475 ]) | 475 ]) |
OLD | NEW |