| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 # This file contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
| 10 | 10 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 # Use llvm's sancov -html-report for human readable reports. | 100 # Use llvm's sancov -html-report for human readable reports. |
| 101 # See http://clang.llvm.org/docs/SanitizerCoverage.html . | 101 # See http://clang.llvm.org/docs/SanitizerCoverage.html . |
| 102 'webrtc_sanitize_coverage%': "", | 102 'webrtc_sanitize_coverage%': "", |
| 103 | 103 |
| 104 # Remote bitrate estimator logging/plotting. | 104 # Remote bitrate estimator logging/plotting. |
| 105 'enable_bwe_test_logging%': 0, | 105 'enable_bwe_test_logging%': 0, |
| 106 | 106 |
| 107 # Selects fixed-point code where possible. | 107 # Selects fixed-point code where possible. |
| 108 'prefer_fixed_point%': 0, | 108 'prefer_fixed_point%': 0, |
| 109 | 109 |
| 110 # Enable data logging. Produces text files with data logged within engines | |
| 111 # which can be easily parsed for offline processing. | |
| 112 'enable_data_logging%': 0, | |
| 113 | |
| 114 # Enables the use of protocol buffers for debug recordings. | 110 # Enables the use of protocol buffers for debug recordings. |
| 115 'enable_protobuf%': 1, | 111 'enable_protobuf%': 1, |
| 116 | 112 |
| 117 # Disable the code for the intelligibility enhancer by default. | 113 # Disable the code for the intelligibility enhancer by default. |
| 118 'enable_intelligibility_enhancer%': 0, | 114 'enable_intelligibility_enhancer%': 0, |
| 119 | 115 |
| 120 # Selects whether debug dumps for the audio processing module | 116 # Selects whether debug dumps for the audio processing module |
| 121 # should be generated. | 117 # should be generated. |
| 122 'apm_debug_dump%': 0, | 118 'apm_debug_dump%': 0, |
| 123 | 119 |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 600 }], | 596 }], |
| 601 ['OS=="freebsd"', { | 597 ['OS=="freebsd"', { |
| 602 'defines': [ | 598 'defines': [ |
| 603 'FREEBSD', | 599 'FREEBSD', |
| 604 ], | 600 ], |
| 605 }], | 601 }], |
| 606 ], | 602 ], |
| 607 }, | 603 }, |
| 608 }, # target_defaults | 604 }, # target_defaults |
| 609 } | 605 } |
| OLD | NEW |