diff options
author | 2021-02-05 20:48:09 +0000 | |
---|---|---|
committer | 2021-02-05 20:48:09 +0000 | |
commit | 13f86dd226a4571e34b3e1ad38df4248be4c5fa5 (patch) | |
tree | f88f793a505de29991f4a6c008a9855aae5c9400 | |
parent | 5a3a53efd282e0a66f818a1d3b30095ca06af4f1 (diff) | |
parent | 7924b774858594bba3458ac9ec03c3cb6805591f (diff) |
[LSC] Add LOCAL_LICENSE_KINDS to packages/modules/Permission am: 2f0b2bbf3d am: 7924b77485
Original change: https://android-review.googlesource.com/c/platform/packages/modules/Permission/+/1576226
MUST ONLY BE SUBMITTED BY AUTOMERGER
Change-Id: I1007c5274c417eaf995de284de8dba8bf5c0ed7f
-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 e30df05b2..96d4259d0 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 1a2d5d541..f325184a9 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 cc6f2019a..f10e7bf36 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", |