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

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

Issue 2711923002: Parallel iterator bash script for the quality assessment package. (Closed)
Patch Set: Comments from aleloi addressed. Created 3 years, 10 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
OLDNEW
(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("py_quality_assessment") {
12 testonly = true
13 sources = [
14 "README.md",
15 "apm_quality_assessment-export.py",
16 "apm_quality_assessment-gencfgs.py",
17 "apm_quality_assessment.py",
18 "apm_quality_assessment.sh",
19 ]
20 outputs = [
21 "$root_build_dir/py_quality_assessment/{{source_file_part}}",
22 ]
23 deps = [
24 ":apm_configs",
25 ":lib",
26 "../..:audioproc_f",
27 "//resources/audio_processing/test/py_quality_assessment:probing_signals",
28 ]
29 } # py_quality_assessment
30
31 copy("lib") {
32 testonly = true
33 sources = [
34 "quality_assessment/__init__.py",
35 ]
36 visibility = [ ":*" ] # Only targets in this file can depend on this.
37 outputs = [
38 "$root_build_dir/py_quality_assessment/quality_assessment/{{source_file_part }}",
39 ]
40 deps = [
41 "//resources/audio_processing/test/py_quality_assessment:noise_tracks",
42 ]
43 } # lib
44
45 copy("apm_configs") {
46 testonly = true
47 sources = [
48 "quality_assessment/apm_configs/default.json",
49 ]
50 visibility = [ ":*" ] # Only targets in this file can depend on this.
51 outputs = [
52 "$root_build_dir/py_quality_assessment/apm_configs/{{source_file_part}}",
53 ]
54 } # apm_configs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698