| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'ipc_sync_message_filter.cc', | 80 'ipc_sync_message_filter.cc', |
| 81 'ipc_sync_message_filter.h', | 81 'ipc_sync_message_filter.h', |
| 82 'message_filter.cc', | 82 'message_filter.cc', |
| 83 'message_filter.h', | 83 'message_filter.h', |
| 84 'message_filter_router.cc', | 84 'message_filter_router.cc', |
| 85 'message_filter_router.h', | 85 'message_filter_router.h', |
| 86 'param_traits_log_macros.h', | 86 'param_traits_log_macros.h', |
| 87 'param_traits_macros.h', | 87 'param_traits_macros.h', |
| 88 'param_traits_read_macros.h', | 88 'param_traits_read_macros.h', |
| 89 'param_traits_write_macros.h', | 89 'param_traits_write_macros.h', |
| 90 'placeholder_brokerable_attachment.cc', | |
| 91 'placeholder_brokerable_attachment.h', | |
| 92 'struct_constructor_macros.h', | 90 'struct_constructor_macros.h', |
| 93 'struct_destructor_macros.h', | 91 'struct_destructor_macros.h', |
| 94 'unix_domain_socket_util.cc', | 92 'unix_domain_socket_util.cc', |
| 95 'unix_domain_socket_util.h', | 93 'unix_domain_socket_util.h', |
| 96 ], | 94 ], |
| 97 'defines': [ | 95 'defines': [ |
| 98 'IPC_IMPLEMENTATION', | 96 'IPC_IMPLEMENTATION', |
| 99 ], | 97 ], |
| 100 'include_dirs': [ | 98 'include_dirs': [ |
| 101 '..', | 99 '..', |
| 102 ], | 100 ], |
| 103 'target_conditions': [ | 101 'target_conditions': [ |
| 104 ['>(nacl_untrusted_build)==1', { | 102 ['>(nacl_untrusted_build)==1', { |
| 105 'sources!': [ | 103 'sources!': [ |
| 106 'ipc_channel.cc', | 104 'ipc_channel.cc', |
| 107 'ipc_channel_posix.cc', | 105 'ipc_channel_posix.cc', |
| 108 'unix_domain_socket_util.cc', | 106 'unix_domain_socket_util.cc', |
| 109 ], | 107 ], |
| 110 }], | 108 }], |
| 111 ['OS == "win" or OS == "ios"', { | 109 ['OS == "win" or OS == "ios"', { |
| 112 'sources!': [ | 110 'sources!': [ |
| 113 'unix_domain_socket_util.cc', | 111 'unix_domain_socket_util.cc', |
| 114 ], | 112 ], |
| 115 }], | 113 }], |
| 116 ], | 114 ], |
| 117 }], | 115 }], |
| 118 ], | 116 ], |
| 119 }, | 117 }, |
| 120 } | 118 } |
| OLD | NEW |