| 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 static_library("protocol") { | 8 static_library("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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 public_deps = [ | 81 public_deps = [ |
| 82 ":protocol", | 82 ":protocol", |
| 83 "//testing/gmock", | 83 "//testing/gmock", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| 86 | 86 |
| 87 source_set("unit_tests") { | 87 source_set("unit_tests") { |
| 88 testonly = true | 88 testonly = true |
| 89 | 89 |
| 90 sources = [ | 90 sources = [ |
| 91 "audio_pump_unittest.cc", |
| 91 "authenticator_test_base.cc", | 92 "authenticator_test_base.cc", |
| 92 "authenticator_test_base.h", | 93 "authenticator_test_base.h", |
| 93 "capture_scheduler_unittest.cc", | 94 "capture_scheduler_unittest.cc", |
| 94 "channel_multiplexer_unittest.cc", | 95 "channel_multiplexer_unittest.cc", |
| 95 "channel_socket_adapter_unittest.cc", | 96 "channel_socket_adapter_unittest.cc", |
| 96 "chromium_socket_factory_unittest.cc", | 97 "chromium_socket_factory_unittest.cc", |
| 97 "client_video_dispatcher_unittest.cc", | 98 "client_video_dispatcher_unittest.cc", |
| 98 "clipboard_echo_filter_unittest.cc", | 99 "clipboard_echo_filter_unittest.cc", |
| 99 "clipboard_filter_unittest.cc", | 100 "clipboard_filter_unittest.cc", |
| 100 "connection_tester.cc", | 101 "connection_tester.cc", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 125 "webrtc_transport_unittest.cc", | 126 "webrtc_transport_unittest.cc", |
| 126 ] | 127 ] |
| 127 | 128 |
| 128 deps = [ | 129 deps = [ |
| 129 ":test_support", | 130 ":test_support", |
| 130 "//net:test_support", | 131 "//net:test_support", |
| 131 "//testing/gmock", | 132 "//testing/gmock", |
| 132 "//testing/gtest", | 133 "//testing/gtest", |
| 133 ] | 134 ] |
| 134 } | 135 } |
| OLD | NEW |