OLD | NEW |
---|---|
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 # This file contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
111 # Selects fixed-point code where possible. | 111 # Selects fixed-point code where possible. |
112 'prefer_fixed_point%': 0, | 112 'prefer_fixed_point%': 0, |
113 | 113 |
114 # Enable data logging. Produces text files with data logged within engines | 114 # Enable data logging. Produces text files with data logged within engines |
115 # which can be easily parsed for offline processing. | 115 # which can be easily parsed for offline processing. |
116 'enable_data_logging%': 0, | 116 'enable_data_logging%': 0, |
117 | 117 |
118 # Enables the use of protocol buffers for debug recordings. | 118 # Enables the use of protocol buffers for debug recordings. |
119 'enable_protobuf%': 1, | 119 'enable_protobuf%': 1, |
120 | 120 |
121 # Disable the code for the intelligibility enhancer by default. | |
122 'intelligibility_enhancer%': 0, | |
kjellander_webrtc
2016/08/26 13:22:12
After comparing with other variables in this file,
peah-webrtc
2016/08/26 13:35:06
Done.
| |
123 | |
121 # Disable these to not build components which can be externally provided. | 124 # Disable these to not build components which can be externally provided. |
122 'build_expat%': 1, | 125 'build_expat%': 1, |
123 'build_json%': 1, | 126 'build_json%': 1, |
124 'build_libsrtp%': 1, | 127 'build_libsrtp%': 1, |
125 'build_libvpx%': 1, | 128 'build_libvpx%': 1, |
126 'libvpx_build_vp9%': 1, | 129 'libvpx_build_vp9%': 1, |
127 'build_libyuv%': 1, | 130 'build_libyuv%': 1, |
128 'build_openmax_dl%': 1, | 131 'build_openmax_dl%': 1, |
129 'build_opus%': 1, | 132 'build_opus%': 1, |
130 'build_protobuf%': 1, | 133 'build_protobuf%': 1, |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
602 }], | 605 }], |
603 ['OS=="freebsd"', { | 606 ['OS=="freebsd"', { |
604 'defines': [ | 607 'defines': [ |
605 'FREEBSD', | 608 'FREEBSD', |
606 ], | 609 ], |
607 }], | 610 }], |
608 ], | 611 ], |
609 }, | 612 }, |
610 }, # target_defaults | 613 }, # target_defaults |
611 } | 614 } |
OLD | NEW |