xref: /aosp_15_r20/frameworks/minikin/Android.bp (revision 834a2baab5fdfc28e9a428ee87c7ea8f6a06a53d)
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_defaults {
6    name: "libminikin_defaults",
7    cflags: [
8        "-Wall",
9        "-Werror",
10        "-Wextra",
11        "-Wthread-safety",
12        "-DLOG_TAG=\"Minikin\"",
13    ],
14}
15
16cc_library_headers {
17    name: "libminikin_headers",
18    host_supported: true,
19    export_include_dirs: ["include"],
20    header_libs: [
21        "libgtest_prod_headers",
22    ],
23    export_header_lib_headers: [
24        "libgtest_prod_headers",
25    ],
26    target: {
27        windows: {
28            enabled: true,
29        },
30    },
31}
32
33subdirs = [
34    "app",
35    "libs/minikin",
36    "tests",
37]
38