summaryrefslogtreecommitdiff
path: root/c/Android.bp
blob: 96565dfaea31f5a944f565554be8caf0685c95f2 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_python_cffi_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-MIT
    default_applicable_licenses: ["external_python_cffi_license"],
}

python_library {
    name: "py-cffi-backend",
    host_supported: true,
    srcs: [
        "_dummy_file_cffi_backend.py",
    ],
    data: [
        ":py-cffi-backend-files"
    ],
}

filegroup {
    name: "py-cffi-backend-files",
    srcs: [
        "_cffi_backend.so",
    ],
}

python_library {
    name: "py-cffi-backend-libffi",
    host_supported: true,
    srcs: [
        "_dummy_file_libffi.py",
    ],
    data: [
        ":py-cffi-backend-libffi-files"
    ],
}

filegroup {
    name: "py-cffi-backend-libffi-files",
    srcs: [
        ".libs_cffi_backend/libffi-9c61262e.so.8.1.0",
    ],
}