| 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 |
| 11 group("conversational_speech") { | 11 group("conversational_speech") { |
| 12 testonly = true | 12 testonly = true |
| 13 deps = [ | 13 deps = [ |
| 14 ":conversational_speech_generator", | 14 ":conversational_speech_generator", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 rtc_executable("conversational_speech_generator") { | 18 rtc_executable("conversational_speech_generator") { |
| 19 testonly = true | 19 testonly = true |
| 20 sources = [ | 20 sources = [ |
| 21 "generator.cc", | 21 "generator.cc", |
| 22 ] | 22 ] |
| 23 deps = [ | 23 deps = [ |
| 24 ":lib", | 24 ":lib", |
| 25 "../../../../rtc_base:rtc_base_approved", | 25 "../../../../rtc_base:rtc_base_approved", |
| 26 "../../../../test:test_support", | 26 "../../../../test:test_support", |
| 27 "//third_party/gflags", | |
| 28 ] | 27 ] |
| 29 } | 28 } |
| 30 | 29 |
| 31 rtc_static_library("lib") { | 30 rtc_static_library("lib") { |
| 32 testonly = true | 31 testonly = true |
| 33 sources = [ | 32 sources = [ |
| 34 "config.cc", | 33 "config.cc", |
| 35 "config.h", | 34 "config.h", |
| 36 "multiend_call.cc", | 35 "multiend_call.cc", |
| 37 "multiend_call.h", | 36 "multiend_call.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 64 deps = [ | 63 deps = [ |
| 65 ":lib", | 64 ":lib", |
| 66 "../../../..:webrtc_common", | 65 "../../../..:webrtc_common", |
| 67 "../../../../common_audio", | 66 "../../../../common_audio", |
| 68 "../../../../rtc_base:rtc_base_approved", | 67 "../../../../rtc_base:rtc_base_approved", |
| 69 "../../../../test:test_support", | 68 "../../../../test:test_support", |
| 70 "//testing/gmock", | 69 "//testing/gmock", |
| 71 "//testing/gtest", | 70 "//testing/gtest", |
| 72 ] | 71 ] |
| 73 } | 72 } |
| OLD | NEW |