OLD | NEW |
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/echo_path_simulation.py", |
58 "quality_assessment/echo_path_simulation_factory.py", | 58 "quality_assessment/echo_path_simulation_factory.py", |
59 "quality_assessment/eval_scores.py", | 59 "quality_assessment/eval_scores.py", |
60 "quality_assessment/eval_scores_factory.py", | 60 "quality_assessment/eval_scores_factory.py", |
61 "quality_assessment/evaluation.py", | 61 "quality_assessment/evaluation.py", |
62 "quality_assessment/exceptions.py", | 62 "quality_assessment/exceptions.py", |
63 "quality_assessment/export.py", | 63 "quality_assessment/export.py", |
64 "quality_assessment/input_mixer.py", | 64 "quality_assessment/input_mixer.py", |
| 65 "quality_assessment/input_signal_creator.py", |
65 "quality_assessment/results.css", | 66 "quality_assessment/results.css", |
66 "quality_assessment/results.js", | 67 "quality_assessment/results.js", |
67 "quality_assessment/signal_processing.py", | 68 "quality_assessment/signal_processing.py", |
68 "quality_assessment/simulation.py", | 69 "quality_assessment/simulation.py", |
69 "quality_assessment/test_data_generation.py", | 70 "quality_assessment/test_data_generation.py", |
70 "quality_assessment/test_data_generation_factory.py", | 71 "quality_assessment/test_data_generation_factory.py", |
71 ] | 72 ] |
72 visibility = [ ":*" ] # Only targets in this file can depend on this. | 73 visibility = [ ":*" ] # Only targets in this file can depend on this. |
73 outputs = [ | 74 outputs = [ |
74 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part
}}", | 75 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part
}}", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 copy("scripts_unit_tests") { | 132 copy("scripts_unit_tests") { |
132 testonly = true | 133 testonly = true |
133 sources = [ | 134 sources = [ |
134 "apm_quality_assessment_unittest.py", | 135 "apm_quality_assessment_unittest.py", |
135 ] | 136 ] |
136 visibility = [ ":*" ] # Only targets in this file can depend on this. | 137 visibility = [ ":*" ] # Only targets in this file can depend on this. |
137 outputs = [ | 138 outputs = [ |
138 "$root_build_dir/py_quality_assessment/{{source_file_part}}", | 139 "$root_build_dir/py_quality_assessment/{{source_file_part}}", |
139 ] | 140 ] |
140 } | 141 } |
OLD | NEW |