| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 # Enable data logging. Produces text files with data logged within engines | 92 # Enable data logging. Produces text files with data logged within engines |
| 93 # which can be easily parsed for offline processing. | 93 # which can be easily parsed for offline processing. |
| 94 'enable_data_logging%': 0, | 94 'enable_data_logging%': 0, |
| 95 | 95 |
| 96 # Enables the use of protocol buffers for debug recordings. | 96 # Enables the use of protocol buffers for debug recordings. |
| 97 'enable_protobuf%': 1, | 97 'enable_protobuf%': 1, |
| 98 | 98 |
| 99 # Disable these to not build components which can be externally provided. | 99 # Disable these to not build components which can be externally provided. |
| 100 'build_expat%': 1, | 100 'build_expat%': 1, |
| 101 'build_json%': 1, | 101 'build_json%': 1, |
| 102 'build_libjpeg%': 1, | |
| 103 'build_libsrtp%': 1, | 102 'build_libsrtp%': 1, |
| 104 'build_libvpx%': 1, | 103 'build_libvpx%': 1, |
| 105 'build_libyuv%': 1, | 104 'build_libyuv%': 1, |
| 106 'build_openmax_dl%': 1, | 105 'build_openmax_dl%': 1, |
| 107 'build_opus%': 1, | 106 'build_opus%': 1, |
| 108 'build_protobuf%': 1, | 107 'build_protobuf%': 1, |
| 109 'build_ssl%': 1, | 108 'build_ssl%': 1, |
| 110 'build_usrsctp%': 1, | 109 'build_usrsctp%': 1, |
| 111 | 110 |
| 112 # Disable by default | 111 # Disable by default |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 # TODO(andrew): For now, disable the Chrome plugins, which causes a | 195 # TODO(andrew): For now, disable the Chrome plugins, which causes a |
| 197 # flood of chromium-style warnings. Investigate enabling them: | 196 # flood of chromium-style warnings. Investigate enabling them: |
| 198 # http://code.google.com/p/webrtc/issues/detail?id=163 | 197 # http://code.google.com/p/webrtc/issues/detail?id=163 |
| 199 'clang_use_chrome_plugins%': 0, | 198 'clang_use_chrome_plugins%': 0, |
| 200 | 199 |
| 201 'include_pulse_audio%': 1, | 200 'include_pulse_audio%': 1, |
| 202 'include_internal_audio_device%': 1, | 201 'include_internal_audio_device%': 1, |
| 203 'include_tests%': 1, | 202 'include_tests%': 1, |
| 204 'restrict_webrtc_logging%': 0, | 203 'restrict_webrtc_logging%': 0, |
| 205 }], | 204 }], |
| 206 ['OS=="ios"', { | |
| 207 'build_libjpeg%': 0, | |
| 208 }], | |
| 209 ['target_arch=="arm" or target_arch=="arm64" or target_arch=="mipsel"', { | 205 ['target_arch=="arm" or target_arch=="arm64" or target_arch=="mipsel"', { |
| 210 'prefer_fixed_point%': 1, | 206 'prefer_fixed_point%': 1, |
| 211 }], | 207 }], |
| 212 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { | 208 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { |
| 213 'build_with_neon%': 1, | 209 'build_with_neon%': 1, |
| 214 }], | 210 }], |
| 215 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { | 211 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { |
| 216 'rtc_use_openmax_dl%': 1, | 212 'rtc_use_openmax_dl%': 1, |
| 217 }, { | 213 }, { |
| 218 'rtc_use_openmax_dl%': 0, | 214 'rtc_use_openmax_dl%': 0, |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 499 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
| 504 # of a more specific macro. | 500 # of a more specific macro. |
| 505 'defines': [ | 501 'defines': [ |
| 506 'WEBRTC_POSIX', | 502 'WEBRTC_POSIX', |
| 507 ], | 503 ], |
| 508 }], | 504 }], |
| 509 ], | 505 ], |
| 510 }, | 506 }, |
| 511 }, # target_defaults | 507 }, # target_defaults |
| 512 } | 508 } |
| OLD | NEW |