| 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 { | 9 { |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 'targets': [ | 130 'targets': [ |
| 131 { | 131 { |
| 132 'target_name': 'isac_neon', | 132 'target_name': 'isac_neon', |
| 133 'type': 'static_library', | 133 'type': 'static_library', |
| 134 'includes': ['../../../../build/arm_neon.gypi',], | 134 'includes': ['../../../../build/arm_neon.gypi',], |
| 135 'dependencies': [ | 135 'dependencies': [ |
| 136 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 136 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 137 ], | 137 ], |
| 138 'sources': [ | 138 'sources': [ |
| 139 'fix/source/entropy_coding_neon.c', | 139 'fix/source/entropy_coding_neon.c', |
| 140 'fix/source/filterbanks_neon.c', |
| 140 'fix/source/filters_neon.c', | 141 'fix/source/filters_neon.c', |
| 141 'fix/source/lattice_neon.c', | 142 'fix/source/lattice_neon.c', |
| 142 'fix/source/transform_neon.c', | 143 'fix/source/transform_neon.c', |
| 143 ], | 144 ], |
| 144 'conditions': [ | |
| 145 # Disable AllpassFilter2FixDec16Neon function due to a clang bug. | |
| 146 # For more details refer to: | |
| 147 # https://code.google.com/p/webrtc/issues/detail?id=4567 | |
| 148 ['target_arch!="arm64" or clang==0', { | |
| 149 'sources': ['fix/source/filterbanks_neon.c',], | |
| 150 }] | |
| 151 ], | |
| 152 }, | 145 }, |
| 153 ], | 146 ], |
| 154 }], | 147 }], |
| 155 ], | 148 ], |
| 156 } | 149 } |
| OLD | NEW |