| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 __doc__ = """ | |
| 6 Master configuration for building ipc component. | |
| 7 """ | |
| 8 | |
| 9 Import('env') | |
| 10 | |
| 11 inputs = [ | |
| 12 'ipc_channel_proxy', | |
| 13 'ipc_logging', | |
| 14 'ipc_message', | |
| 15 'ipc_message_utils', | |
| 16 'ipc_switches', | |
| 17 'ipc_sync_channel', | |
| 18 'ipc_sync_message', | |
| 19 ] | |
| 20 | |
| 21 if env.Bit('windows'): | |
| 22 inputs += [ | |
| 23 'ipc_channel_win', | |
| 24 ] | |
| 25 | |
| 26 if env.Bit('mac') or env.Bit('linux'): | |
| 27 inputs += [ | |
| 28 'file_descriptor_set_posix', | |
| 29 'ipc_channel_posix', | |
| 30 ] | |
| 31 | |
| 32 input_files = env.MakeObjects(inputs, '$CHROME_SRC_DIR/ipc', 'cc') | |
| 33 env.ComponentLibrary('o3d_ipc', input_files) | |
| OLD | NEW |