Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['target_arch=="arm" or target_arch=="arm64"', { | 8 ['target_arch=="arm" or target_arch=="arm64"', { |
| 9 'use_opus_fixed_point%': 1, | 9 'use_opus_fixed_point%': 1, |
| 10 }, { | 10 }, { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 ], | 143 ], |
| 144 'includes': [ | 144 'includes': [ |
| 145 'opus_srcs_arm.gypi', | 145 'opus_srcs_arm.gypi', |
| 146 ], | 146 ], |
| 147 'conditions': [ | 147 'conditions': [ |
| 148 ['use_opus_rtcd==1', { | 148 ['use_opus_rtcd==1', { |
| 149 'defines': [ | 149 'defines': [ |
| 150 'OPUS_ARM_MAY_HAVE_EDSP', | 150 'OPUS_ARM_MAY_HAVE_EDSP', |
| 151 'OPUS_ARM_MAY_HAVE_MEDIA', | 151 'OPUS_ARM_MAY_HAVE_MEDIA', |
| 152 'OPUS_ARM_MAY_HAVE_NEON', | 152 'OPUS_ARM_MAY_HAVE_NEON', |
| 153 'OPUS_ARM_MAY_HAVE_NEON_INTR', | |
| 153 'OPUS_HAVE_RTCD', | 154 'OPUS_HAVE_RTCD', |
| 154 ], | 155 ], |
| 155 'includes': [ | 156 'includes': [ |
| 156 'opus_srcs_rtcd.gypi', | 157 'opus_srcs_rtcd.gypi', |
| 157 ], | 158 ], |
| 159 'cflags!': [ '-mfpu=vfpv3-d16' ], | |
|
kjellander_chromium
2016/01/28 08:06:07
This is not needed for the GN build?
flim-chromium
2016/01/29 11:33:38
Fixed.
| |
| 160 'cflags': [ '-mfpu=neon' ], | |
| 158 }], | 161 }], |
| 159 ], | 162 ], |
| 160 }], | 163 }], |
| 161 ], | 164 ], |
| 162 }], | 165 }], |
| 163 ], | 166 ], |
| 164 }, # target opus | 167 }, # target opus |
| 165 { | 168 { |
| 166 'target_name': 'opus_compare', | 169 'target_name': 'opus_compare', |
| 167 'type': 'executable', | 170 'type': 'executable', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 231 'type': 'executable', | 234 'type': 'executable', |
| 232 'dependencies': [ | 235 'dependencies': [ |
| 233 'opus' | 236 'opus' |
| 234 ], | 237 ], |
| 235 'sources': [ | 238 'sources': [ |
| 236 'src/tests/test_opus_padding.c', | 239 'src/tests/test_opus_padding.c', |
| 237 ], | 240 ], |
| 238 }, # target test_opus_padding | 241 }, # target test_opus_padding |
| 239 ] | 242 ] |
| 240 } | 243 } |
| OLD | NEW |