| 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", | 9 "audio_decode_scheduler.cc", |
| 10 "audio_decode_scheduler.h", | 10 "audio_decode_scheduler.h", |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "ppapi_module_stub.cc", | 319 "ppapi_module_stub.cc", |
| 320 "pseudotcp_adapter_unittest.cc", | 320 "pseudotcp_adapter_unittest.cc", |
| 321 "session_config_unittest.cc", | 321 "session_config_unittest.cc", |
| 322 "spake2_authenticator_unittest.cc", | 322 "spake2_authenticator_unittest.cc", |
| 323 "ssl_hmac_channel_authenticator_unittest.cc", | 323 "ssl_hmac_channel_authenticator_unittest.cc", |
| 324 "third_party_authenticator_unittest.cc", | 324 "third_party_authenticator_unittest.cc", |
| 325 "v2_authenticator_unittest.cc", | 325 "v2_authenticator_unittest.cc", |
| 326 "validating_authenticator_unittest.cc", | 326 "validating_authenticator_unittest.cc", |
| 327 "video_frame_pump_unittest.cc", | 327 "video_frame_pump_unittest.cc", |
| 328 "webrtc_audio_source_adapter_unittest.cc", | 328 "webrtc_audio_source_adapter_unittest.cc", |
| 329 "webrtc_frame_scheduler_unittest.cc", |
| 329 "webrtc_transport_unittest.cc", | 330 "webrtc_transport_unittest.cc", |
| 330 ] | 331 ] |
| 331 | 332 |
| 332 deps = [ | 333 deps = [ |
| 333 ":test_support", | 334 ":test_support", |
| 334 "//net:test_support", | 335 "//net:test_support", |
| 335 "//testing/gmock", | 336 "//testing/gmock", |
| 336 "//testing/gtest", | 337 "//testing/gtest", |
| 337 ] | 338 ] |
| 338 } | 339 } |
| OLD | NEW |