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

Side by Side Diff: base/base.scons

Issue 27240: Make startup_tests build and run on Linux (except reference tests). (Closed)
Patch Set: small bugfix in process_util 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
« no previous file with comments | « no previous file | base/process_util_posix.cc » ('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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
353 'platform_thread_posix.cc', 353 'platform_thread_posix.cc',
354 'process_util_posix.cc', 354 'process_util_posix.cc',
355 'rand_util_posix.cc', 355 'rand_util_posix.cc',
356 'shared_memory_posix.cc', 356 'shared_memory_posix.cc',
357 'string16.cc', 357 'string16.cc',
358 'sys_info_posix.cc', 358 'sys_info_posix.cc',
359 'system_monitor_posix.cc', 359 'system_monitor_posix.cc',
360 'test_file_util_posix.cc',
360 'thread_local_storage_posix.cc', 361 'thread_local_storage_posix.cc',
361 'thread_local_posix.cc', 362 'thread_local_posix.cc',
362 'time_posix.cc', 363 'time_posix.cc',
363 'waitable_event_posix.cc', 364 'waitable_event_posix.cc',
364 'waitable_event_watcher_posix.cc', 365 'waitable_event_watcher_posix.cc',
365 ]) 366 ])
366 367
367 if env.Bit('mac'): 368 if env.Bit('mac'):
368 input_files.Extend([ 369 input_files.Extend([
369 'base_paths_mac.mm', 370 'base_paths_mac.mm',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 tools=[ 467 tools=[
467 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), 468 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'),
468 ]) 469 ])
469 470
470 p.AddFileConfig( 471 p.AddFileConfig(
471 'third_party/dmg_fp/g_fmt.cc', 472 'third_party/dmg_fp/g_fmt.cc',
472 'Release|Win32', 473 'Release|Win32',
473 tools=[ 474 tools=[
474 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), 475 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'),
475 ]) 476 ])
OLDNEW
« no previous file with comments | « no previous file | base/process_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698