| 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 27 matching lines...) Expand all Loading... |
| 38 # Enables the use of protocol buffers for debug recordings. | 38 # Enables the use of protocol buffers for debug recordings. |
| 39 rtc_enable_protobuf = true | 39 rtc_enable_protobuf = true |
| 40 | 40 |
| 41 # Disable the code for the intelligibility enhancer by default. | 41 # Disable the code for the intelligibility enhancer by default. |
| 42 rtc_enable_intelligibility_enhancer = false | 42 rtc_enable_intelligibility_enhancer = false |
| 43 | 43 |
| 44 # Selects whether debug dumps for the audio processing module | 44 # Selects whether debug dumps for the audio processing module |
| 45 # should be generated. | 45 # should be generated. |
| 46 apm_debug_dump = false | 46 apm_debug_dump = false |
| 47 | 47 |
| 48 # Set this to true to enable BWE test logging. |
| 49 rtc_enable_bwe_test_logging = false |
| 50 |
| 48 # Disable these to not build components which can be externally provided. | 51 # Disable these to not build components which can be externally provided. |
| 49 rtc_build_expat = true | 52 rtc_build_expat = true |
| 50 rtc_build_json = true | 53 rtc_build_json = true |
| 51 rtc_build_libjpeg = true | 54 rtc_build_libjpeg = true |
| 52 rtc_build_libsrtp = true | 55 rtc_build_libsrtp = true |
| 53 rtc_build_libvpx = true | 56 rtc_build_libvpx = true |
| 54 rtc_libvpx_build_vp9 = true | 57 rtc_libvpx_build_vp9 = true |
| 55 rtc_build_libyuv = true | 58 rtc_build_libyuv = true |
| 56 rtc_build_openmax_dl = true | 59 rtc_build_openmax_dl = true |
| 57 rtc_build_opus = true | 60 rtc_build_opus = true |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 ]) | 310 ]) |
| 308 configs += invoker.configs | 311 configs += invoker.configs |
| 309 configs -= rtc_remove_configs | 312 configs -= rtc_remove_configs |
| 310 configs -= invoker.suppressed_configs | 313 configs -= invoker.suppressed_configs |
| 311 public_configs = [ rtc_common_inherited_config ] | 314 public_configs = [ rtc_common_inherited_config ] |
| 312 if (defined(invoker.public_configs)) { | 315 if (defined(invoker.public_configs)) { |
| 313 public_configs += invoker.public_configs | 316 public_configs += invoker.public_configs |
| 314 } | 317 } |
| 315 } | 318 } |
| 316 } | 319 } |
| OLD | NEW |