BUILD.gn (1797B)
1 # Copyright(c) 2025 The WebRTC project authors.All Rights Reserved. 2 # 3 # Use of this source code is governed by a BSD - style license 4 # that can be found in the LICENSE file in the root of the source 5 # tree.An additional intellectual property rights grant can be found 6 # in the file PATENTS.All contributing project authors may 7 # be found in the AUTHORS file in the root of the source tree. 8 9 import("../../../../webrtc.gni") 10 11 if (rtc_include_tests) { 12 rtc_library("cc_feedback_generator") { 13 testonly = true 14 sources = [ 15 "cc_feedback_generator.cc", 16 "cc_feedback_generator.h", 17 ] 18 deps = [ 19 "../../../../api:simulated_network_api", 20 "../../../../api/test/network_emulation:network_queue", 21 "../../../../api/transport:ecn_marking", 22 "../../../../api/transport:network_control", 23 "../../../../api/units:data_rate", 24 "../../../../api/units:data_size", 25 "../../../../api/units:time_delta", 26 "../../../../api/units:timestamp", 27 "../../../../rtc_base:checks", 28 "../../../../rtc_base:logging", 29 "../../../../system_wrappers", 30 "../../../../test:test_support", 31 "../../../../test/network:simulated_network", 32 ] 33 } 34 35 rtc_library("cc_feedback_generator_unittests") { 36 testonly = true 37 sources = [ "cc_feedback_generator_unittest.cc" ] 38 deps = [ 39 ":cc_feedback_generator", 40 "../../../../api/transport:ecn_marking", 41 "../../../../api/transport:network_control", 42 "../../../../api/units:data_rate", 43 "../../../../api/units:data_size", 44 "../../../../api/units:time_delta", 45 "../../../../api/units:timestamp", 46 "../../../../system_wrappers", 47 "../../../../test:test_support", 48 "../../../../test/network:simulated_network", 49 "//testing/gtest", 50 ] 51 } 52 }