OLD | NEW |
---|---|
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/arm.gni") | 9 import("//build/config/arm.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 18 matching lines...) Expand all Loading... | |
29 # Selects fixed-point code where possible. | 29 # Selects fixed-point code where possible. |
30 rtc_prefer_fixed_point = false | 30 rtc_prefer_fixed_point = false |
31 | 31 |
32 # Enable data logging. Produces text files with data logged within engines | 32 # Enable data logging. Produces text files with data logged within engines |
33 # which can be easily parsed for offline processing. | 33 # which can be easily parsed for offline processing. |
34 rtc_enable_data_logging = false | 34 rtc_enable_data_logging = false |
35 | 35 |
36 # Enables the use of protocol buffers for debug recordings. | 36 # Enables the use of protocol buffers for debug recordings. |
37 rtc_enable_protobuf = true | 37 rtc_enable_protobuf = true |
38 | 38 |
39 # Disable the code for the intelligibility enhancer by default. | |
40 intelligibility_enhancer = false | |
kjellander_webrtc
2016/08/26 13:22:12
...and this rtc_enable_intelligibility_enhancer
r
peah-webrtc
2016/08/26 13:35:06
Done.
| |
41 | |
39 # Disable these to not build components which can be externally provided. | 42 # Disable these to not build components which can be externally provided. |
40 rtc_build_expat = true | 43 rtc_build_expat = true |
41 rtc_build_json = true | 44 rtc_build_json = true |
42 rtc_build_libjpeg = true | 45 rtc_build_libjpeg = true |
43 rtc_build_libsrtp = true | 46 rtc_build_libsrtp = true |
44 rtc_build_libvpx = true | 47 rtc_build_libvpx = true |
45 rtc_libvpx_build_vp9 = true | 48 rtc_libvpx_build_vp9 = true |
46 rtc_build_libyuv = true | 49 rtc_build_libyuv = true |
47 rtc_build_openmax_dl = true | 50 rtc_build_openmax_dl = true |
48 rtc_build_opus = true | 51 rtc_build_opus = true |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 declare_args() { | 137 declare_args() { |
135 # Include the iLBC audio codec? | 138 # Include the iLBC audio codec? |
136 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) | 139 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) |
137 } | 140 } |
138 | 141 |
139 # Make it possible to provide custom locations for some libraries (move these | 142 # Make it possible to provide custom locations for some libraries (move these |
140 # up into declare_args should we need to actually use them for the GN build). | 143 # up into declare_args should we need to actually use them for the GN build). |
141 rtc_libvpx_dir = "//third_party/libvpx" | 144 rtc_libvpx_dir = "//third_party/libvpx" |
142 rtc_libyuv_dir = "//third_party/libyuv" | 145 rtc_libyuv_dir = "//third_party/libyuv" |
143 rtc_opus_dir = "//third_party/opus" | 146 rtc_opus_dir = "//third_party/opus" |
OLD | NEW |