| Index: webrtc/call/BUILD.gn
|
| diff --git a/webrtc/modules/pacing/BUILD.gn b/webrtc/call/BUILD.gn
|
| similarity index 58%
|
| copy from webrtc/modules/pacing/BUILD.gn
|
| copy to webrtc/call/BUILD.gn
|
| index 3e478c1e76ba284f796c5e810a6f85ba5c95fccc..ebd30db97fc0dad12a21ee6d0508b274ebbc23c0 100644
|
| --- a/webrtc/modules/pacing/BUILD.gn
|
| +++ b/webrtc/call/BUILD.gn
|
| @@ -1,4 +1,4 @@
|
| -# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
| +# Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
| #
|
| # Use of this source code is governed by a BSD-style license
|
| # that can be found in the LICENSE file in the root of the source
|
| @@ -6,18 +6,17 @@
|
| # in the file PATENTS. All contributing project authors may
|
| # be found in the AUTHORS file in the root of the source tree.
|
|
|
| -source_set("pacing") {
|
| +import("../build/webrtc.gni")
|
| +
|
| +source_set("call") {
|
| sources = [
|
| - "bitrate_prober.cc",
|
| - "bitrate_prober.h",
|
| - "include/paced_sender.h",
|
| - "include/packet_router.h",
|
| - "paced_sender.cc",
|
| - "packet_router.cc",
|
| + "call.cc",
|
| + "transport_adapter.cc",
|
| + "transport_adapter.h",
|
| ]
|
|
|
| - configs += [ "../..:common_config" ]
|
| - public_configs = [ "../..:common_inherited_config" ]
|
| + configs += [ "..:common_config" ]
|
| + public_configs = [ "..:common_inherited_config" ]
|
|
|
| if (is_clang) {
|
| # Suppress warnings from Chrome's Clang plugins.
|
| @@ -26,8 +25,9 @@ source_set("pacing") {
|
| }
|
|
|
| deps = [
|
| - "../../system_wrappers",
|
| - "../bitrate_controller",
|
| - "../rtp_rtcp",
|
| + "..:rtc_event_log",
|
| + "..:webrtc_common",
|
| + "../modules/rtp_rtcp",
|
| + "../system_wrappers",
|
| ]
|
| }
|
|
|