| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//remoting/remoting_srcs.gni") | 6 import("//remoting/remoting_srcs.gni") |
| 7 | 7 |
| 8 source_set("protocol") { | 8 source_set("protocol") { |
| 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, | 9 sources = rebase_path(remoting_srcs_gypi_values.remoting_protocol_sources, |
| 10 ".", | 10 ".", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//third_party/libjingle", | 21 "//third_party/libjingle", |
| 22 ] | 22 ] |
| 23 deps = [ | 23 deps = [ |
| 24 "//base", | 24 "//base", |
| 25 "//crypto", | 25 "//crypto", |
| 26 "//jingle:jingle_glue", | 26 "//jingle:jingle_glue", |
| 27 "//net", | 27 "//net", |
| 28 "//remoting/base", | 28 "//remoting/base", |
| 29 "//remoting/codec", | 29 "//remoting/codec", |
| 30 "//remoting/signaling", | 30 "//remoting/signaling", |
| 31 "//third_party/boringssl", |
| 31 "//third_party/libyuv", | 32 "//third_party/libyuv", |
| 32 ] | 33 ] |
| 33 | 34 |
| 34 if (!is_nacl) { | 35 if (!is_nacl) { |
| 35 sources += | 36 sources += |
| 36 rebase_path(remoting_srcs_gypi_values.remoting_protocol_nonnacl_sources, | 37 rebase_path(remoting_srcs_gypi_values.remoting_protocol_nonnacl_sources, |
| 37 ".", | 38 ".", |
| 38 "//remoting") | 39 "//remoting") |
| 39 | 40 |
| 40 if (enable_webrtc) { | 41 if (enable_webrtc) { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "message_decoder_unittest.cc", | 113 "message_decoder_unittest.cc", |
| 113 "message_reader_unittest.cc", | 114 "message_reader_unittest.cc", |
| 114 "monitored_video_stub_unittest.cc", | 115 "monitored_video_stub_unittest.cc", |
| 115 "mouse_input_filter_unittest.cc", | 116 "mouse_input_filter_unittest.cc", |
| 116 "negotiating_authenticator_unittest.cc", | 117 "negotiating_authenticator_unittest.cc", |
| 117 "pairing_registry_unittest.cc", | 118 "pairing_registry_unittest.cc", |
| 118 "port_range_unittest.cc", | 119 "port_range_unittest.cc", |
| 119 "ppapi_module_stub.cc", | 120 "ppapi_module_stub.cc", |
| 120 "pseudotcp_adapter_unittest.cc", | 121 "pseudotcp_adapter_unittest.cc", |
| 121 "session_config_unittest.cc", | 122 "session_config_unittest.cc", |
| 123 "spake2_authenticator_unittest.cc", |
| 122 "ssl_hmac_channel_authenticator_unittest.cc", | 124 "ssl_hmac_channel_authenticator_unittest.cc", |
| 123 "third_party_authenticator_unittest.cc", | 125 "third_party_authenticator_unittest.cc", |
| 124 "v2_authenticator_unittest.cc", | 126 "v2_authenticator_unittest.cc", |
| 125 "video_frame_pump_unittest.cc", | 127 "video_frame_pump_unittest.cc", |
| 126 "webrtc_transport_unittest.cc", | 128 "webrtc_transport_unittest.cc", |
| 127 ] | 129 ] |
| 128 | 130 |
| 129 deps = [ | 131 deps = [ |
| 130 ":test_support", | 132 ":test_support", |
| 131 "//testing/gmock", | 133 "//testing/gmock", |
| 132 "//testing/gtest", | 134 "//testing/gtest", |
| 133 ] | 135 ] |
| 134 } | 136 } |
| OLD | NEW |