diff options
author | Bob Badour <bbadour@google.com> | 2021-02-13 03:00:57 +0100 |
---|---|---|
committer | Bob Badour <bbadour@google.com> | 2021-02-14 19:37:20 +0100 |
commit | 29be3f6ef1b9f9884206cade2fc98b3f012ef27e (patch) | |
tree | 780fbca124716d20dd0ed8d89544cffafeead673 /updater | |
parent | Merge "recovery: don't mount acct" (diff) | |
download | android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.gz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.bz2 android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.lz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.xz android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.tar.zst android_bootable_recovery-29be3f6ef1b9f9884206cade2fc98b3f012ef27e.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/Android.bp | 9 | ||||
-rw-r--r-- | updater/Android.mk | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/updater/Android.bp b/updater/Android.bp index f00a192b9..840e50ab9 100644 --- a/updater/Android.bp +++ b/updater/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 "bootable_recovery_license" + // to get the below license kinds: + // SPDX-license-identifier-Apache-2.0 + default_applicable_licenses: ["bootable_recovery_license"], +} + cc_defaults { name: "libupdater_static_libs", diff --git a/updater/Android.mk b/updater/Android.mk index 46300d974..ddd4d864a 100644 --- a/updater/Android.mk +++ b/updater/Android.mk @@ -72,6 +72,9 @@ endef include $(CLEAR_VARS) LOCAL_MODULE := updater +LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 +LOCAL_LICENSE_CONDITIONS := notice +LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE LOCAL_SRC_FILES := \ updater_main.cpp |