Add mock_rtc_event_log.h.

Bug: webrtc:7642
Change-Id: Id3aa84d79e5e1a0520a968117cee550c9dd33c16
Reviewed-on: https://webrtc-review.googlesource.com/37040
Commit-Queue: Patrik Höglund <phoglund@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21475}
This commit is contained in:
Patrik Höglund
2018-01-02 17:00:28 +01:00
committed by Commit Bot
parent d98fb5e289
commit 63aea46a6e
7 changed files with 18 additions and 0 deletions

View File

@ -235,6 +235,7 @@ if (rtc_enable_protobuf) {
}
}
}
if (rtc_include_tests) {
rtc_executable("rtc_event_log2text") {
testonly = true
@ -283,3 +284,14 @@ if (rtc_enable_protobuf) {
}
}
}
rtc_source_set("mocks") {
testonly = true
sources = [
"rtc_event_log/mock/mock_rtc_event_log.h",
]
deps = [
":rtc_event_log_api",
"../../test:test_support",
]
}