6caa21aa82
Libraries that are direct or indirect dependencies of modules installed to recovery partition (e.g. adbd) are marked as recovery_available: true. This allows a recovery variant of the lib is created when it is depended by other recovery or recovery_available modules. Bug: 79146551 Test: m -j Change-Id: I1181fa0646d840c0194e4af2043ec228ec9eff16
13 lines
295 B
Text
13 lines
295 B
Text
cc_library_static {
|
|
name: "libbuildversion",
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
srcs: ["libbuildversion.cpp"],
|
|
export_include_dirs: ["include"],
|
|
cflags: ["-fvisibility=hidden"],
|
|
target: {
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
}
|