OLD | NEW |
1 # Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2017 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 17 matching lines...) Expand all Loading... |
28 "rtptransportcontrolleradapter.cc", | 28 "rtptransportcontrolleradapter.cc", |
29 "rtptransportcontrolleradapter.h", | 29 "rtptransportcontrolleradapter.h", |
30 ] | 30 ] |
31 | 31 |
32 # TODO(deadbeef): Create a separate target for the common things ORTC and | 32 # TODO(deadbeef): Create a separate target for the common things ORTC and |
33 # PeerConnection code shares, so that ortc can depend on that instead of | 33 # PeerConnection code shares, so that ortc can depend on that instead of |
34 # libjingle_peerconnection. | 34 # libjingle_peerconnection. |
35 deps = [ | 35 deps = [ |
36 "../api/audio_codecs:builtin_audio_decoder_factory", | 36 "../api/audio_codecs:builtin_audio_decoder_factory", |
37 "../api/audio_codecs:builtin_audio_encoder_factory", | 37 "../api/audio_codecs:builtin_audio_encoder_factory", |
| 38 "../base:rtc_base", |
| 39 "../base:rtc_base_approved", |
38 "../call:call_interfaces", | 40 "../call:call_interfaces", |
39 "../logging:rtc_event_log_api", | 41 "../logging:rtc_event_log_api", |
40 "../media:rtc_media", | 42 "../media:rtc_media", |
41 "../media:rtc_media_base", | 43 "../media:rtc_media_base", |
42 "../modules/audio_processing:audio_processing", | 44 "../modules/audio_processing:audio_processing", |
43 "../p2p:rtc_p2p", | 45 "../p2p:rtc_p2p", |
44 "../pc:libjingle_peerconnection", | 46 "../pc:libjingle_peerconnection", |
45 "../pc:rtc_pc", | 47 "../pc:rtc_pc", |
46 "../rtc_base:rtc_base", | |
47 "../rtc_base:rtc_base_approved", | |
48 ] | 48 ] |
49 | 49 |
50 public_deps = [ | 50 public_deps = [ |
51 "../api:ortc_api", | 51 "../api:ortc_api", |
52 ] | 52 ] |
53 | 53 |
54 if (!build_with_chromium && is_clang) { | 54 if (!build_with_chromium && is_clang) { |
55 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 55 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
56 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 56 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
57 } | 57 } |
(...skipping 11 matching lines...) Expand all Loading... |
69 "rtpparametersconversion_unittest.cc", | 69 "rtpparametersconversion_unittest.cc", |
70 "rtptransport_unittest.cc", | 70 "rtptransport_unittest.cc", |
71 "rtptransportcontroller_unittest.cc", | 71 "rtptransportcontroller_unittest.cc", |
72 "srtptransport_unittest.cc", | 72 "srtptransport_unittest.cc", |
73 "testrtpparameters.cc", | 73 "testrtpparameters.cc", |
74 "testrtpparameters.h", | 74 "testrtpparameters.h", |
75 ] | 75 ] |
76 | 76 |
77 deps = [ | 77 deps = [ |
78 ":ortc", | 78 ":ortc", |
| 79 "../base:rtc_base", |
| 80 "../base:rtc_base_approved", |
| 81 "../base:rtc_base_tests_main", |
| 82 "../base:rtc_base_tests_utils", |
79 "../media:rtc_media_tests_utils", | 83 "../media:rtc_media_tests_utils", |
80 "../p2p:p2p_test_utils", | 84 "../p2p:p2p_test_utils", |
81 "../p2p:rtc_p2p", | 85 "../p2p:rtc_p2p", |
82 "../pc:pc_test_utils", | 86 "../pc:pc_test_utils", |
83 "../rtc_base:rtc_base", | |
84 "../rtc_base:rtc_base_approved", | |
85 "../rtc_base:rtc_base_tests_main", | |
86 "../rtc_base:rtc_base_tests_utils", | |
87 "../system_wrappers:metrics_default", | 87 "../system_wrappers:metrics_default", |
88 ] | 88 ] |
89 | 89 |
90 if (!build_with_chromium && is_clang) { | 90 if (!build_with_chromium && is_clang) { |
91 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 91 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
92 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 92 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
93 } | 93 } |
94 | 94 |
95 if (is_android) { | 95 if (is_android) { |
96 deps += [ "//testing/android/native_test:native_test_support" ] | 96 deps += [ "//testing/android/native_test:native_test_support" ] |
97 } | 97 } |
98 } | 98 } |
99 } | 99 } |
OLD | NEW |