Index: webrtc/modules/video_coding/BUILD.gn |
diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn |
index 4e933e5c58aa4ab502487890bbff129ae5a674c1..a21d0eeb81c814c4d46fbc0b3a180e2c5cbbda4a 100644 |
--- a/webrtc/modules/video_coding/BUILD.gn |
+++ b/webrtc/modules/video_coding/BUILD.gn |
@@ -94,12 +94,21 @@ rtc_static_library("video_coding") { |
":webrtc_vp9", |
"../..:webrtc_common", |
"../../base:rtc_analytics", |
+ "../../base:rtc_base", |
+ "../../base:rtc_base_approved", |
+ "../../base:rtc_task_queue", |
"../../common_video", |
"../../system_wrappers", |
+ "../rtp_rtcp:rtp_rtcp", |
+ "../utility:utility", |
] |
} |
rtc_static_library("video_coding_utility") { |
+ # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) |
+ # Errors on cyclic dependency with :audio_processing if enabled. |
kjellander_webrtc
2016/12/08 17:02:44
:audio_processing here must be a copy-paste error.
ehmaldonado_webrtc
2016/12/08 17:13:45
Done.
|
+ check_includes = false |
+ |
sources = [ |
"utility/default_video_bitrate_allocator.cc", |
"utility/default_video_bitrate_allocator.h", |
@@ -125,13 +134,25 @@ rtc_static_library("video_coding_utility") { |
} |
deps = [ |
+ "../..:webrtc_common", |
"../../base:rtc_analytics", |
+ "../../base:rtc_base_approved", |
"../../common_video", |
"../../system_wrappers", |
] |
} |
rtc_static_library("webrtc_h264") { |
+ # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) |
+ # Errors on cyclic dependency if enabled: |
+ # //webrtc/call:call -> |
+ # //webrtc/video:video -> |
+ # //webrtc/modules/video_coding:video_coding -> |
+ # //webrtc/modules/video_coding:webrtc_h264 -> |
+ # //webrtc/media:rtc_media -> |
+ # //webrtc/call:call |
+ check_includes = false |
+ |
sources = [ |
"codecs/h264/h264.cc", |
"codecs/h264/include/h264.h", |
@@ -144,6 +165,8 @@ rtc_static_library("webrtc_h264") { |
defines = [] |
deps = [ |
+ ":video_coding_utility", |
+ "../../base:rtc_base_approved", |
"../../system_wrappers", |
] |
@@ -179,6 +202,9 @@ rtc_static_library("webrtc_i420") { |
} |
deps = [ |
+ "../..:webrtc_common", |
+ "../../base:rtc_base_approved", |
+ "../../common_video:common_video", |
"../../system_wrappers", |
] |
} |
@@ -212,6 +238,7 @@ rtc_static_library("webrtc_vp8") { |
deps = [ |
":video_coding_utility", |
"../..:webrtc_common", |
+ "../../base:rtc_base_approved", |
"../../common_video", |
"../../system_wrappers", |
] |
@@ -244,6 +271,7 @@ rtc_static_library("webrtc_vp9") { |
deps = [ |
":video_coding_utility", |
+ "../../base:rtc_base_approved", |
"../../common_video", |
"../../system_wrappers", |
] |
@@ -273,6 +301,12 @@ if (rtc_include_tests) { |
} |
deps = [ |
+ ":video_coding", |
+ ":video_coding_utility", |
+ "../..:webrtc_common", |
+ "../../base:rtc_base_approved", |
+ "../../common_video:common_video", |
+ "../../system_wrappers:system_wrappers", |
"../../test:test_support", |
] |
} |