| 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 | 6 |
| 7 static_library("protocol") { | 7 static_library("protocol") { |
| 8 sources = [ | 8 sources = [ |
| 9 "audio_pump.cc", |
| 10 "audio_pump.h", |
| 9 "audio_reader.cc", | 11 "audio_reader.cc", |
| 10 "audio_reader.h", | 12 "audio_reader.h", |
| 11 "audio_stub.h", | 13 "audio_stub.h", |
| 12 "audio_writer.cc", | 14 "audio_writer.cc", |
| 13 "audio_writer.h", | 15 "audio_writer.h", |
| 14 "auth_util.cc", | 16 "auth_util.cc", |
| 15 "auth_util.h", | 17 "auth_util.h", |
| 16 "authenticator.cc", | 18 "authenticator.cc", |
| 17 "authenticator.h", | 19 "authenticator.h", |
| 18 "capability_names.h", | 20 "capability_names.h", |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 public_deps = [ | 263 public_deps = [ |
| 262 ":protocol", | 264 ":protocol", |
| 263 "//testing/gmock", | 265 "//testing/gmock", |
| 264 ] | 266 ] |
| 265 } | 267 } |
| 266 | 268 |
| 267 source_set("unit_tests") { | 269 source_set("unit_tests") { |
| 268 testonly = true | 270 testonly = true |
| 269 | 271 |
| 270 sources = [ | 272 sources = [ |
| 273 "audio_pump_unittest.cc", |
| 271 "authenticator_test_base.cc", | 274 "authenticator_test_base.cc", |
| 272 "authenticator_test_base.h", | 275 "authenticator_test_base.h", |
| 273 "capture_scheduler_unittest.cc", | 276 "capture_scheduler_unittest.cc", |
| 274 "channel_multiplexer_unittest.cc", | 277 "channel_multiplexer_unittest.cc", |
| 275 "channel_socket_adapter_unittest.cc", | 278 "channel_socket_adapter_unittest.cc", |
| 276 "chromium_socket_factory_unittest.cc", | 279 "chromium_socket_factory_unittest.cc", |
| 277 "client_video_dispatcher_unittest.cc", | 280 "client_video_dispatcher_unittest.cc", |
| 278 "clipboard_echo_filter_unittest.cc", | 281 "clipboard_echo_filter_unittest.cc", |
| 279 "clipboard_filter_unittest.cc", | 282 "clipboard_filter_unittest.cc", |
| 280 "connection_tester.cc", | 283 "connection_tester.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 306 "webrtc_transport_unittest.cc", | 309 "webrtc_transport_unittest.cc", |
| 307 ] | 310 ] |
| 308 | 311 |
| 309 deps = [ | 312 deps = [ |
| 310 ":test_support", | 313 ":test_support", |
| 311 "//net:test_support", | 314 "//net:test_support", |
| 312 "//testing/gmock", | 315 "//testing/gmock", |
| 313 "//testing/gtest", | 316 "//testing/gtest", |
| 314 ] | 317 ] |
| 315 } | 318 } |
| OLD | NEW |