| 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 21 matching lines...) Expand all Loading... |
| 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. | 39 # Disable the code for the intelligibility enhancer by default. |
| 40 rtc_enable_intelligibility_enhancer = false | 40 rtc_enable_intelligibility_enhancer = false |
| 41 | 41 |
| 42 # Set this to true to enable BWE test logging. |
| 43 rtc_enable_bwe_test_logging = false |
| 44 |
| 42 # Disable these to not build components which can be externally provided. | 45 # Disable these to not build components which can be externally provided. |
| 43 rtc_build_expat = true | 46 rtc_build_expat = true |
| 44 rtc_build_json = true | 47 rtc_build_json = true |
| 45 rtc_build_libjpeg = true | 48 rtc_build_libjpeg = true |
| 46 rtc_build_libsrtp = true | 49 rtc_build_libsrtp = true |
| 47 rtc_build_libvpx = true | 50 rtc_build_libvpx = true |
| 48 rtc_libvpx_build_vp9 = true | 51 rtc_libvpx_build_vp9 = true |
| 49 rtc_build_libyuv = true | 52 rtc_build_libyuv = true |
| 50 rtc_build_openmax_dl = true | 53 rtc_build_openmax_dl = true |
| 51 rtc_build_opus = true | 54 rtc_build_opus = true |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 declare_args() { | 140 declare_args() { |
| 138 # Include the iLBC audio codec? | 141 # Include the iLBC audio codec? |
| 139 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) | 142 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) |
| 140 } | 143 } |
| 141 | 144 |
| 142 # Make it possible to provide custom locations for some libraries (move these | 145 # Make it possible to provide custom locations for some libraries (move these |
| 143 # up into declare_args should we need to actually use them for the GN build). | 146 # up into declare_args should we need to actually use them for the GN build). |
| 144 rtc_libvpx_dir = "//third_party/libvpx" | 147 rtc_libvpx_dir = "//third_party/libvpx" |
| 145 rtc_libyuv_dir = "//third_party/libyuv" | 148 rtc_libyuv_dir = "//third_party/libyuv" |
| 146 rtc_opus_dir = "//third_party/opus" | 149 rtc_opus_dir = "//third_party/opus" |
| OLD | NEW |