1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "device_generic_goldfish-opengl_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-GPL-2.0
7    default_applicable_licenses: ["device_generic_goldfish-opengl_license"],
8}
9
10cc_library_shared {
11    name: "libgoldfish_codec2_store",
12    vendor: true,
13
14    defaults: [
15        "libcodec2-impl-defaults",
16    ],
17
18    srcs: [
19        "GoldfishComponentStore.cpp",
20    ],
21    export_include_dirs: [
22        "include",
23    ],
24
25    shared_libs: [
26        "libcutils",
27        "liblog",
28    ],
29
30    cflags: [
31      "-Werror",
32      "-Wall",
33      "-Wthread-safety",  // Check thread annotation at build time.
34    ],
35}
36