| 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', | 17 'attachment_broker_privileged.cc', |
| 18 'attachment_broker_privileged.h', | 18 'attachment_broker_privileged.h', |
| 19 'attachment_broker_privileged_win.cc', | 19 'attachment_broker_privileged_win.cc', |
| 20 'attachment_broker_privileged_win.h', | 20 'attachment_broker_privileged_win.h', |
| 21 'attachment_broker_unprivileged.cc', | 21 'attachment_broker_unprivileged.cc', |
| 22 'attachment_broker_unprivileged.h', | 22 'attachment_broker_unprivileged.h', |
| 23 'attachment_broker_unprivileged_win.cc', | 23 'attachment_broker_unprivileged_win.cc', |
| 24 'attachment_broker_unprivileged_win.h', | 24 'attachment_broker_unprivileged_win.h', |
| 25 'brokerable_attachment.cc', | 25 'brokerable_attachment.cc', |
| 26 'brokerable_attachment.h', | 26 'brokerable_attachment.h', |
| 27 'brokerable_attachment_win.cc', |
| 27 'handle_attachment_win.cc', | 28 'handle_attachment_win.cc', |
| 28 'handle_attachment_win.h', | 29 'handle_attachment_win.h', |
| 29 'handle_win.cc', | 30 'handle_win.cc', |
| 30 'handle_win.h', | 31 'handle_win.h', |
| 31 'ipc_channel.cc', | 32 'ipc_channel.cc', |
| 32 'ipc_channel.h', | 33 'ipc_channel.h', |
| 33 'ipc_channel_factory.cc', | 34 'ipc_channel_factory.cc', |
| 34 'ipc_channel_factory.h', | 35 'ipc_channel_factory.h', |
| 35 'ipc_channel_common.cc', | 36 'ipc_channel_common.cc', |
| 36 'ipc_channel_handle.h', | 37 'ipc_channel_handle.h', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ['OS == "win" or OS == "ios"', { | 110 ['OS == "win" or OS == "ios"', { |
| 110 'sources!': [ | 111 'sources!': [ |
| 111 'unix_domain_socket_util.cc', | 112 'unix_domain_socket_util.cc', |
| 112 ], | 113 ], |
| 113 }], | 114 }], |
| 114 ], | 115 ], |
| 115 }], | 116 }], |
| 116 ], | 117 ], |
| 117 }, | 118 }, |
| 118 } | 119 } |
| OLD | NEW |