| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 # Selects fixed-point code where possible. | 34 # Selects fixed-point code where possible. |
| 35 rtc_prefer_fixed_point = false | 35 rtc_prefer_fixed_point = false |
| 36 | 36 |
| 37 # Enables the use of protocol buffers for debug recordings. | 37 # Enables the use of protocol buffers for debug recordings. |
| 38 rtc_enable_protobuf = true | 38 rtc_enable_protobuf = true |
| 39 | 39 |
| 40 # Disable the code for the intelligibility enhancer by default. | 40 # Disable the code for the intelligibility enhancer by default. |
| 41 rtc_enable_intelligibility_enhancer = false | 41 rtc_enable_intelligibility_enhancer = false |
| 42 | 42 |
| 43 # Enable when an external authentication mechanism is used for performing |
| 44 # packet authentication for RTP packets instead of libsrtp. |
| 45 rtc_enable_external_auth = build_with_chromium |
| 46 |
| 43 # Selects whether debug dumps for the audio processing module | 47 # Selects whether debug dumps for the audio processing module |
| 44 # should be generated. | 48 # should be generated. |
| 45 apm_debug_dump = false | 49 apm_debug_dump = false |
| 46 | 50 |
| 47 # Set this to true to enable BWE test logging. | 51 # Set this to true to enable BWE test logging. |
| 48 rtc_enable_bwe_test_logging = false | 52 rtc_enable_bwe_test_logging = false |
| 49 | 53 |
| 50 # Set this to disable building with support for SCTP data channels. | 54 # Set this to disable building with support for SCTP data channels. |
| 51 rtc_enable_sctp = true | 55 rtc_enable_sctp = true |
| 52 | 56 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 ]) | 317 ]) |
| 314 configs += invoker.configs | 318 configs += invoker.configs |
| 315 configs -= rtc_remove_configs | 319 configs -= rtc_remove_configs |
| 316 configs -= invoker.suppressed_configs | 320 configs -= invoker.suppressed_configs |
| 317 public_configs = [ rtc_common_inherited_config ] | 321 public_configs = [ rtc_common_inherited_config ] |
| 318 if (defined(invoker.public_configs)) { | 322 if (defined(invoker.public_configs)) { |
| 319 public_configs += invoker.public_configs | 323 public_configs += invoker.public_configs |
| 320 } | 324 } |
| 321 } | 325 } |
| 322 } | 326 } |
| OLD | NEW |