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 = [] | |
minyue-webrtc
2017/02/02 10:42:08
rebased needed here
michaelt
2017/02/02 11:17:18
Done.
| |
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
373 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 380 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
374 ":rtc_media", | 381 ":rtc_media", |
375 ":rtc_unittest_main", | 382 ":rtc_unittest_main", |
376 "../audio", | 383 "../audio", |
377 "../base:rtc_base_tests_utils", | 384 "../base:rtc_base_tests_utils", |
378 "../modules/audio_device:mock_audio_device", | 385 "../modules/audio_device:mock_audio_device", |
379 "../system_wrappers:metrics_default", | 386 "../system_wrappers:metrics_default", |
380 ] | 387 ] |
381 } | 388 } |
382 } | 389 } |
OLD | NEW |