From 0e1269867d6f78451408878737d6005de830e6ca Mon Sep 17 00:00:00 2001 From: Bob Badour Date: Thu, 11 Feb 2021 12:29:12 -0800 Subject: Add LOCAL_LICENSE_KINDS to external/strace Added SPDX-license-identifier-BSD SPDX-license-identifier-FSFAP SPDX-license-identifier-MIT legacy_notice legacy_unencumbered to: Android.bp Bug: 68860345 Bug: 151177513 Bug: 151953481 Test: m all Change-Id: I5d8f5fee9f877b7fa6b53ebc2db7698570261d1e --- Android.bp | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/Android.bp b/Android.bp index f3ac51ec..801cffa3 100644 --- a/Android.bp +++ b/Android.bp @@ -1,18 +1,21 @@ -// -// Copyright (C) 2006 The Android Open Source Project -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +package { + default_applicable_licenses: ["external_strace_license"], +} + +license { + name: "external_strace_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-BSD", + "SPDX-license-identifier-FSFAP", + "SPDX-license-identifier-MIT", + "legacy_notice", + "legacy_unencumbered", + ], + license_text: [ + "COPYING", + ], +} cc_binary { -- cgit v1.2.3