Files
build_soong/linkerconfig/proto/Android.bp
Kiyoung Kim 4098c7eddf Add linkerconfig to Runtime APEX
Add linkerconfig to Runtime APEX module.

Bug: 165769179
Test: Cuttlefish boot succeeded
Change-Id: I31c4bfa2ce88b64d7100f227ec289416db253b13
2020-12-02 11:33:54 +09:00

33 lines
633 B
Plaintext

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"],
apex_available: [
"//apex_available:platform",
"//apex_available:anyapex",
],
}
python_library_host {
name: "linker_config_proto",
version: {
py2: {
enabled: false,
},
py3: {
enabled: true,
},
},
srcs: [
"linker_config.proto",
],
proto: {
canonical_path_from_root: false,
},
}