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/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("../webrtc.gni") | 10 import("../webrtc.gni") |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 "engine/webrtcvideoencoderfactory.h", | 126 "engine/webrtcvideoencoderfactory.h", |
127 "engine/webrtcvideoengine2.cc", | 127 "engine/webrtcvideoengine2.cc", |
128 "engine/webrtcvideoengine2.h", | 128 "engine/webrtcvideoengine2.h", |
129 "engine/webrtcvideoframe.h", | 129 "engine/webrtcvideoframe.h", |
130 "engine/webrtcvoe.h", | 130 "engine/webrtcvoe.h", |
131 "engine/webrtcvoiceengine.cc", | 131 "engine/webrtcvoiceengine.cc", |
132 "engine/webrtcvoiceengine.h", | 132 "engine/webrtcvoiceengine.h", |
133 "sctp/sctptransportinternal.h", | 133 "sctp/sctptransportinternal.h", |
134 ] | 134 ] |
135 | 135 |
| 136 defines = [] |
| 137 if (rtc_opus_support_120ms_ptime) { |
| 138 defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=1" ] |
| 139 } else { |
| 140 defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=0" ] |
| 141 } |
| 142 |
136 if (rtc_enable_sctp) { | 143 if (rtc_enable_sctp) { |
137 sources += [ | 144 sources += [ |
138 "sctp/sctptransport.cc", | 145 "sctp/sctptransport.cc", |
139 "sctp/sctptransport.h", | 146 "sctp/sctptransport.h", |
140 ] | 147 ] |
141 } | 148 } |
142 | 149 |
143 configs += [ ":rtc_media_warnings_config" ] | 150 configs += [ ":rtc_media_warnings_config" ] |
144 | 151 |
145 if (!build_with_chromium && is_clang) { | 152 if (!build_with_chromium && is_clang) { |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 374 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
368 ":rtc_media", | 375 ":rtc_media", |
369 ":rtc_unittest_main", | 376 ":rtc_unittest_main", |
370 "../audio", | 377 "../audio", |
371 "../base:rtc_base_tests_utils", | 378 "../base:rtc_base_tests_utils", |
372 "../modules/audio_device:mock_audio_device", | 379 "../modules/audio_device:mock_audio_device", |
373 "../system_wrappers:metrics_default", | 380 "../system_wrappers:metrics_default", |
374 ] | 381 ] |
375 } | 382 } |
376 } | 383 } |
OLD | NEW |