| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("protocol") { | 5 static_library("protocol") { |
| 6 sources = [ | 6 sources = [ |
| 7 "audio_reader.cc", | 7 "audio_reader.cc", |
| 8 "audio_reader.h", | 8 "audio_reader.h", |
| 9 "audio_stub.h", | 9 "audio_stub.h", |
| 10 "audio_writer.cc", | 10 "audio_writer.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "clipboard_filter.h", | 37 "clipboard_filter.h", |
| 38 "clipboard_stub.h", | 38 "clipboard_stub.h", |
| 39 "clipboard_thread_proxy.cc", | 39 "clipboard_thread_proxy.cc", |
| 40 "clipboard_thread_proxy.h", | 40 "clipboard_thread_proxy.h", |
| 41 "connection_to_client.cc", | 41 "connection_to_client.cc", |
| 42 "connection_to_client.h", | 42 "connection_to_client.h", |
| 43 "connection_to_host.cc", | 43 "connection_to_host.cc", |
| 44 "connection_to_host.h", | 44 "connection_to_host.h", |
| 45 "content_description.cc", | 45 "content_description.cc", |
| 46 "content_description.h", | 46 "content_description.h", |
| 47 "datagram_channel_factory.h", | |
| 48 "errors.h", | 47 "errors.h", |
| 49 "host_control_dispatcher.cc", | 48 "host_control_dispatcher.cc", |
| 50 "host_control_dispatcher.h", | 49 "host_control_dispatcher.h", |
| 51 "host_event_dispatcher.cc", | 50 "host_event_dispatcher.cc", |
| 52 "host_event_dispatcher.h", | 51 "host_event_dispatcher.h", |
| 53 "host_stub.h", | 52 "host_stub.h", |
| 54 "input_event_tracker.cc", | 53 "input_event_tracker.cc", |
| 55 "input_event_tracker.h", | 54 "input_event_tracker.h", |
| 56 "input_filter.cc", | 55 "input_filter.cc", |
| 57 "input_filter.h", | 56 "input_filter.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "pairing_client_authenticator.cc", | 91 "pairing_client_authenticator.cc", |
| 93 "pairing_client_authenticator.h", | 92 "pairing_client_authenticator.h", |
| 94 "pairing_host_authenticator.cc", | 93 "pairing_host_authenticator.cc", |
| 95 "pairing_host_authenticator.h", | 94 "pairing_host_authenticator.h", |
| 96 "pairing_registry.cc", | 95 "pairing_registry.cc", |
| 97 "pairing_registry.h", | 96 "pairing_registry.h", |
| 98 "protobuf_video_reader.cc", | 97 "protobuf_video_reader.cc", |
| 99 "protobuf_video_reader.h", | 98 "protobuf_video_reader.h", |
| 100 "protobuf_video_writer.cc", | 99 "protobuf_video_writer.cc", |
| 101 "protobuf_video_writer.h", | 100 "protobuf_video_writer.h", |
| 102 "pseudotcp_channel_factory.cc", | |
| 103 "pseudotcp_channel_factory.h", | |
| 104 "secure_channel_factory.cc", | |
| 105 "secure_channel_factory.h", | |
| 106 "session.h", | 101 "session.h", |
| 107 "session_config.cc", | 102 "session_config.cc", |
| 108 "session_config.h", | 103 "session_config.h", |
| 109 "session_manager.h", | 104 "session_manager.h", |
| 110 "socket_util.cc", | 105 "socket_util.cc", |
| 111 "socket_util.h", | 106 "socket_util.h", |
| 112 "ssl_hmac_channel_authenticator.cc", | 107 "ssl_hmac_channel_authenticator.cc", |
| 113 "ssl_hmac_channel_authenticator.h", | 108 "ssl_hmac_channel_authenticator.h", |
| 114 "stream_channel_factory.h", | |
| 115 "third_party_authenticator_base.cc", | 109 "third_party_authenticator_base.cc", |
| 116 "third_party_authenticator_base.h", | 110 "third_party_authenticator_base.h", |
| 117 "third_party_client_authenticator.cc", | 111 "third_party_client_authenticator.cc", |
| 118 "third_party_client_authenticator.h", | 112 "third_party_client_authenticator.h", |
| 119 "third_party_host_authenticator.cc", | 113 "third_party_host_authenticator.cc", |
| 120 "third_party_host_authenticator.h", | 114 "third_party_host_authenticator.h", |
| 121 "token_validator.h", | 115 "token_validator.h", |
| 122 "transport.cc", | 116 "transport.cc", |
| 123 "transport.h", | 117 "transport.h", |
| 124 "v2_authenticator.cc", | 118 "v2_authenticator.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 150 "//jingle:notifier", | 144 "//jingle:notifier", |
| 151 "//net", | 145 "//net", |
| 152 "//remoting/base", | 146 "//remoting/base", |
| 153 "//third_party/libjingle", | 147 "//third_party/libjingle", |
| 154 ] | 148 ] |
| 155 | 149 |
| 156 forward_dependent_configs_from = [ | 150 forward_dependent_configs_from = [ |
| 157 "//third_party/libjingle", | 151 "//third_party/libjingle", |
| 158 ] | 152 ] |
| 159 } | 153 } |
| OLD | NEW |