| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 # Selects fixed-point code where possible. | 42 # Selects fixed-point code where possible. |
| 43 rtc_prefer_fixed_point = false | 43 rtc_prefer_fixed_point = false |
| 44 | 44 |
| 45 # Enables the use of protocol buffers for debug recordings. | 45 # Enables the use of protocol buffers for debug recordings. |
| 46 rtc_enable_protobuf = true | 46 rtc_enable_protobuf = true |
| 47 | 47 |
| 48 # Disable the code for the intelligibility enhancer by default. | 48 # Disable the code for the intelligibility enhancer by default. |
| 49 rtc_enable_intelligibility_enhancer = false | 49 rtc_enable_intelligibility_enhancer = false |
| 50 | 50 |
| 51 # Enable when an external authentication mechanism is used for performing | |
| 52 # packet authentication for RTP packets instead of libsrtp. | |
| 53 rtc_enable_external_auth = build_with_chromium | |
| 54 | |
| 55 # Selects whether debug dumps for the audio processing module | 51 # Selects whether debug dumps for the audio processing module |
| 56 # should be generated. | 52 # should be generated. |
| 57 apm_debug_dump = false | 53 apm_debug_dump = false |
| 58 | 54 |
| 59 # Set this to true to enable BWE test logging. | 55 # Set this to true to enable BWE test logging. |
| 60 rtc_enable_bwe_test_logging = false | 56 rtc_enable_bwe_test_logging = false |
| 61 | 57 |
| 62 # Set this to disable building with support for SCTP data channels. | 58 # Set this to disable building with support for SCTP data channels. |
| 63 rtc_enable_sctp = true | 59 rtc_enable_sctp = true |
| 64 | 60 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 configs += invoker.configs | 346 configs += invoker.configs |
| 351 configs -= rtc_remove_configs | 347 configs -= rtc_remove_configs |
| 352 configs -= invoker.suppressed_configs | 348 configs -= invoker.suppressed_configs |
| 353 public_configs = [ rtc_common_inherited_config ] | 349 public_configs = [ rtc_common_inherited_config ] |
| 354 if (defined(invoker.public_configs)) { | 350 if (defined(invoker.public_configs)) { |
| 355 public_configs += invoker.public_configs | 351 public_configs += invoker.public_configs |
| 356 } | 352 } |
| 357 } | 353 } |
| 358 } | 354 } |
| 359 } | 355 } |
| OLD | NEW |