| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 | 196 |
| 197 'include_pulse_audio%': 1, | 197 'include_pulse_audio%': 1, |
| 198 'include_internal_audio_device%': 1, | 198 'include_internal_audio_device%': 1, |
| 199 'include_internal_device_management%': 1, | 199 'include_internal_device_management%': 1, |
| 200 'include_tests%': 1, | 200 'include_tests%': 1, |
| 201 'restrict_webrtc_logging%': 0, | 201 'restrict_webrtc_logging%': 0, |
| 202 }], | 202 }], |
| 203 ['OS=="ios"', { | 203 ['OS=="ios"', { |
| 204 'build_libjpeg%': 0, | 204 'build_libjpeg%': 0, |
| 205 }], | 205 }], |
| 206 ['target_arch=="arm" or target_arch=="arm64"', { | 206 ['target_arch=="arm" or target_arch=="arm64" or target_arch=="mipsel"', { |
| 207 'prefer_fixed_point%': 1, | 207 'prefer_fixed_point%': 1, |
| 208 }], | 208 }], |
| 209 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { | 209 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { |
| 210 'build_with_neon%': 1, | 210 'build_with_neon%': 1, |
| 211 }], | 211 }], |
| 212 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { | 212 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { |
| 213 'rtc_use_openmax_dl%': 1, | 213 'rtc_use_openmax_dl%': 1, |
| 214 }, { | 214 }, { |
| 215 'rtc_use_openmax_dl%': 0, | 215 'rtc_use_openmax_dl%': 0, |
| 216 }], | 216 }], |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 492 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
| 493 # of a more specific macro. | 493 # of a more specific macro. |
| 494 'defines': [ | 494 'defines': [ |
| 495 'WEBRTC_POSIX', | 495 'WEBRTC_POSIX', |
| 496 ], | 496 ], |
| 497 }], | 497 }], |
| 498 ], | 498 ], |
| 499 }, | 499 }, |
| 500 }, # target_defaults | 500 }, # target_defaults |
| 501 } | 501 } |
| 502 | |
| OLD | NEW |