| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 declare_args() { | 5 declare_args() { |
| 6 # Override this value to build with small float FFT tables | 6 # Override this value to build with small float FFT tables |
| 7 openmax_big_float_fft = true | 7 openmax_big_float_fft = true |
| 8 } | 8 } |
| 9 | 9 |
| 10 config("dl_config") { | 10 config("dl_config") { |
| 11 include_dirs = [ ".." ] | 11 include_dirs = [ ".." ] |
| 12 } | 12 } |
| 13 | 13 |
| 14 # GYP: third_party/openmax_dl/dl/dl.gyp:openmax_dl | 14 # GYP: third_party/openmax_dl/dl/dl.gyp:openmax_dl |
| 15 source_set("dl") { | 15 source_set("dl") { |
| 16 direct_dependent_configs = [ ":dl_config" ] | 16 public_configs = [ ":dl_config" ] |
| 17 sources = [ | 17 sources = [ |
| 18 "api/omxtypes.h", | 18 "api/omxtypes.h", |
| 19 "sp/api/omxSP.h", | 19 "sp/api/omxSP.h", |
| 20 "sp/src/armSP_FFT_F32TwiddleTable.c", | 20 "sp/src/armSP_FFT_F32TwiddleTable.c", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 cflags = [] | 23 cflags = [] |
| 24 deps = [] | 24 deps = [] |
| 25 defines = [] | 25 defines = [] |
| 26 | 26 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "sp/src/arm/armv7/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S", | 223 "sp/src/arm/armv7/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S", |
| 224 "sp/src/arm/armv7/omxSP_FFTInv_CToC_FC32_Sfs_s.S", | 224 "sp/src/arm/armv7/omxSP_FFTInv_CToC_FC32_Sfs_s.S", |
| 225 "sp/src/arm/armv7/omxSP_FFTFwd_CToC_FC32_Sfs_s.S", | 225 "sp/src/arm/armv7/omxSP_FFTFwd_CToC_FC32_Sfs_s.S", |
| 226 # Real floating-point FFT | 226 # Real floating-point FFT |
| 227 "sp/src/arm/armv7/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S", | 227 "sp/src/arm/armv7/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S", |
| 228 "sp/src/arm/armv7/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S", | 228 "sp/src/arm/armv7/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S", |
| 229 "sp/src/arm/armv7/omxSP_FFTInv_CCSToR_F32_Sfs_s.S", | 229 "sp/src/arm/armv7/omxSP_FFTInv_CCSToR_F32_Sfs_s.S", |
| 230 ] | 230 ] |
| 231 } | 231 } |
| 232 } | 232 } |
| OLD | NEW |