Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: build/secondary/third_party/openmax_dl/dl/BUILD.gn

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/secondary/third_party/nss/BUILD.gn ('k') | build/secondary/tools/grit/grit_rule.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/secondary/third_party/nss/BUILD.gn ('k') | build/secondary/tools/grit/grit_rule.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698