blob: aa44b0dac8e60cac4c1b6acc1bf3209e7578d59d [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
9source_set("pacing") {
10 sources = [
11 "include/paced_sender.h",
stefan@webrtc.org82462aa2014-10-23 11:57:05 +000012 "bitrate_prober.cc",
13 "bitrate_prober.h",
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000014 "paced_sender.cc",
15 ]
16
kjellander@webrtc.orgf21ea912014-09-28 17:37:22 +000017 configs += [ "../..:common_config" ]
18 public_configs = [ "../..:common_inherited_config" ]
19
kjellander@webrtc.org42ee5b52014-08-25 14:15:35 +000020 if (is_clang) {
21 # Suppress warnings from Chrome's Clang plugins.
22 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
23 configs -= [ "//build/config/clang:find_bad_constructs" ]
24 }
25
kjellander@webrtc.org1227ab82014-06-23 19:21:07 +000026 deps = [ "../../system_wrappers" ]
27}