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': [ |
11 # This part is shared between the targets defined below. | 11 # This part is shared between the targets defined below. |
12 ['ipc_target==1', { | 12 ['ipc_target==1', { |
13 'sources': [ | 13 'sources': [ |
14 'attachment_broker.h', | 14 'attachment_broker.h', |
| 15 'attachment_broker_messages.h', |
15 'attachment_broker_win.cc', | 16 'attachment_broker_win.cc', |
16 'attachment_broker_win.h', | 17 'attachment_broker_win.h', |
17 'brokerable_attachment.cc', | 18 'brokerable_attachment.cc', |
18 'brokerable_attachment.h', | 19 'brokerable_attachment.h', |
| 20 'handle_attachment_win.cc', |
19 'handle_attachment_win.h', | 21 'handle_attachment_win.h', |
20 'ipc_channel.cc', | 22 'ipc_channel.cc', |
21 'ipc_channel.h', | 23 'ipc_channel.h', |
22 'ipc_channel_factory.cc', | 24 'ipc_channel_factory.cc', |
23 'ipc_channel_factory.h', | 25 'ipc_channel_factory.h', |
24 'ipc_channel_common.cc', | 26 'ipc_channel_common.cc', |
25 'ipc_channel_handle.h', | 27 'ipc_channel_handle.h', |
26 'ipc_channel_nacl.cc', | 28 'ipc_channel_nacl.cc', |
27 'ipc_channel_nacl.h', | 29 'ipc_channel_nacl.h', |
28 'ipc_channel_posix.cc', | 30 'ipc_channel_posix.cc', |
29 'ipc_channel_posix.h', | 31 'ipc_channel_posix.h', |
30 'ipc_channel_proxy.cc', | 32 'ipc_channel_proxy.cc', |
31 'ipc_channel_proxy.h', | 33 'ipc_channel_proxy.h', |
32 'ipc_channel_reader.cc', | 34 'ipc_channel_reader.cc', |
33 'ipc_channel_reader.h', | 35 'ipc_channel_reader.h', |
34 'ipc_channel_win.cc', | 36 'ipc_channel_win.cc', |
35 'ipc_channel_win.h', | 37 'ipc_channel_win.h', |
36 'ipc_descriptors.h', | 38 'ipc_descriptors.h', |
37 'ipc_export.h', | 39 'ipc_export.h', |
38 'ipc_forwarding_message_filter.cc', | 40 'ipc_forwarding_message_filter.cc', |
39 'ipc_forwarding_message_filter.h', | 41 'ipc_forwarding_message_filter.h', |
| 42 'ipc_handle_win.cc', |
| 43 'ipc_handle_win.h', |
40 'ipc_listener.h', | 44 'ipc_listener.h', |
41 'ipc_logging.cc', | 45 'ipc_logging.cc', |
42 'ipc_logging.h', | 46 'ipc_logging.h', |
43 'ipc_message.cc', | 47 'ipc_message.cc', |
44 'ipc_message.h', | 48 'ipc_message.h', |
45 'ipc_message_attachment.cc', | 49 'ipc_message_attachment.cc', |
46 'ipc_message_attachment.h', | 50 'ipc_message_attachment.h', |
47 'ipc_message_attachment_set.cc', | 51 'ipc_message_attachment_set.cc', |
48 'ipc_message_attachment_set.h', | 52 'ipc_message_attachment_set.h', |
| 53 'ipc_message_generator.cc', |
| 54 'ipc_message_generator.h', |
49 'ipc_message_macros.h', | 55 'ipc_message_macros.h', |
50 'ipc_message_start.h', | 56 'ipc_message_start.h', |
51 'ipc_message_utils.cc', | 57 'ipc_message_utils.cc', |
52 'ipc_message_utils.h', | 58 'ipc_message_utils.h', |
53 'ipc_param_traits.h', | 59 'ipc_param_traits.h', |
54 'ipc_platform_file.cc', | 60 'ipc_platform_file.cc', |
55 'ipc_platform_file.h', | 61 'ipc_platform_file.h', |
56 'ipc_platform_file_attachment_posix.cc', | 62 'ipc_platform_file_attachment_posix.cc', |
57 'ipc_platform_file_attachment_posix.h', | 63 'ipc_platform_file_attachment_posix.h', |
58 'ipc_sender.h', | 64 'ipc_sender.h', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 ['OS == "win" or OS == "ios"', { | 100 ['OS == "win" or OS == "ios"', { |
95 'sources!': [ | 101 'sources!': [ |
96 'unix_domain_socket_util.cc', | 102 'unix_domain_socket_util.cc', |
97 ], | 103 ], |
98 }], | 104 }], |
99 ], | 105 ], |
100 }], | 106 }], |
101 ], | 107 ], |
102 }, | 108 }, |
103 } | 109 } |
OLD | NEW |