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

Unified Diff: webrtc/modules/remote_bitrate_estimator/BUILD.gn

Issue 2602563003: Refactor bitrate_controller, remote_bitrate_estimator and congestion_contoller for gn check (Closed)
Patch Set: Adding .gn after chromium buildbots check Created 4 years 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
Index: webrtc/modules/remote_bitrate_estimator/BUILD.gn
diff --git a/webrtc/modules/remote_bitrate_estimator/BUILD.gn b/webrtc/modules/remote_bitrate_estimator/BUILD.gn
index 67aa7c8fd4d7303a7af7150117e6438c1dc78278..cbf0199464ce34344c31b6b7d1bf248c78e2a84c 100644
--- a/webrtc/modules/remote_bitrate_estimator/BUILD.gn
+++ b/webrtc/modules/remote_bitrate_estimator/BUILD.gn
@@ -9,6 +9,11 @@
import("../../build/webrtc.gni")
rtc_static_library("remote_bitrate_estimator") {
+ # TODO(mbonadei): Remove (bugs.webrtc.org/6828)
+ # Errors on cyclic dependency with:
+ # rtp_rtcp:rtp_rtcp if enabled.
+ check_includes = false
+
sources = [
"aimd_rate_control.cc",
"aimd_rate_control.h",
@@ -46,6 +51,7 @@ rtc_static_library("remote_bitrate_estimator") {
deps = [
"../..:webrtc_common",
+ "../../base:rtc_base",
"../../base:rtc_base_approved",
"../../system_wrappers",
]
@@ -102,9 +108,18 @@ if (rtc_include_tests) {
}
deps = [
+ ":remote_bitrate_estimator",
+ "../..:webrtc_common",
+ "../../base:gtest_prod",
+ "../../base:rtc_base",
+ "../../base:rtc_base_approved",
+ "../../system_wrappers:system_wrappers",
kjellander_webrtc 2016/12/27 06:22:55 Please leave out explicit target naming here. "../
mbonadei 2016/12/27 14:51:17 Ok, I also removed the explicit target naming from
"../../test:test_support",
+ "../../voice_engine:voice_engine",
kjellander_webrtc 2016/12/27 06:22:55 This is an odd dependency. I think it was introduc
+ "../bitrate_controller:bitrate_controller",
"../congestion_controller",
"../pacing",
+ "../rtp_rtcp:rtp_rtcp",
"//testing/gmock",
"//testing/gtest",
]
« webrtc/modules/congestion_controller/BUILD.gn ('K') | « webrtc/modules/pacing/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698