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

Side by Side Diff: webrtc/media/media.gyp

Issue 2272423003: Deactivated the intelligibility enhancement functionality by default (Closed)
Patch Set: Changed name of build file flags Created 4 years, 3 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
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine.cc ('k') | webrtc/modules/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 9 {
10 'includes': [ '../build/common.gypi', ], 10 'includes': [ '../build/common.gypi', ],
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ['build_usrsctp==1', { 118 ['build_usrsctp==1', {
119 'include_dirs': [ 119 'include_dirs': [
120 # TODO(jiayl): move this into the direct_dependent_settings of 120 # TODO(jiayl): move this into the direct_dependent_settings of
121 # usrsctp.gyp. 121 # usrsctp.gyp.
122 '<(DEPTH)/third_party/usrsctp/usrsctplib', 122 '<(DEPTH)/third_party/usrsctp/usrsctplib',
123 ], 123 ],
124 'dependencies': [ 124 'dependencies': [
125 '<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib', 125 '<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib',
126 ], 126 ],
127 }], 127 }],
128 ['enable_intelligibility_enhancer==1', {
129 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
130 }, {
131 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
132 }],
128 ['build_with_chromium==1', { 133 ['build_with_chromium==1', {
129 'dependencies': [ 134 'dependencies': [
130 '<(webrtc_root)/modules/modules.gyp:video_capture', 135 '<(webrtc_root)/modules/modules.gyp:video_capture',
131 ], 136 ],
132 }, { 137 }, {
133 'defines': [ 138 'defines': [
134 'HAVE_WEBRTC_VIDEO', 139 'HAVE_WEBRTC_VIDEO',
135 'HAVE_WEBRTC_VOICE', 140 'HAVE_WEBRTC_VOICE',
136 ], 141 ],
137 'direct_dependent_settings': { 142 'direct_dependent_settings': {
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 'sources': [ 367 'sources': [
363 'rtc_media_unittests.isolate', 368 'rtc_media_unittests.isolate',
364 ], 369 ],
365 }, 370 },
366 ], 371 ],
367 }], 372 }],
368 ], # conditions 373 ], # conditions
369 }], # include_tests==1 374 }], # include_tests==1
370 ], # conditions 375 ], # conditions
371 } 376 }
OLDNEW
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine.cc ('k') | webrtc/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698