| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'ipc_target': 0, | 8 'ipc_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'ipc_channel_posix.cc', | 21 'ipc_channel_posix.cc', |
| 22 'ipc_channel_posix.h', | 22 'ipc_channel_posix.h', |
| 23 'ipc_channel_proxy.cc', | 23 'ipc_channel_proxy.cc', |
| 24 'ipc_channel_proxy.h', | 24 'ipc_channel_proxy.h', |
| 25 'ipc_channel_reader.cc', | 25 'ipc_channel_reader.cc', |
| 26 'ipc_channel_reader.h', | 26 'ipc_channel_reader.h', |
| 27 'ipc_channel_win.cc', | 27 'ipc_channel_win.cc', |
| 28 'ipc_channel_win.h', | 28 'ipc_channel_win.h', |
| 29 'ipc_descriptors.h', | 29 'ipc_descriptors.h', |
| 30 'ipc_export.h', | 30 'ipc_export.h', |
| 31 'ipc_forwarding_message_filter.cc', |
| 32 'ipc_forwarding_message_filter.h', |
| 31 'ipc_listener.h', | 33 'ipc_listener.h', |
| 32 'ipc_logging.cc', | 34 'ipc_logging.cc', |
| 33 'ipc_logging.h', | 35 'ipc_logging.h', |
| 34 'ipc_message.cc', | 36 'ipc_message.cc', |
| 35 'ipc_message.h', | 37 'ipc_message.h', |
| 36 'ipc_message_macros.h', | 38 'ipc_message_macros.h', |
| 37 'ipc_message_utils.cc', | 39 'ipc_message_utils.cc', |
| 38 'ipc_message_utils.h', | 40 'ipc_message_utils.h', |
| 39 'ipc_param_traits.h', | 41 'ipc_param_traits.h', |
| 40 'ipc_platform_file.cc', | 42 'ipc_platform_file.cc', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 65 ['>(nacl_untrusted_build)==1', { | 67 ['>(nacl_untrusted_build)==1', { |
| 66 'sources!': [ | 68 'sources!': [ |
| 67 'ipc_channel_posix.cc', | 69 'ipc_channel_posix.cc', |
| 68 ], | 70 ], |
| 69 }], | 71 }], |
| 70 ], | 72 ], |
| 71 }], | 73 }], |
| 72 ], | 74 ], |
| 73 }, | 75 }, |
| 74 } | 76 } |
| OLD | NEW |