| 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_decode_scheduler.cc", |
| 10 "audio_decode_scheduler.h", |
| 9 "audio_pump.cc", | 11 "audio_pump.cc", |
| 10 "audio_pump.h", | 12 "audio_pump.h", |
| 11 "audio_reader.cc", | 13 "audio_reader.cc", |
| 12 "audio_reader.h", | 14 "audio_reader.h", |
| 13 "audio_stub.h", | 15 "audio_stub.h", |
| 14 "audio_writer.cc", | 16 "audio_writer.cc", |
| 15 "audio_writer.h", | 17 "audio_writer.h", |
| 16 "auth_util.cc", | 18 "auth_util.cc", |
| 17 "auth_util.h", | 19 "auth_util.h", |
| 18 "authenticator.cc", | 20 "authenticator.cc", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 public_deps = [ | 268 public_deps = [ |
| 267 ":protocol", | 269 ":protocol", |
| 268 "//testing/gmock", | 270 "//testing/gmock", |
| 269 ] | 271 ] |
| 270 } | 272 } |
| 271 | 273 |
| 272 source_set("unit_tests") { | 274 source_set("unit_tests") { |
| 273 testonly = true | 275 testonly = true |
| 274 | 276 |
| 275 sources = [ | 277 sources = [ |
| 278 "audio_decode_scheduler_unittest.cc", |
| 276 "audio_pump_unittest.cc", | 279 "audio_pump_unittest.cc", |
| 277 "authenticator_test_base.cc", | 280 "authenticator_test_base.cc", |
| 278 "authenticator_test_base.h", | 281 "authenticator_test_base.h", |
| 279 "capture_scheduler_unittest.cc", | 282 "capture_scheduler_unittest.cc", |
| 280 "channel_multiplexer_unittest.cc", | 283 "channel_multiplexer_unittest.cc", |
| 281 "channel_socket_adapter_unittest.cc", | 284 "channel_socket_adapter_unittest.cc", |
| 282 "chromium_socket_factory_unittest.cc", | 285 "chromium_socket_factory_unittest.cc", |
| 283 "client_video_dispatcher_unittest.cc", | 286 "client_video_dispatcher_unittest.cc", |
| 284 "clipboard_echo_filter_unittest.cc", | 287 "clipboard_echo_filter_unittest.cc", |
| 285 "clipboard_filter_unittest.cc", | 288 "clipboard_filter_unittest.cc", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 312 "webrtc_transport_unittest.cc", | 315 "webrtc_transport_unittest.cc", |
| 313 ] | 316 ] |
| 314 | 317 |
| 315 deps = [ | 318 deps = [ |
| 316 ":test_support", | 319 ":test_support", |
| 317 "//net:test_support", | 320 "//net:test_support", |
| 318 "//testing/gmock", | 321 "//testing/gmock", |
| 319 "//testing/gtest", | 322 "//testing/gtest", |
| 320 ] | 323 ] |
| 321 } | 324 } |
| OLD | NEW |