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

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

Issue 2750353002: Conversational speech tool: timing model with data access. (Closed)
Patch Set: deps fixed 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/conversational_speech/generator_unittest.cc » ('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/webrtc.gni") 9 import("//webrtc/webrtc.gni")
10 10
(...skipping 17 matching lines...) Expand all
28 "//webrtc/test:test_support", 28 "//webrtc/test:test_support",
29 ] 29 ]
30 visibility = [ ":*" ] # Only targets in this file can depend on this. 30 visibility = [ ":*" ] # Only targets in this file can depend on this.
31 } # bin 31 } # bin
32 32
33 rtc_static_library("lib") { 33 rtc_static_library("lib") {
34 testonly = true 34 testonly = true
35 sources = [ 35 sources = [
36 "config.cc", 36 "config.cc",
37 "config.h", 37 "config.h",
38 "timing.cc",
39 "timing.h",
38 ] 40 ]
39 deps = [] 41 deps = [
42 "//webrtc/base:rtc_base_approved",
43 ]
40 visibility = [ ":*" ] # Only targets in this file can depend on this. 44 visibility = [ ":*" ] # Only targets in this file can depend on this.
41 } # lib 45 } # lib
42 46
43 rtc_test("conversational_speech_generator_unittest") { 47 rtc_test("conversational_speech_generator_unittest") {
44 testonly = true 48 testonly = true
45 deps = [ 49 deps = [
46 ":lib", 50 ":lib",
47 "//testing/gtest", 51 "//testing/gtest",
48 "//webrtc//base:rtc_base_tests_main", 52 "//webrtc//base:rtc_base_tests_main",
49 "//webrtc/test:test_support", 53 "//webrtc/test:test_support",
50 ] 54 ]
51 sources = [ 55 sources = [
52 "generator_unittest.cc", 56 "generator_unittest.cc",
53 ] 57 ]
54 visibility = [ ":*" ] # Only targets in this file can depend on this. 58 visibility = [ ":*" ] # Only targets in this file can depend on this.
55 } 59 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698