blob: 7a16297329c65fd42e494dd4e5030ea092a812c0 [file] [log] [blame]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +00001# Copyright (c) 2014 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
ehmaldonado38a21322016-09-02 04:10:34 -07009import("../../build/webrtc.gni")
10
kjellanderb62dbbe2016-09-23 00:38:52 -070011rtc_static_library("pacing") {
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000012 sources = [
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000013 "bitrate_prober.cc",
14 "bitrate_prober.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000015 "paced_sender.cc",
Henrik Kjellander0b9e29c2015-11-16 11:12:24 +010016 "paced_sender.h",
Stefan Holmere5904162015-03-26 11:11:06 +010017 "packet_router.cc",
Henrik Kjellander0b9e29c2015-11-16 11:12:24 +010018 "packet_router.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000019 ]
20
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000021 if (is_clang) {
22 # Suppress warnings from Chrome's Clang plugins.
23 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
ehmaldonado38a21322016-09-02 04:10:34 -070024 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000025 }
26
Henrik Kjellander57e5fd22015-05-25 12:55:39 +020027 deps = [
28 "../../system_wrappers",
sprang867fb522015-08-03 04:38:41 -070029 "../bitrate_controller",
sprangebbf8a82015-09-21 15:11:14 -070030 "../rtp_rtcp",
Henrik Kjellander57e5fd22015-05-25 12:55:39 +020031 ]
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000032}