62abd12ba5
Handle new filetype 'linker_config' which is configuration for linkerconfig in json type and convert into protobuf in build time. Bug: 169634881 Test: Build succeeded and cuttlefish boot succeeded Change-Id: I56555fc738e6d6600d15a191a24f79a2ee747f52
28 lines
531 B
Text
28 lines
531 B
Text
cc_library_static {
|
|
name: "lib_linker_config_proto_lite",
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
proto: {
|
|
export_proto_headers: true,
|
|
type: "lite",
|
|
},
|
|
srcs: ["linker_config.proto"],
|
|
}
|
|
|
|
python_library_host {
|
|
name: "linker_config_proto",
|
|
version: {
|
|
py2: {
|
|
enabled: false,
|
|
},
|
|
py3: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
srcs: [
|
|
"linker_config.proto",
|
|
],
|
|
proto: {
|
|
canonical_path_from_root: false,
|
|
},
|
|
}
|