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.cc', | 14 'attachment_broker.cc', |
15 'attachment_broker.h', | 15 'attachment_broker.h', |
16 'attachment_broker_messages.h', | 16 'attachment_broker_messages.h', |
| 17 'attachment_broker_privileged.cc', |
| 18 'attachment_broker_privileged.h', |
17 'attachment_broker_privileged_win.cc', | 19 'attachment_broker_privileged_win.cc', |
18 'attachment_broker_privileged_win.h', | 20 'attachment_broker_privileged_win.h', |
19 'attachment_broker_win.cc', | 21 'attachment_broker_unprivileged.cc', |
20 'attachment_broker_win.h', | 22 'attachment_broker_unprivileged.h', |
| 23 'attachment_broker_unprivileged_win.cc', |
| 24 'attachment_broker_unprivileged_win.h', |
21 'brokerable_attachment.cc', | 25 'brokerable_attachment.cc', |
22 'brokerable_attachment.h', | 26 'brokerable_attachment.h', |
23 'handle_attachment_win.cc', | 27 'handle_attachment_win.cc', |
24 'handle_attachment_win.h', | 28 'handle_attachment_win.h', |
25 'ipc_channel.cc', | 29 'ipc_channel.cc', |
26 'ipc_channel.h', | 30 'ipc_channel.h', |
27 'ipc_channel_factory.cc', | 31 'ipc_channel_factory.cc', |
28 'ipc_channel_factory.h', | 32 'ipc_channel_factory.h', |
29 'ipc_channel_common.cc', | 33 'ipc_channel_common.cc', |
30 'ipc_channel_handle.h', | 34 'ipc_channel_handle.h', |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 ['OS == "win" or OS == "ios"', { | 105 ['OS == "win" or OS == "ios"', { |
102 'sources!': [ | 106 'sources!': [ |
103 'unix_domain_socket_util.cc', | 107 'unix_domain_socket_util.cc', |
104 ], | 108 ], |
105 }], | 109 }], |
106 ], | 110 ], |
107 }], | 111 }], |
108 ], | 112 ], |
109 }, | 113 }, |
110 } | 114 } |
OLD | NEW |