| 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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "mediasession.h", | 42 "mediasession.h", |
| 43 "mediasink.h", | 43 "mediasink.h", |
| 44 "rtcpmuxfilter.cc", | 44 "rtcpmuxfilter.cc", |
| 45 "rtcpmuxfilter.h", | 45 "rtcpmuxfilter.h", |
| 46 "srtpfilter.cc", | 46 "srtpfilter.cc", |
| 47 "srtpfilter.h", | 47 "srtpfilter.h", |
| 48 "voicechannel.h", | 48 "voicechannel.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "../api:call_api", |
| 52 "../base:rtc_base", | 53 "../base:rtc_base", |
| 53 "../media", | 54 "../media", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 if (build_with_chromium) { | 57 if (build_with_chromium) { |
| 57 sources += [ | 58 sources += [ |
| 58 "externalhmac.cc", | 59 "externalhmac.cc", |
| 59 "externalhmac.h", | 60 "externalhmac.h", |
| 60 ] | 61 ] |
| 61 } | 62 } |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 126 |
| 126 if (rtc_build_libsrtp) { | 127 if (rtc_build_libsrtp) { |
| 127 deps += [ "//third_party/libsrtp" ] | 128 deps += [ "//third_party/libsrtp" ] |
| 128 } | 129 } |
| 129 | 130 |
| 130 if (is_android) { | 131 if (is_android) { |
| 131 deps += [ "//testing/android/native_test:native_test_support" ] | 132 deps += [ "//testing/android/native_test:native_test_support" ] |
| 132 } | 133 } |
| 133 } | 134 } |
| 134 } | 135 } |
| OLD | NEW |