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

Side by Side Diff: webrtc/modules/audio_processing/test/py_quality_assessment/BUILD.gn

Issue 2813883002: APM QA refactoring: render stream support, echo path simulation, new export engine (Closed)
Patch Set: merge Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/py_quality_assessment/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../../../../webrtc.gni") 9 import("../../../../webrtc.gni")
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}", 47 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}",
48 ] 48 ]
49 } # apm_configs 49 } # apm_configs
50 50
51 copy("lib") { 51 copy("lib") {
52 testonly = true 52 testonly = true
53 sources = [ 53 sources = [
54 "quality_assessment/__init__.py", 54 "quality_assessment/__init__.py",
55 "quality_assessment/audioproc_wrapper.py", 55 "quality_assessment/audioproc_wrapper.py",
56 "quality_assessment/data_access.py", 56 "quality_assessment/data_access.py",
57 "quality_assessment/echo_path_simulation.py",
58 "quality_assessment/echo_path_simulation_factory.py",
57 "quality_assessment/eval_scores.py", 59 "quality_assessment/eval_scores.py",
58 "quality_assessment/eval_scores_factory.py", 60 "quality_assessment/eval_scores_factory.py",
59 "quality_assessment/evaluation.py", 61 "quality_assessment/evaluation.py",
60 "quality_assessment/exceptions.py", 62 "quality_assessment/exceptions.py",
61 "quality_assessment/export.py", 63 "quality_assessment/export.py",
64 "quality_assessment/input_mixer.py",
62 "quality_assessment/results.css", 65 "quality_assessment/results.css",
63 "quality_assessment/results.js", 66 "quality_assessment/results.js",
64 "quality_assessment/signal_processing.py", 67 "quality_assessment/signal_processing.py",
65 "quality_assessment/simulation.py", 68 "quality_assessment/simulation.py",
66 "quality_assessment/test_data_generation.py", 69 "quality_assessment/test_data_generation.py",
67 "quality_assessment/test_data_generation_factory.py", 70 "quality_assessment/test_data_generation_factory.py",
68 ] 71 ]
69 visibility = [ ":*" ] # Only targets in this file can depend on this. 72 visibility = [ ":*" ] # Only targets in this file can depend on this.
70 outputs = [ 73 outputs = [
71 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}", 74 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 output_name = "py_quality_assessment/quality_assessment/fake_polqa" 108 output_name = "py_quality_assessment/quality_assessment/fake_polqa"
106 deps = [ 109 deps = [
107 "../../../..:webrtc_common", 110 "../../../..:webrtc_common",
108 "../../../../rtc_base:rtc_base_approved", 111 "../../../../rtc_base:rtc_base_approved",
109 ] 112 ]
110 } 113 }
111 114
112 copy("lib_unit_tests") { 115 copy("lib_unit_tests") {
113 testonly = true 116 testonly = true
114 sources = [ 117 sources = [
118 "quality_assessment/echo_path_simulation_unittest.py",
115 "quality_assessment/eval_scores_unittest.py", 119 "quality_assessment/eval_scores_unittest.py",
120 "quality_assessment/input_mixer_unittest.py",
116 "quality_assessment/signal_processing_unittest.py", 121 "quality_assessment/signal_processing_unittest.py",
117 "quality_assessment/simulation_unittest.py", 122 "quality_assessment/simulation_unittest.py",
118 "quality_assessment/test_data_generation_unittest.py", 123 "quality_assessment/test_data_generation_unittest.py",
119 ] 124 ]
120 visibility = [ ":*" ] # Only targets in this file can depend on this. 125 visibility = [ ":*" ] # Only targets in this file can depend on this.
121 outputs = [ 126 outputs = [
122 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}", 127 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}",
123 ] 128 ]
124 } 129 }
125 130
126 copy("scripts_unit_tests") { 131 copy("scripts_unit_tests") {
127 testonly = true 132 testonly = true
128 sources = [ 133 sources = [
129 "apm_quality_assessment_unittest.py", 134 "apm_quality_assessment_unittest.py",
130 ] 135 ]
131 visibility = [ ":*" ] # Only targets in this file can depend on this. 136 visibility = [ ":*" ] # Only targets in this file can depend on this.
132 outputs = [ 137 outputs = [
133 "$root_build_dir/py_quality_assessment/{{source_file_part}}", 138 "$root_build_dir/py_quality_assessment/{{source_file_part}}",
134 ] 139 ]
135 } 140 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/py_quality_assessment/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698