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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 ] | 54 ] |
55 | 55 |
56 deps = [ | 56 deps = [ |
57 "..:webrtc_common", | 57 "..:webrtc_common", |
58 "../api:call_api", | 58 "../api:call_api", |
59 "../api:libjingle_peerconnection_api", | 59 "../api:libjingle_peerconnection_api", |
60 "../api:ortc_api", | 60 "../api:ortc_api", |
61 "../base:rtc_base", | 61 "../base:rtc_base", |
62 "../base:rtc_task_queue", | 62 "../base:rtc_task_queue", |
63 "../media:rtc_data", | 63 "../media:rtc_data", |
64 "../media:rtc_h264_profile_id", | |
65 "../media:rtc_media_base", | 64 "../media:rtc_media_base", |
66 "../p2p:rtc_p2p", | 65 "../p2p:rtc_p2p", |
67 ] | 66 ] |
68 | 67 |
69 if (rtc_build_libsrtp) { | 68 if (rtc_build_libsrtp) { |
70 deps += [ "//third_party/libsrtp" ] | 69 deps += [ "//third_party/libsrtp" ] |
71 } | 70 } |
72 | 71 |
73 public_configs = [ ":rtc_pc_config" ] | 72 public_configs = [ ":rtc_pc_config" ] |
74 | 73 |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 "//testing/gmock", | 446 "//testing/gmock", |
448 ] | 447 ] |
449 | 448 |
450 if (is_android) { | 449 if (is_android) { |
451 deps += [ "//testing/android/native_test:native_test_support" ] | 450 deps += [ "//testing/android/native_test:native_test_support" ] |
452 | 451 |
453 shard_timeout = 900 | 452 shard_timeout = 900 |
454 } | 453 } |
455 } | 454 } |
456 } | 455 } |
OLD | NEW |