Move unpack_aecdump to a more public location.

This tool is used downstream, so we want to christen rtc_tools as
a kind of api dir for tools. Tools in other locations should be
considered off limits.

I chose rtc_tools because video_quality_toolchain is already there,
which is also used downstream.

Bug: None
Change-Id: I234d874c8a590ca7413357ecda26b16d9b399836
Reviewed-on: https://webrtc-review.googlesource.com/32340
Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org>
Commit-Queue: Patrik Höglund <phoglund@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21236}
This commit is contained in:
Patrik Höglund
2017-12-12 15:53:31 +01:00
committed by Commit Bot
parent 3ff90f19d3
commit 844ce8bb3a
3 changed files with 22 additions and 21 deletions

View File

@ -522,7 +522,6 @@ if (rtc_include_tests) {
deps += [
":audioproc_f",
":audioproc_unittest_proto",
":unpack_aecdump",
"aec_dump:aec_dump_unittests",
"test/conversational_speech",
"test/py_quality_assessment",
@ -738,25 +737,6 @@ if (rtc_include_tests) {
}
if (rtc_enable_protobuf) {
rtc_executable("unpack_aecdump") {
testonly = true
sources = [
"test/unpack.cc",
]
deps = [
":audio_processing",
":audioproc_debug_proto",
":audioproc_protobuf_utils",
":audioproc_test_utils",
"../..:webrtc_common",
"../../common_audio",
"../../rtc_base:protobuf_utils",
"../../rtc_base:rtc_base_approved",
"../../system_wrappers:system_wrappers_default",
]
} # unpack_aecdump
rtc_executable("audioproc_f") {
testonly = true
sources = [

View File

@ -41,6 +41,7 @@ group("rtc_tools") {
deps += [
":event_log_visualizer",
":rtp_analyzer",
":unpack_aecdump",
"network_tester",
]
}
@ -371,6 +372,26 @@ if (rtc_include_tests) {
deps = [
"../logging:rtc_event_log_proto",
]
}
} # rtp_analyzer
rtc_executable("unpack_aecdump") {
testonly = true
sources = [
"unpack_aecdump/unpack.cc",
]
deps = [
"..:webrtc_common",
"../common_audio",
"../modules/audio_processing",
"../modules/audio_processing:audioproc_debug_proto",
"../modules/audio_processing:audioproc_debug_proto",
"../modules/audio_processing:audioproc_protobuf_utils",
"../modules/audio_processing:audioproc_test_utils",
"../rtc_base:protobuf_utils",
"../rtc_base:rtc_base_approved",
"../system_wrappers:system_wrappers_default",
]
} # unpack_aecdump
}
}