| 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_reader.cc", | 9 "audio_reader.cc", |
| 10 "audio_reader.h", | 10 "audio_reader.h", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "third_party_client_authenticator.h", | 152 "third_party_client_authenticator.h", |
| 153 "third_party_host_authenticator.cc", | 153 "third_party_host_authenticator.cc", |
| 154 "third_party_host_authenticator.h", | 154 "third_party_host_authenticator.h", |
| 155 "token_validator.h", | 155 "token_validator.h", |
| 156 "transport.cc", | 156 "transport.cc", |
| 157 "transport.h", | 157 "transport.h", |
| 158 "transport_context.cc", | 158 "transport_context.cc", |
| 159 "transport_context.h", | 159 "transport_context.h", |
| 160 "v2_authenticator.cc", | 160 "v2_authenticator.cc", |
| 161 "v2_authenticator.h", | 161 "v2_authenticator.h", |
| 162 "validating_authenticator.cc", |
| 163 "validating_authenticator.h", |
| 162 "video_renderer.h", | 164 "video_renderer.h", |
| 163 "video_stats_stub.h", | 165 "video_stats_stub.h", |
| 164 "video_stub.h", | 166 "video_stub.h", |
| 165 ] | 167 ] |
| 166 | 168 |
| 167 configs += [ | 169 configs += [ |
| 168 "//build/config:precompiled_headers", | 170 "//build/config:precompiled_headers", |
| 169 "//build/config/compiler:no_size_t_to_int_warning", | 171 "//build/config/compiler:no_size_t_to_int_warning", |
| 170 "//build/config/compiler:wexit_time_destructors", | 172 "//build/config/compiler:wexit_time_destructors", |
| 171 ] | 173 ] |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "negotiating_authenticator_unittest.cc", | 294 "negotiating_authenticator_unittest.cc", |
| 293 "pairing_registry_unittest.cc", | 295 "pairing_registry_unittest.cc", |
| 294 "port_range_unittest.cc", | 296 "port_range_unittest.cc", |
| 295 "ppapi_module_stub.cc", | 297 "ppapi_module_stub.cc", |
| 296 "pseudotcp_adapter_unittest.cc", | 298 "pseudotcp_adapter_unittest.cc", |
| 297 "session_config_unittest.cc", | 299 "session_config_unittest.cc", |
| 298 "spake2_authenticator_unittest.cc", | 300 "spake2_authenticator_unittest.cc", |
| 299 "ssl_hmac_channel_authenticator_unittest.cc", | 301 "ssl_hmac_channel_authenticator_unittest.cc", |
| 300 "third_party_authenticator_unittest.cc", | 302 "third_party_authenticator_unittest.cc", |
| 301 "v2_authenticator_unittest.cc", | 303 "v2_authenticator_unittest.cc", |
| 304 "validating_authenticator_unittest.cc", |
| 302 "video_frame_pump_unittest.cc", | 305 "video_frame_pump_unittest.cc", |
| 303 "webrtc_transport_unittest.cc", | 306 "webrtc_transport_unittest.cc", |
| 304 ] | 307 ] |
| 305 | 308 |
| 306 deps = [ | 309 deps = [ |
| 307 ":test_support", | 310 ":test_support", |
| 308 "//net:test_support", | 311 "//net:test_support", |
| 309 "//testing/gmock", | 312 "//testing/gmock", |
| 310 "//testing/gtest", | 313 "//testing/gtest", |
| 311 ] | 314 ] |
| 312 } | 315 } |
| OLD | NEW |