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

Unified Diff: webrtc/call/BUILD.gn

Issue 2988853002: Only one implementation of MockRtpPacketSink once (Closed)
Patch Set: CR response Created 3 years, 5 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 | « no previous file | webrtc/call/rtp_demuxer_unittest.cc » ('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/call/BUILD.gn b/webrtc/call/BUILD.gn
index c40b557d4cda89b7ff9a53e4fc727d32962002b9..2f0483092a076f34f0395033d2a8db861b5f9308 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -33,8 +33,15 @@ rtc_source_set("call_interfaces") {
]
}
+# TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|.
+rtc_source_set("mock_rtp_interfaces") {
danilchap 2017/07/26 10:28:59 probably better to move inside if (rtc_include_tes
eladalon 2017/07/26 11:24:27 Done.
+ sources = [
danilchap 2017/07/26 10:28:59 add testonly = true
eladalon 2017/07/26 11:24:27 Done.
+ "test/mock_rtp_packet_sink_interface.h",
+ ]
danilchap 2017/07/26 10:28:59 add deps on rtp_interfaces and //testing/gmock It
+}
+
# TODO(nisse): These RTP targets should be moved elsewhere
-# when interfaces have stabilized.
+# when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|.
rtc_source_set("rtp_interfaces") {
sources = [
"rtcp_packet_sink_interface.h",
@@ -144,6 +151,7 @@ if (rtc_include_tests) {
]
deps = [
":call",
+ ":mock_rtp_interfaces",
eladalon 2017/07/26 09:01:05 I find it odd that this didn't actually appear to
danilchap 2017/07/26 10:28:59 Because we currently do not check that only header
eladalon 2017/07/26 11:24:27 Done.
":rtp_interfaces",
":rtp_receiver",
":rtp_sender",
« no previous file with comments | « no previous file | webrtc/call/rtp_demuxer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698