1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_library_static {
6    name: "libteeui_example_layout",
7    defaults: ["keystore_defaults"],
8    srcs: [
9        "examples.cpp",
10        "example_utils.cpp",
11        "fonts.S",
12        "phys_button_example.cpp",
13        "touch_button_example.cpp",
14    ],
15    static_libs: [
16        "libft2.nodep",
17        "libteeui",
18        "libteeui_localization",
19    ],
20    host_supported: true,
21    cflags: [
22        "-ffunction-sections",
23    ],
24}
25