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/webrtc.gni") | 9 import("//webrtc/webrtc.gni") |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
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 } |
OLD | NEW |