OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | |
2 # | |
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 | |
5 # tree. An additional intellectual property rights grant can be found | |
6 # in the file PATENTS. All contributing project authors may | |
7 # be found in the AUTHORS file in the root of the source tree. | |
8 | |
9 import("../../../../webrtc.gni") | |
10 | |
11 copy("lib") { | |
12 testonly = true | |
13 sources = [ | |
14 "quality_assessment/__init__.py", | |
15 ] | |
aleloi
2017/02/23 14:48:24
I suggest adding 'visibility = [ ":" ]' (hope the
| |
16 outputs = [ | |
17 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}", | |
18 ] | |
19 deps = [ | |
20 "//resources/audio_processing/test/py_quality_assessment:noise_tracks", | |
21 ] | |
22 } # lib | |
23 | |
24 copy("apm_configs") { | |
25 testonly = true | |
26 sources = [ | |
27 "quality_assessment/apm_configs/default.json", | |
28 ] | |
29 outputs = [ | |
30 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}", | |
31 ] | |
32 } # apm_configs | |
33 | |
34 copy("py_quality_assessment") { | |
aleloi
2017/02/23 14:48:24
Please move this to the beginning of the file.
Se
| |
35 testonly = true | |
36 sources = [ | |
37 "README", | |
38 "apm_quality_assessment-export.py", | |
39 "apm_quality_assessment-gencfgs.py", | |
40 "apm_quality_assessment.py", | |
41 "apm_quality_assessment.sh", | |
42 ] | |
43 outputs = [ | |
44 "$root_build_dir/py_quality_assessment/{{source_file_part}}", | |
45 ] | |
46 deps = [ | |
47 ":apm_configs", | |
48 ":lib", | |
49 "../..:audioproc_f", | |
50 "//resources/audio_processing/test/py_quality_assessment:probing_signals", | |
51 ] | |
52 } # py_quality_assessment | |
OLD | NEW |