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 13 matching lines...) Expand all Loading... |
24 # library that comes with WebRTC (i.e. rtc_build_json == 0). | 24 # library that comes with WebRTC (i.e. rtc_build_json == 0). |
25 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include" | 25 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include" |
26 | 26 |
27 # Used to specify an external OpenSSL include path when not compiling the | 27 # Used to specify an external OpenSSL include path when not compiling the |
28 # library that comes with WebRTC (i.e. rtc_build_ssl == 0). | 28 # library that comes with WebRTC (i.e. rtc_build_ssl == 0). |
29 rtc_ssl_root = "" | 29 rtc_ssl_root = "" |
30 | 30 |
31 # Selects fixed-point code where possible. | 31 # Selects fixed-point code where possible. |
32 rtc_prefer_fixed_point = false | 32 rtc_prefer_fixed_point = false |
33 | 33 |
34 # Enable data logging. Produces text files with data logged within engines | |
35 # which can be easily parsed for offline processing. | |
36 rtc_enable_data_logging = false | |
37 | |
38 # Enables the use of protocol buffers for debug recordings. | 34 # Enables the use of protocol buffers for debug recordings. |
39 rtc_enable_protobuf = true | 35 rtc_enable_protobuf = true |
40 | 36 |
41 # Disable the code for the intelligibility enhancer by default. | 37 # Disable the code for the intelligibility enhancer by default. |
42 rtc_enable_intelligibility_enhancer = false | 38 rtc_enable_intelligibility_enhancer = false |
43 | 39 |
44 # Selects whether debug dumps for the audio processing module | 40 # Selects whether debug dumps for the audio processing module |
45 # should be generated. | 41 # should be generated. |
46 apm_debug_dump = false | 42 apm_debug_dump = false |
47 | 43 |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 ]) | 302 ]) |
307 configs += invoker.configs | 303 configs += invoker.configs |
308 configs -= rtc_remove_configs | 304 configs -= rtc_remove_configs |
309 configs -= invoker.suppressed_configs | 305 configs -= invoker.suppressed_configs |
310 public_configs = [ rtc_common_inherited_config ] | 306 public_configs = [ rtc_common_inherited_config ] |
311 if (defined(invoker.public_configs)) { | 307 if (defined(invoker.public_configs)) { |
312 public_configs += invoker.public_configs | 308 public_configs += invoker.public_configs |
313 } | 309 } |
314 } | 310 } |
315 } | 311 } |
OLD | NEW |