| 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 19 matching lines...) Expand all Loading... |
| 30 'ipc_channel_posix.cc', | 30 'ipc_channel_posix.cc', |
| 31 'ipc_channel_posix.h', | 31 'ipc_channel_posix.h', |
| 32 'ipc_channel_proxy.cc', | 32 'ipc_channel_proxy.cc', |
| 33 'ipc_channel_proxy.h', | 33 'ipc_channel_proxy.h', |
| 34 'ipc_channel_reader.cc', | 34 'ipc_channel_reader.cc', |
| 35 'ipc_channel_reader.h', | 35 'ipc_channel_reader.h', |
| 36 'ipc_channel_win.cc', | 36 'ipc_channel_win.cc', |
| 37 'ipc_channel_win.h', | 37 'ipc_channel_win.h', |
| 38 'ipc_descriptors.h', | 38 'ipc_descriptors.h', |
| 39 'ipc_export.h', | 39 'ipc_export.h', |
| 40 'ipc_forwarding_message_filter.cc', | |
| 41 'ipc_forwarding_message_filter.h', | |
| 42 'ipc_handle_win.cc', | 40 'ipc_handle_win.cc', |
| 43 'ipc_handle_win.h', | 41 'ipc_handle_win.h', |
| 44 'ipc_listener.h', | 42 'ipc_listener.h', |
| 45 'ipc_logging.cc', | 43 'ipc_logging.cc', |
| 46 'ipc_logging.h', | 44 'ipc_logging.h', |
| 47 'ipc_message.cc', | 45 'ipc_message.cc', |
| 48 'ipc_message.h', | 46 'ipc_message.h', |
| 49 'ipc_message_attachment.cc', | 47 'ipc_message_attachment.cc', |
| 50 'ipc_message_attachment.h', | 48 'ipc_message_attachment.h', |
| 51 'ipc_message_attachment_set.cc', | 49 'ipc_message_attachment_set.cc', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ['OS == "win" or OS == "ios"', { | 98 ['OS == "win" or OS == "ios"', { |
| 101 'sources!': [ | 99 'sources!': [ |
| 102 'unix_domain_socket_util.cc', | 100 'unix_domain_socket_util.cc', |
| 103 ], | 101 ], |
| 104 }], | 102 }], |
| 105 ], | 103 ], |
| 106 }], | 104 }], |
| 107 ], | 105 ], |
| 108 }, | 106 }, |
| 109 } | 107 } |
| OLD | NEW |