diff options
author | Bob Badour <bbadour@google.com> | 2022-01-05 11:14:10 -0800 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2022-01-05 11:14:10 -0800 |
commit | 6acef468ccc7c9767b9dcf859fd484558d2a72a0 (patch) | |
tree | 13921fb22951d4acd7b3aaf1bd95b54f342420b3 /ir | |
parent | 69e8cc44f4fbe10c29f3c4ba8326e63176fdcb4b (diff) |
[LSC] Add LOCAL_LICENSE_KINDS to hardware/interfaces
Added SPDX-license-identifier-Apache-2.0 to:
ir/aidl/Android.bp
ir/aidl/default/Android.bp
wifi/supplicant/aidl/Android.bp
Bug: 68860345
Bug: 151177513
Bug: 151953481
Test: m all
Change-Id: I6796bb068122811520f911c0376b7f6caecf471c
Diffstat (limited to 'ir')
-rw-r--r-- | ir/aidl/Android.bp | 9 | ||||
-rw-r--r-- | ir/aidl/default/Android.bp | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/ir/aidl/Android.bp b/ir/aidl/Android.bp index 6dacb858d2..a623491c36 100644 --- a/ir/aidl/Android.bp +++ b/ir/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.ir", vendor_available: true, diff --git a/ir/aidl/default/Android.bp b/ir/aidl/default/Android.bp index 6519664dec..a4fb439566 100644 --- a/ir/aidl/default/Android.bp +++ b/ir/aidl/default/Android.bp @@ -13,6 +13,15 @@ // limitations under the License. // Example binder service of the ir HAL. +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.ir-service.example", relative_install_path: "hw", |