From eb84a17080cc9138cc480cee31b5fdcc575e29c6 Mon Sep 17 00:00:00 2001 From: Aditya Choudhary Date: Fri, 2 Feb 2024 13:56:16 +0000 Subject: [PATCH] Migrate Test Targets to New Android Ownership Model This CL is created as a best effort to migrate test targets to the new Android ownership model. It is based on historical data from repository history and insights from git blame. Given the nature of this effort, there may be instances of incorrect attribution. If you find incorrect or unnecessary attribution in this CL, please create a new CL to fix that. For detailed guidelines and further information on the migration please refer to the link below, go/new-android-ownership-model Bug: 304529413 Test: N/A Change-Id: Ia2268756e71b22238b17b21d336f5f7e5bd35b0b --- install/Android.bp | 3 ++- minadbd/Android.bp | 3 ++- tests/Android.bp | 3 ++- updater_sample/tests/Android.bp | 1 + 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/install/Android.bp b/install/Android.bp index c5917145..93949caa 100644 --- a/install/Android.bp +++ b/install/Android.bp @@ -13,6 +13,7 @@ // limitations under the License. package { + default_team: "trendy_team_android_kernel", // 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" @@ -60,7 +61,7 @@ cc_defaults { cc_test_host { name: "libinstall_host_unittests", defaults: [ - "libspl_check_defaults" + "libspl_check_defaults", ], srcs: [ "spl_check_unittests.cpp", diff --git a/minadbd/Android.bp b/minadbd/Android.bp index e96d130e..91407f98 100644 --- a/minadbd/Android.bp +++ b/minadbd/Android.bp @@ -13,6 +13,7 @@ // limitations under the License. package { + default_team: "trendy_team_native_tools_libraries", // 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" @@ -110,7 +111,7 @@ cc_binary { required: [ "adbd_system_api_recovery", - ] + ], } cc_test { diff --git a/tests/Android.bp b/tests/Android.bp index 1fd26c4b..156a6d70 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -13,6 +13,7 @@ // limitations under the License. package { + default_team: "trendy_team_android_kernel", // 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" @@ -234,7 +235,7 @@ cc_fuzz { srcs: ["fuzz/verify_package_fuzzer.cpp"], corpus: [ - "testdata/otasigned*.zip", + "testdata/otasigned*.zip", ], static_libs: [ diff --git a/updater_sample/tests/Android.bp b/updater_sample/tests/Android.bp index 4bdfe2cd..88445c15 100644 --- a/updater_sample/tests/Android.bp +++ b/updater_sample/tests/Android.bp @@ -13,6 +13,7 @@ // limitations under the License. package { + default_team: "trendy_team_platform_build", // 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"