diff options
author | 2021-02-05 21:34:33 +0000 | |
---|---|---|
committer | 2021-02-05 21:34:33 +0000 | |
commit | b99a9ad9c7f73211dd499b581433ea6c982d75cb (patch) | |
tree | da74663fb3bf6a9d1b0caa04f7852f3d1ea0c26d | |
parent | 6696fe7d4de2bef0b19109586f0e114af054761c (diff) | |
parent | 13f86dd226a4571e34b3e1ad38df4248be4c5fa5 (diff) |
[LSC] Add LOCAL_LICENSE_KINDS to packages/modules/Permission am: 2f0b2bbf3d am: 7924b77485 am: 13f86dd226
Original change: https://android-review.googlesource.com/c/platform/packages/modules/Permission/+/1576226
MUST ONLY BE SUBMITTED BY AUTOMERGER
Change-Id: I971bc92333730c2121be2e540660fe9419004ef8
-rw-r--r-- | Android.bp | 4 | ||||
-rw-r--r-- | framework/Android.bp | 4 | ||||
-rw-r--r-- | service/Android.bp | 4 | ||||
-rw-r--r-- | testing/Android.bp | 4 | ||||
-rw-r--r-- | tests/Android.bp | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index be51143e4..91f5346f9 100644 --- a/Android.bp +++ b/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + apex { name: "com.android.permission", defaults: ["com.android.permission-defaults"], diff --git a/framework/Android.bp b/framework/Android.bp index 52a61674a..04975edc7 100644 --- a/framework/Android.bp +++ b/framework/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + filegroup { name: "framework-permission-sources", srcs: [ diff --git a/service/Android.bp b/service/Android.bp index d0fc5b9d7..764120adc 100644 --- a/service/Android.bp +++ b/service/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + filegroup { name: "service-permission-sources", srcs: [ diff --git a/testing/Android.bp b/testing/Android.bp index 63bf0a08e..8abed1e0c 100644 --- a/testing/Android.bp +++ b/testing/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + apex_test { name: "test_com.android.permission", visibility: [ diff --git a/tests/Android.bp b/tests/Android.bp index 271e328c1..eb4270a6f 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -12,6 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + android_test { name: "PermissionApexTests", sdk_version: "test_current", |