diff options
author | Bob Badour <bbadour@google.com> | 2022-01-27 10:48:29 -0800 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2022-01-27 10:48:29 -0800 |
commit | 589e5f76f6acce815d6676be18aee5379acb25a2 (patch) | |
tree | 5ea46345bce92b66805bcb95647f34cdc9d4c8e7 | |
parent | ff225d91c010c7b0e8f8a160a723e6b4c9c600a9 (diff) |
[LSC] Add LOCAL_LICENSE_KINDS to hardware/interfaces
Added SPDX-license-identifier-Apache-2.0 to:
nfc/aidl/Android.bp
nfc/aidl/default/Android.bp
Bug: 68860345
Bug: 151177513
Bug: 151953481
Test: m all
Change-Id: I9ad294e992c80d7962cf097a4dc5e60a51ba0fd9
-rw-r--r-- | nfc/aidl/Android.bp | 9 | ||||
-rw-r--r-- | nfc/aidl/default/Android.bp | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/nfc/aidl/Android.bp b/nfc/aidl/Android.bp index d390c7ea05..30365f636f 100644 --- a/nfc/aidl/Android.bp +++ b/nfc/aidl/Android.bp @@ -12,6 +12,15 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + // See: http://go/android-license-faq + // A large-scale-change added 'default_applicable_licenses' to import + // all of the 'license_kinds' from "hardware_interfaces_license" + // to get the below license kinds: + // SPDX-license-identifier-Apache-2.0 + default_applicable_licenses: ["hardware_interfaces_license"], +} + aidl_interface { name: "android.hardware.nfc", vendor_available: true, diff --git a/nfc/aidl/default/Android.bp b/nfc/aidl/default/Android.bp index 907d23d222..6daebe5697 100644 --- a/nfc/aidl/default/Android.bp +++ b/nfc/aidl/default/Android.bp @@ -1,3 +1,12 @@ +package { + // See: http://go/android-license-faq + // A large-scale-change added 'default_applicable_licenses' to import + // all of the 'license_kinds' from "hardware_interfaces_license" + // to get the below license kinds: + // SPDX-license-identifier-Apache-2.0 + default_applicable_licenses: ["hardware_interfaces_license"], +} + cc_binary { name: "android.hardware.nfc-service.example", relative_install_path: "hw", |