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", |
64 "../media:rtc_media_base", | 65 "../media:rtc_media_base", |
65 "../p2p:rtc_p2p", | 66 "../p2p:rtc_p2p", |
66 ] | 67 ] |
67 | 68 |
68 if (rtc_build_libsrtp) { | 69 if (rtc_build_libsrtp) { |
69 deps += [ "//third_party/libsrtp" ] | 70 deps += [ "//third_party/libsrtp" ] |
70 } | 71 } |
71 | 72 |
72 public_configs = [ ":rtc_pc_config" ] | 73 public_configs = [ ":rtc_pc_config" ] |
73 | 74 |
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 "//testing/gmock", | 447 "//testing/gmock", |
447 ] | 448 ] |
448 | 449 |
449 if (is_android) { | 450 if (is_android) { |
450 deps += [ "//testing/android/native_test:native_test_support" ] | 451 deps += [ "//testing/android/native_test:native_test_support" ] |
451 | 452 |
452 shard_timeout = 900 | 453 shard_timeout = 900 |
453 } | 454 } |
454 } | 455 } |
455 } | 456 } |
OLD | NEW |