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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "srtpfilter.h", | 48 "srtpfilter.h", |
49 "voicechannel.h", | 49 "voicechannel.h", |
50 ] | 50 ] |
51 | 51 |
52 deps = [ | 52 deps = [ |
53 "../api:call_api", | 53 "../api:call_api", |
54 "../base:rtc_base", | 54 "../base:rtc_base", |
55 "../media", | 55 "../media", |
56 ] | 56 ] |
57 | 57 |
58 if (build_with_chromium) { | 58 if (rtc_enable_external_auth) { |
59 sources += [ | 59 sources += [ |
60 "externalhmac.cc", | 60 "externalhmac.cc", |
61 "externalhmac.h", | 61 "externalhmac.h", |
62 ] | 62 ] |
63 } | 63 } |
64 if (rtc_build_libsrtp) { | 64 if (rtc_build_libsrtp) { |
65 deps += [ "//third_party/libsrtp" ] | 65 deps += [ "//third_party/libsrtp" ] |
66 } | 66 } |
67 | 67 |
68 public_configs = [ ":rtc_pc_config" ] | 68 public_configs = [ ":rtc_pc_config" ] |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 "//testing/gmock", | 361 "//testing/gmock", |
362 ] | 362 ] |
363 | 363 |
364 if (is_android) { | 364 if (is_android) { |
365 deps += [ "//testing/android/native_test:native_test_support" ] | 365 deps += [ "//testing/android/native_test:native_test_support" ] |
366 | 366 |
367 shard_timeout = 900 | 367 shard_timeout = 900 |
368 } | 368 } |
369 } | 369 } |
370 } | 370 } |
OLD | NEW |