Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: base/base.scons

Issue 39081: Split worker_pool.cc into worker_pool_linux.cc and worker_pool_win.cc (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/base.gyp ('k') | base/build/base.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 'waitable_event_win.cc', 259 'waitable_event_win.cc',
260 'watchdog.cc', 260 'watchdog.cc',
261 'watchdog.h', 261 'watchdog.h',
262 'win_util.cc', 262 'win_util.cc',
263 'win_util.h', 263 'win_util.h',
264 'windows_message_list.h', 264 'windows_message_list.h',
265 'wmi_util.cc', 265 'wmi_util.cc',
266 'wmi_util.h', 266 'wmi_util.h',
267 'word_iterator.cc', 267 'word_iterator.cc',
268 'word_iterator.h', 268 'word_iterator.h',
269 'worker_pool.cc',
270 'worker_pool.h', 269 'worker_pool.h',
270 'worker_pool_win.cc',
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 279
280 # We have an implementation of idle_timer that depends on XScreenSaver, 280 # We have an implementation of idle_timer that depends on XScreenSaver,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 'system_monitor_win.cc', 332 'system_monitor_win.cc',
333 'test_file_util_win.cc', 333 'test_file_util_win.cc',
334 'thread_local_storage_win.cc', 334 'thread_local_storage_win.cc',
335 'thread_local_win.cc', 335 'thread_local_win.cc',
336 'third_party/purify/pure_api.c', 336 'third_party/purify/pure_api.c',
337 'time_win.cc', 337 'time_win.cc',
338 'waitable_event_win.cc', 338 'waitable_event_win.cc',
339 'waitable_event_watcher_win.cc', 339 'waitable_event_watcher_win.cc',
340 'win_util.cc', 340 'win_util.cc',
341 'wmi_util.cc', 341 'wmi_util.cc',
342 'worker_pool.cc', 342 'worker_pool_win.cc',
343 ) 343 )
344 344
345 if env.Bit('posix'): 345 if env.Bit('posix'):
346 input_files.Extend([ 346 input_files.Extend([
347 'condition_variable_posix.cc', 347 'condition_variable_posix.cc',
348 'debug_util_posix.cc', 348 'debug_util_posix.cc',
349 'file_util_posix.cc', 349 'file_util_posix.cc',
350 'lock_impl_posix.cc', 350 'lock_impl_posix.cc',
351 'message_pump_libevent.cc', 351 'message_pump_libevent.cc',
352 'platform_file_posix.cc', 352 'platform_file_posix.cc',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'event_recorder_stubs.cc', 391 'event_recorder_stubs.cc',
392 'file_util_linux.cc', 392 'file_util_linux.cc',
393 'file_version_info_linux.cc', 393 'file_version_info_linux.cc',
394 'hmac_nss.cc', 394 'hmac_nss.cc',
395 'message_pump_glib.cc', 395 'message_pump_glib.cc',
396 'nss_init.cc', 396 'nss_init.cc',
397 'process_posix.cc', 397 'process_posix.cc',
398 'process_util_linux.cc', 398 'process_util_linux.cc',
399 'sys_string_conversions_linux.cc', 399 'sys_string_conversions_linux.cc',
400 'test_file_util_linux.cc', 400 'test_file_util_linux.cc',
401 'worker_pool.cc', 401 'worker_pool_linux.cc',
402 ]) 402 ])
403 403
404 env.ChromeLibrary('base', input_files) 404 env.ChromeLibrary('base', input_files)
405 405
406 p = env.ChromeMSVSProject('build/base.vcproj', 406 p = env.ChromeMSVSProject('build/base.vcproj',
407 dest='$CHROME_SRC_DIR/base/build/base.vcproj', 407 dest='$CHROME_SRC_DIR/base/build/base.vcproj',
408 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', 408 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}',
409 keyword='Win32Proj', 409 keyword='Win32Proj',
410 dependencies=[ 410 dependencies=[
411 'build/debug_message.vcproj', 411 'build/debug_message.vcproj',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 tools=[ 467 tools=[
468 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), 468 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'),
469 ]) 469 ])
470 470
471 p.AddFileConfig( 471 p.AddFileConfig(
472 'third_party/dmg_fp/g_fmt.cc', 472 'third_party/dmg_fp/g_fmt.cc',
473 'Release|Win32', 473 'Release|Win32',
474 tools=[ 474 tools=[
475 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), 475 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'),
476 ]) 476 ])
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/build/base.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698