| 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 30 matching lines...) Expand all Loading... |
| 41 "mediasession.h", | 41 "mediasession.h", |
| 42 "mediasink.h", | 42 "mediasink.h", |
| 43 "rtcpmuxfilter.cc", | 43 "rtcpmuxfilter.cc", |
| 44 "rtcpmuxfilter.h", | 44 "rtcpmuxfilter.h", |
| 45 "srtpfilter.cc", | 45 "srtpfilter.cc", |
| 46 "srtpfilter.h", | 46 "srtpfilter.h", |
| 47 "voicechannel.h", | 47 "voicechannel.h", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 deps = [ | 50 deps = [ |
| 51 "../api:audio_api", |
| 51 "../base:rtc_base", | 52 "../base:rtc_base", |
| 52 "../media", | 53 "../media", |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 if (build_with_chromium) { | 56 if (build_with_chromium) { |
| 56 sources += [ | 57 sources += [ |
| 57 "externalhmac.cc", | 58 "externalhmac.cc", |
| 58 "externalhmac.h", | 59 "externalhmac.h", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| 61 if (rtc_build_libsrtp) { | 62 if (rtc_build_libsrtp) { |
| 62 deps += [ "//third_party/libsrtp" ] | 63 deps += [ "//third_party/libsrtp" ] |
| 63 } | 64 } |
| 64 | 65 |
| 65 configs += [ "..:common_config" ] | 66 configs += [ "..:common_config" ] |
| 66 public_configs = [ | 67 public_configs = [ |
| 67 "..:common_inherited_config", | 68 "..:common_inherited_config", |
| 68 ":rtc_pc_config", | 69 ":rtc_pc_config", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 if (is_clang) { | 72 if (is_clang) { |
| 72 # Suppress warnings from Chrome's Clang plugins. | 73 # Suppress warnings from Chrome's Clang plugins. |
| 73 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 74 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 74 configs -= [ "//build/config/clang:find_bad_constructs" ] | 75 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 75 } | 76 } |
| 76 } | 77 } |
| OLD | NEW |