blob: a52a4ab16fa1d6d0d40568c5906753715c942bb8 [file] [log] [blame]
Bob Badourd7984cc2021-02-12 20:51:13 -08001package {
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 "hardware_libhardware_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["hardware_libhardware_license"],
8}
9
Dan Willemsen86e247a2017-12-18 21:10:37 -080010cc_library_static {
11 name: "static-hal-check",
12 srcs: [
13 "struct-size.cpp",
14 "struct-offset.cpp",
15 "struct-last.cpp",
16 ],
17 shared_libs: ["libhardware"],
18 cflags: [
19 "-O0",
20 "-Wall",
21 "-Werror",
22 ],
23
Steven Morelandc4abc9d2023-07-18 20:53:58 +000024 vendor: true,
25
Dan Willemsen86e247a2017-12-18 21:10:37 -080026 include_dirs: ["system/media/camera/include"],
27}