Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(583)

Unified Diff: webrtc/call/BUILD.gn

Issue 1227923005: Split webrtc/video into webrtc/{audio,call,video}. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/audio/webrtc_audio.gypi ('k') | webrtc/call/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
]
}
« no previous file with comments | « webrtc/audio/webrtc_audio.gypi ('k') | webrtc/call/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698