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 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ['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 Loading... |
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 } |
OLD | NEW |