| 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 18 matching lines...) Expand all Loading... |
| 29 'ipc_channel_win.h', | 29 'ipc_channel_win.h', |
| 30 'ipc_descriptors.h', | 30 'ipc_descriptors.h', |
| 31 'ipc_export.h', | 31 'ipc_export.h', |
| 32 'ipc_forwarding_message_filter.cc', | 32 'ipc_forwarding_message_filter.cc', |
| 33 'ipc_forwarding_message_filter.h', | 33 'ipc_forwarding_message_filter.h', |
| 34 'ipc_listener.h', | 34 'ipc_listener.h', |
| 35 'ipc_logging.cc', | 35 'ipc_logging.cc', |
| 36 'ipc_logging.h', | 36 'ipc_logging.h', |
| 37 'ipc_message.cc', | 37 'ipc_message.cc', |
| 38 'ipc_message.h', | 38 'ipc_message.h', |
| 39 'ipc_message_attachment.cc', |
| 40 'ipc_message_attachment.h', |
| 39 'ipc_message_attachment_set.cc', | 41 'ipc_message_attachment_set.cc', |
| 40 'ipc_message_attachment_set.h', | 42 'ipc_message_attachment_set.h', |
| 41 'ipc_message_macros.h', | 43 'ipc_message_macros.h', |
| 42 'ipc_message_start.h', | 44 'ipc_message_start.h', |
| 43 'ipc_message_utils.cc', | 45 'ipc_message_utils.cc', |
| 44 'ipc_message_utils.h', | 46 'ipc_message_utils.h', |
| 45 'ipc_param_traits.h', | 47 'ipc_param_traits.h', |
| 46 'ipc_platform_file.cc', | 48 'ipc_platform_file.cc', |
| 47 'ipc_platform_file.h', | 49 'ipc_platform_file.h', |
| 50 'ipc_platform_file_attachment.cc', |
| 51 'ipc_platform_file_attachment.h', |
| 48 'ipc_sender.h', | 52 'ipc_sender.h', |
| 49 'ipc_switches.cc', | 53 'ipc_switches.cc', |
| 50 'ipc_switches.h', | 54 'ipc_switches.h', |
| 51 'ipc_sync_channel.cc', | 55 'ipc_sync_channel.cc', |
| 52 'ipc_sync_channel.h', | 56 'ipc_sync_channel.h', |
| 53 'ipc_sync_message.cc', | 57 'ipc_sync_message.cc', |
| 54 'ipc_sync_message.h', | 58 'ipc_sync_message.h', |
| 55 'ipc_sync_message_filter.cc', | 59 'ipc_sync_message_filter.cc', |
| 56 'ipc_sync_message_filter.h', | 60 'ipc_sync_message_filter.h', |
| 57 'message_filter.cc', | 61 'message_filter.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 84 ['OS == "win" or OS == "ios"', { | 88 ['OS == "win" or OS == "ios"', { |
| 85 'sources!': [ | 89 'sources!': [ |
| 86 'unix_domain_socket_util.cc', | 90 'unix_domain_socket_util.cc', |
| 87 ], | 91 ], |
| 88 }], | 92 }], |
| 89 ], | 93 ], |
| 90 }], | 94 }], |
| 91 ], | 95 ], |
| 92 }, | 96 }, |
| 93 } | 97 } |
| OLD | NEW |