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

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

Issue 2715943002: APM Quality Assessment, simulation controller and libraries (Closed)
Patch Set: revert to Python 2 Created 3 years, 9 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/apm_configs/default.json » ('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 15 matching lines...) Expand all
26 ":output", 26 ":output",
27 "../..:audioproc_f", 27 "../..:audioproc_f",
28 "//resources/audio_processing/test/py_quality_assessment:probing_signals", 28 "//resources/audio_processing/test/py_quality_assessment:probing_signals",
29 ] 29 ]
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/data_access.py",
37 "quality_assessment/eval_scores.py",
38 "quality_assessment/noise_generation.py",
39 "quality_assessment/simulation.py",
36 ] 40 ]
37 visibility = [ ":*" ] # Only targets in this file can depend on this. 41 visibility = [ ":*" ] # Only targets in this file can depend on this.
38 outputs = [ 42 outputs = [
39 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}", 43 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}",
40 ] 44 ]
41 deps = [ 45 deps = [
42 "//resources/audio_processing/test/py_quality_assessment:noise_tracks", 46 "//resources/audio_processing/test/py_quality_assessment:noise_tracks",
43 ] 47 ]
44 } # lib 48 } # lib
45 49
46 copy("apm_configs") { 50 copy("apm_configs") {
47 testonly = true 51 testonly = true
48 sources = [ 52 sources = [
49 "quality_assessment/apm_configs/default.json", 53 "apm_configs/default.json",
50 ] 54 ]
51 visibility = [ ":*" ] # Only targets in this file can depend on this. 55 visibility = [ ":*" ] # Only targets in this file can depend on this.
52 outputs = [ 56 outputs = [
53 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}", 57 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}",
54 ] 58 ]
55 } # apm_configs 59 } # apm_configs
56 60
57 copy("output") { 61 copy("output") {
58 testonly = true 62 testonly = true
59 sources = [ 63 sources = [
60 "output/README.md", 64 "output/README.md",
61 ] 65 ]
62 visibility = [ ":*" ] # Only targets in this file can depend on this. 66 visibility = [ ":*" ] # Only targets in this file can depend on this.
63 outputs = [ 67 outputs = [
64 "$root_build_dir/py_quality_assessment/output/{{source_file_part}}", 68 "$root_build_dir/py_quality_assessment/output/{{source_file_part}}",
65 ] 69 ]
66 } # output 70 } # output
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/py_quality_assessment/apm_configs/default.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698