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