1// For the host and device
2// =====================================================
3package {
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "frameworks_compile_slang_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-Apache-2.0
9    default_applicable_licenses: ["frameworks_compile_slang_license"],
10}
11
12cc_library_static {
13    name: "libStripUnkAttr",
14    vendor_available: true,
15    host_supported: true,
16    defaults: ["slang-defaults"],
17
18    srcs: [
19        "strip_unknown_attributes.cpp",
20        "strip_unknown_attributes_pass.cpp",
21    ],
22}
23