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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 # http://code.google.com/p/webrtc/issues/detail?id=163 | 141 # http://code.google.com/p/webrtc/issues/detail?id=163 |
142 'clang_use_chrome_plugins%': 0, | 142 'clang_use_chrome_plugins%': 0, |
143 | 143 |
144 'include_pulse_audio%': 1, | 144 'include_pulse_audio%': 1, |
145 'include_internal_audio_device%': 1, | 145 'include_internal_audio_device%': 1, |
146 'include_tests%': 1, | 146 'include_tests%': 1, |
147 'restrict_webrtc_logging%': 0, | 147 'restrict_webrtc_logging%': 0, |
148 }], | 148 }], |
149 ['OS=="ios"', { | 149 ['OS=="ios"', { |
150 'build_libjpeg%': 0, | 150 'build_libjpeg%': 0, |
151 'enable_protobuf%': 0, | |
152 }], | 151 }], |
153 ['target_arch=="arm" or target_arch=="arm64"', { | 152 ['target_arch=="arm" or target_arch=="arm64"', { |
154 'prefer_fixed_point%': 1, | 153 'prefer_fixed_point%': 1, |
155 }], | 154 }], |
156 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { | 155 ['(target_arch=="arm" and (arm_neon==1 or arm_neon_optional==1)) or target
_arch=="arm64"', { |
157 'build_with_neon%': 1, | 156 'build_with_neon%': 1, |
158 }], | 157 }], |
159 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { | 158 ['OS!="ios" and (target_arch!="arm" or arm_version>=7) and target_arch!="m
ips64el"', { |
160 'rtc_use_openmax_dl%': 1, | 159 'rtc_use_openmax_dl%': 1, |
161 }, { | 160 }, { |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 # of a more specific macro. | 439 # of a more specific macro. |
441 'defines': [ | 440 'defines': [ |
442 'WEBRTC_POSIX', | 441 'WEBRTC_POSIX', |
443 ], | 442 ], |
444 }], | 443 }], |
445 ], | 444 ], |
446 }, | 445 }, |
447 }, # target_defaults | 446 }, # target_defaults |
448 } | 447 } |
449 | 448 |
OLD | NEW |