| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "http_ice_config_request.h", | 69 "http_ice_config_request.h", |
| 70 "ice_config.cc", | 70 "ice_config.cc", |
| 71 "ice_config.h", | 71 "ice_config.h", |
| 72 "ice_config_request.h", | 72 "ice_config_request.h", |
| 73 "ice_connection_to_host.cc", | 73 "ice_connection_to_host.cc", |
| 74 "ice_connection_to_host.h", | 74 "ice_connection_to_host.h", |
| 75 "ice_transport.cc", | 75 "ice_transport.cc", |
| 76 "ice_transport.h", | 76 "ice_transport.h", |
| 77 "ice_transport_channel.cc", | 77 "ice_transport_channel.cc", |
| 78 "ice_transport_channel.h", | 78 "ice_transport_channel.h", |
| 79 "input_event_timestamps.cc", |
| 80 "input_event_timestamps.h", |
| 79 "input_event_tracker.cc", | 81 "input_event_tracker.cc", |
| 80 "input_event_tracker.h", | 82 "input_event_tracker.h", |
| 81 "input_filter.cc", | 83 "input_filter.cc", |
| 82 "input_filter.h", | 84 "input_filter.h", |
| 83 "input_stub.h", | 85 "input_stub.h", |
| 84 "it2me_host_authenticator_factory.cc", | 86 "it2me_host_authenticator_factory.cc", |
| 85 "it2me_host_authenticator_factory.h", | 87 "it2me_host_authenticator_factory.h", |
| 86 "jingle_info_request.cc", | 88 "jingle_info_request.cc", |
| 87 "jingle_info_request.h", | 89 "jingle_info_request.h", |
| 88 "jingle_messages.cc", | 90 "jingle_messages.cc", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 "webrtc_transport_unittest.cc", | 329 "webrtc_transport_unittest.cc", |
| 328 ] | 330 ] |
| 329 | 331 |
| 330 deps = [ | 332 deps = [ |
| 331 ":test_support", | 333 ":test_support", |
| 332 "//net:test_support", | 334 "//net:test_support", |
| 333 "//testing/gmock", | 335 "//testing/gmock", |
| 334 "//testing/gtest", | 336 "//testing/gtest", |
| 335 ] | 337 ] |
| 336 } | 338 } |
| OLD | NEW |