diff options
author | Justin Yun <justinyun@google.com> | 2020-12-23 18:23:14 +0900 |
---|---|---|
committer | Justin Yun <justinyun@google.com> | 2020-12-24 10:51:07 +0900 |
commit | fd9e804470b0a073423251f8d04dc561534c080d (patch) | |
tree | b86e84a8ac55cc2b36dd4add4b55bed9857ec058 /scripts/lint-project-xml.py | |
parent | 6977e8a80c673a3449ec8e537d7a95b68b0bd874 (diff) |
Define vndk.private property for VNDK-private libraries
To define VNDK-private libraries, we used `vendor_available: false`.
Because of it, `vendor_available == nil` had different meaning from
`vendor_available: false` for the VNDK libraries.
To clarify this, we change the logic for defining VNDK-private
libraries which was:
cc_library {
name: "vndk_private",
vendor_available: false,
product_available: false,
vndk: {
enabled: true,
},
}
It must be replaced with
cc_library {
name: "vndk_private",
vendor_available: true,
product_available: true,
vndk: {
enabled: true,
private: true,
},
}
Bug: 175768895
Test: m nothing
Change-Id: I81769f57c2231e54b682a28e4b82631ab9f3d390
Diffstat (limited to 'scripts/lint-project-xml.py')
0 files changed, 0 insertions, 0 deletions