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 19 matching lines...) Expand all Loading... |
30 ] | 30 ] |
31 } # py_quality_assessment | 31 } # py_quality_assessment |
32 | 32 |
33 copy("lib") { | 33 copy("lib") { |
34 testonly = true | 34 testonly = true |
35 sources = [ | 35 sources = [ |
36 "quality_assessment/__init__.py", | 36 "quality_assessment/__init__.py", |
37 "quality_assessment/audioproc_wrapper.py", | 37 "quality_assessment/audioproc_wrapper.py", |
38 "quality_assessment/data_access.py", | 38 "quality_assessment/data_access.py", |
39 "quality_assessment/eval_scores.py", | 39 "quality_assessment/eval_scores.py", |
| 40 "quality_assessment/eval_scores_factory.py", |
40 "quality_assessment/eval_scores_unittest.py", | 41 "quality_assessment/eval_scores_unittest.py", |
41 "quality_assessment/evaluation.py", | 42 "quality_assessment/evaluation.py", |
42 "quality_assessment/noise_generation.py", | 43 "quality_assessment/noise_generation.py", |
| 44 "quality_assessment/noise_generation_factory.py", |
43 "quality_assessment/noise_generation_unittest.py", | 45 "quality_assessment/noise_generation_unittest.py", |
44 "quality_assessment/signal_processing.py", | 46 "quality_assessment/signal_processing.py", |
45 "quality_assessment/signal_processing_unittest.py", | 47 "quality_assessment/signal_processing_unittest.py", |
46 "quality_assessment/simulation.py", | 48 "quality_assessment/simulation.py", |
47 ] | 49 ] |
48 visibility = [ ":*" ] # Only targets in this file can depend on this. | 50 visibility = [ ":*" ] # Only targets in this file can depend on this. |
49 outputs = [ | 51 outputs = [ |
50 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part
}}", | 52 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part
}}", |
51 ] | 53 ] |
52 deps = [ | 54 deps = [ |
(...skipping 15 matching lines...) Expand all Loading... |
68 copy("output") { | 70 copy("output") { |
69 testonly = true | 71 testonly = true |
70 sources = [ | 72 sources = [ |
71 "output/README.md", | 73 "output/README.md", |
72 ] | 74 ] |
73 visibility = [ ":*" ] # Only targets in this file can depend on this. | 75 visibility = [ ":*" ] # Only targets in this file can depend on this. |
74 outputs = [ | 76 outputs = [ |
75 "$root_build_dir/py_quality_assessment/output/{{source_file_part}}", | 77 "$root_build_dir/py_quality_assessment/output/{{source_file_part}}", |
76 ] | 78 ] |
77 } # output | 79 } # output |
OLD | NEW |