Changeset 278349 in webkit
- Timestamp:
- Jun 2, 2021, 5:17:18 AM (5 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 1 added
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Source/third_party/pffft/BUILD.gn (modified) (5 diffs)
-
Source/third_party/pffft/DIR_METADATA (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r278348 r278349 1 2021-06-02 Youenn Fablet <youenn@apple.com> 2 3 Update pffft to M92 4 https://bugs.webkit.org/show_bug.cgi?id=226491 5 6 Reviewed by Alex Christensen. 7 8 * Source/third_party/pffft/BUILD.gn: 9 * Source/third_party/pffft/DIR_METADATA: Added. 10 1 11 2021-06-02 Youenn Fablet <youenn@apple.com> 2 12 -
trunk/Source/ThirdParty/libwebrtc/Source/third_party/pffft/BUILD.gn
r251248 r278349 15 15 } 16 16 17 # PFFFT doesn't support SIMD on mipsel, so build a scalar version. 18 if ((current_cpu == "arm" && !arm_use_neon) || current_cpu == "mipsel") { 17 # PFFFT doesn't support SIMD on some cpus, so build a scalar version. 18 if ((current_cpu == "arm" && !arm_use_neon) || current_cpu == "mipsel" || 19 current_cpu == "mips64el" || current_cpu == "ppc64" || 20 current_cpu == "s390x") { 19 21 defines = [ "PFFFT_SIMD_DISABLE" ] 20 22 } … … 43 45 action("generate_pffft_fuzzer_corpus") { 44 46 script = "generate_seed_corpus.py" 45 sources = [ 46 "generate_seed_corpus.py", 47 ] 47 sources = [ "generate_seed_corpus.py" ] 48 48 args = [ rebase_path(fuzzer_testdata_dir, root_build_dir) ] 49 outputs = [ 50 fuzzer_testdata_dir, 51 ] 49 outputs = [ fuzzer_testdata_dir ] 52 50 } 53 51 54 52 fuzzer_test("pffft_complex_fuzzer") { 55 sources = [ 56 "pffft_fuzzer.cc", 57 ] 53 sources = [ "pffft_fuzzer.cc" ] 58 54 cflags = [ "-DTRANSFORM_COMPLEX" ] 59 deps = [ 60 ":pffft", 61 ] 55 deps = [ ":pffft" ] 62 56 seed_corpus = fuzzer_testdata_dir 63 57 seed_corpus_deps = [ ":generate_pffft_fuzzer_corpus" ] … … 65 59 66 60 fuzzer_test("pffft_real_fuzzer") { 67 sources = [ 68 "pffft_fuzzer.cc", 69 ] 61 sources = [ "pffft_fuzzer.cc" ] 70 62 cflags = [ "-DTRANSFORM_REAL" ] 71 deps = [ 72 ":pffft", 73 ] 63 deps = [ ":pffft" ] 74 64 seed_corpus = fuzzer_testdata_dir 75 65 seed_corpus_deps = [ ":generate_pffft_fuzzer_corpus" ] … … 89 79 } 90 80 81 config("pffft_benchmark_internal_config") { 82 cflags = [ 83 # test_pffft.c contains an `exit(1)` following a `break` statement. 84 "-Wno-unreachable-code", 85 ] 86 } 87 91 88 executable("pffft_benchmark") { 92 89 testonly = true 93 configs += [ ":common_config" ]94 sources = [95 " src/test_pffft.c",90 configs += [ 91 ":common_config", 92 ":pffft_benchmark_internal_config", 96 93 ] 94 sources = [ "src/test_pffft.c" ] 97 95 deps = [ 98 96 ":fftpack", … … 103 101 test("pffft_unittest") { 104 102 testonly = true 105 sources = [ 106 "pffft_unittest.cc", 107 ] 103 sources = [ "pffft_unittest.cc" ] 108 104 deps = [ 109 105 ":fftpack",
Note:
See TracChangeset
for help on using the changeset viewer.