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:
committed by
Commit Bot
parent
3ff90f19d3
commit
844ce8bb3a
@ -522,7 +522,6 @@ if (rtc_include_tests) {
|
|||||||
deps += [
|
deps += [
|
||||||
":audioproc_f",
|
":audioproc_f",
|
||||||
":audioproc_unittest_proto",
|
":audioproc_unittest_proto",
|
||||||
":unpack_aecdump",
|
|
||||||
"aec_dump:aec_dump_unittests",
|
"aec_dump:aec_dump_unittests",
|
||||||
"test/conversational_speech",
|
"test/conversational_speech",
|
||||||
"test/py_quality_assessment",
|
"test/py_quality_assessment",
|
||||||
@ -738,25 +737,6 @@ if (rtc_include_tests) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (rtc_enable_protobuf) {
|
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") {
|
rtc_executable("audioproc_f") {
|
||||||
testonly = true
|
testonly = true
|
||||||
sources = [
|
sources = [
|
||||||
|
|||||||
@ -41,6 +41,7 @@ group("rtc_tools") {
|
|||||||
deps += [
|
deps += [
|
||||||
":event_log_visualizer",
|
":event_log_visualizer",
|
||||||
":rtp_analyzer",
|
":rtp_analyzer",
|
||||||
|
":unpack_aecdump",
|
||||||
"network_tester",
|
"network_tester",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -371,6 +372,26 @@ if (rtc_include_tests) {
|
|||||||
deps = [
|
deps = [
|
||||||
"../logging:rtc_event_log_proto",
|
"../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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user