OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 "channel.cc", | 32 "channel.cc", |
33 "channel.h", | 33 "channel.h", |
34 "channelmanager.cc", | 34 "channelmanager.cc", |
35 "channelmanager.h", | 35 "channelmanager.h", |
36 "currentspeakermonitor.cc", | 36 "currentspeakermonitor.cc", |
37 "currentspeakermonitor.h", | 37 "currentspeakermonitor.h", |
38 "mediamonitor.cc", | 38 "mediamonitor.cc", |
39 "mediamonitor.h", | 39 "mediamonitor.h", |
40 "mediasession.cc", | 40 "mediasession.cc", |
41 "mediasession.h", | 41 "mediasession.h", |
42 "mediasink.h", | |
43 "rtcpmuxfilter.cc", | 42 "rtcpmuxfilter.cc", |
44 "rtcpmuxfilter.h", | 43 "rtcpmuxfilter.h", |
45 "srtpfilter.cc", | 44 "srtpfilter.cc", |
46 "srtpfilter.h", | 45 "srtpfilter.h", |
47 "voicechannel.h", | 46 "voicechannel.h", |
48 ] | 47 ] |
49 | 48 |
50 deps = [ | 49 deps = [ |
51 "../api:call_api", | 50 "../api:call_api", |
52 "../base:rtc_base", | 51 "../base:rtc_base", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 | 116 |
118 if (rtc_build_libsrtp) { | 117 if (rtc_build_libsrtp) { |
119 deps += [ "//third_party/libsrtp" ] | 118 deps += [ "//third_party/libsrtp" ] |
120 } | 119 } |
121 | 120 |
122 if (is_android) { | 121 if (is_android) { |
123 deps += [ "//testing/android/native_test:native_test_support" ] | 122 deps += [ "//testing/android/native_test:native_test_support" ] |
124 } | 123 } |
125 } | 124 } |
126 } | 125 } |
OLD | NEW |