Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2669733002: Add 120ms frame ability to ANA (Closed)
Patch Set: Response to comments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/engine/webrtcvoiceengine.cc » ('j') | webrtc/modules/audio_coding/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698