diff options
author | 2021-09-14 05:34:11 +0000 | |
---|---|---|
committer | 2021-10-11 15:51:58 +0000 | |
commit | 4fe64fb4712a99d5da9c9a0eb8fd5169b252e1e1 (patch) | |
tree | 8a21b30c630f9d7205e658f531e67c64fd13e2da /omapi/java/Android.bp | |
parent | 70e7dd44b422ec4727dce5f6984692bf76a8ca85 (diff) |
Support for OMAPI Vendor stable interface
Changes are made to existing OMAPI inteface to make it as Vendor Stable
Interface.
Bug: b/180639372
Test: Run OMAPI CTS and VTS tests
Change-Id: Ibfd23215ad180d78af843c0d0b394b42ba8e9daa
Diffstat (limited to 'omapi/java/Android.bp')
-rw-r--r-- | omapi/java/Android.bp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/omapi/java/Android.bp b/omapi/java/Android.bp new file mode 100644 index 000000000000..8d38da048d9b --- /dev/null +++ b/omapi/java/Android.bp @@ -0,0 +1,17 @@ +package { + // See: http://go/android-license-faq + // A large-scale-change added 'default_applicable_licenses' to import + // all of the 'license_kinds' from "frameworks_base_license" + // to get the below license kinds: + // SPDX-license-identifier-Apache-2.0 + default_applicable_licenses: ["frameworks_base_license"], +} + +filegroup { + name: "framework-omapi-sources", + srcs: [ + "**/*.java", + "**/*.aidl", + ], + visibility: ["//frameworks/base"], +} |