| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "third_party_host_authenticator.h", | 158 "third_party_host_authenticator.h", |
| 159 "token_validator.h", | 159 "token_validator.h", |
| 160 "transport.cc", | 160 "transport.cc", |
| 161 "transport.h", | 161 "transport.h", |
| 162 "transport_context.cc", | 162 "transport_context.cc", |
| 163 "transport_context.h", | 163 "transport_context.h", |
| 164 "v2_authenticator.cc", | 164 "v2_authenticator.cc", |
| 165 "v2_authenticator.h", | 165 "v2_authenticator.h", |
| 166 "validating_authenticator.cc", | 166 "validating_authenticator.cc", |
| 167 "validating_authenticator.h", | 167 "validating_authenticator.h", |
| 168 "video_channel_state_observer.h", |
| 168 "video_renderer.h", | 169 "video_renderer.h", |
| 169 "video_stats_stub.h", | 170 "video_stats_stub.h", |
| 170 "video_stub.h", | 171 "video_stub.h", |
| 171 ] | 172 ] |
| 172 | 173 |
| 173 configs += [ | 174 configs += [ |
| 174 "//build/config:precompiled_headers", | 175 "//build/config:precompiled_headers", |
| 175 "//build/config/compiler:no_size_t_to_int_warning", | 176 "//build/config/compiler:no_size_t_to_int_warning", |
| 176 "//build/config/compiler:wexit_time_destructors", | 177 "//build/config/compiler:wexit_time_destructors", |
| 177 ] | 178 ] |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "webrtc_transport_unittest.cc", | 327 "webrtc_transport_unittest.cc", |
| 327 ] | 328 ] |
| 328 | 329 |
| 329 deps = [ | 330 deps = [ |
| 330 ":test_support", | 331 ":test_support", |
| 331 "//net:test_support", | 332 "//net:test_support", |
| 332 "//testing/gmock", | 333 "//testing/gmock", |
| 333 "//testing/gtest", | 334 "//testing/gtest", |
| 334 ] | 335 ] |
| 335 } | 336 } |
| OLD | NEW |