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

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: removing details about the experiment Created 3 years, 8 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
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",
57 "quality_assessment/eval_scores.py", 58 "quality_assessment/eval_scores.py",
58 "quality_assessment/eval_scores_factory.py", 59 "quality_assessment/eval_scores_factory.py",
59 "quality_assessment/evaluation.py", 60 "quality_assessment/evaluation.py",
60 "quality_assessment/exceptions.py", 61 "quality_assessment/exceptions.py",
61 "quality_assessment/export.py", 62 "quality_assessment/export.py",
62 "quality_assessment/results.css", 63 "quality_assessment/results.css",
63 "quality_assessment/results.js", 64 "quality_assessment/results.js",
64 "quality_assessment/signal_processing.py", 65 "quality_assessment/signal_processing.py",
65 "quality_assessment/simulation.py", 66 "quality_assessment/simulation.py",
66 "quality_assessment/test_data_generation.py", 67 "quality_assessment/test_data_generation.py",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 output_name = "py_quality_assessment/quality_assessment/fake_polqa" 106 output_name = "py_quality_assessment/quality_assessment/fake_polqa"
106 deps = [ 107 deps = [
107 "//webrtc:webrtc_common", 108 "//webrtc:webrtc_common",
108 "//webrtc/base:rtc_base_approved", 109 "//webrtc/base:rtc_base_approved",
109 ] 110 ]
110 } 111 }
111 112
112 copy("lib_unit_tests") { 113 copy("lib_unit_tests") {
113 testonly = true 114 testonly = true
114 sources = [ 115 sources = [
116 "quality_assessment/echo_path_simulation_unittest.py",
115 "quality_assessment/eval_scores_unittest.py", 117 "quality_assessment/eval_scores_unittest.py",
116 "quality_assessment/signal_processing_unittest.py", 118 "quality_assessment/signal_processing_unittest.py",
117 "quality_assessment/simulation_unittest.py", 119 "quality_assessment/simulation_unittest.py",
118 "quality_assessment/test_data_generation_unittest.py", 120 "quality_assessment/test_data_generation_unittest.py",
119 ] 121 ]
120 visibility = [ ":*" ] # Only targets in this file can depend on this. 122 visibility = [ ":*" ] # Only targets in this file can depend on this.
121 outputs = [ 123 outputs = [
122 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}", 124 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}",
123 ] 125 ]
124 deps = [] 126 deps = []
125 } 127 }
126 128
127 copy("scripts_unit_tests") { 129 copy("scripts_unit_tests") {
128 testonly = true 130 testonly = true
129 sources = [ 131 sources = [
130 "apm_quality_assessment_unittest.py", 132 "apm_quality_assessment_unittest.py",
131 ] 133 ]
132 outputs = [ 134 outputs = [
133 "$root_build_dir/py_quality_assessment/{{source_file_part}}", 135 "$root_build_dir/py_quality_assessment/{{source_file_part}}",
134 ] 136 ]
135 deps = [] 137 deps = []
136 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698