aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: d953669de7e07082046a29a8b5d197c003792d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cc_library_static {
    name: "libpffft",
    // vendor needed for libpreprocessing effects.
    vendor: true,
    srcs: [
        "pffft.c",
        "pffft_common.c",
    ],
    local_include_dirs: ["."],
    export_include_dirs: ["."],
    host_supported: true,
    visibility: ["//external/webrtc:__subpackages__"],
    cflags: [
        "-Wno-#pragma-messages",
    ],
    arch: {
        arm: {
            cflags: ["-DPFFFT_ENABLE_NEON"],
        },
        arm64: {
            cflags: ["-DPFFFT_ENABLE_NEON"],
        },
    },
}