From 3e41f92cf5d19b9ed8193ca6947627acae784d36 Mon Sep 17 00:00:00 2001 From: Dan Willemsen Date: Tue, 8 May 2018 17:14:28 -0700 Subject: [PATCH] Remove unused `tags` property from Android.bp files The tags property is (and has always been) unused by Soong. The property has been defined as a list of strings, and the `androidmk` converted any LOCAL_MODULE_TAGS entries over to it, but we've never done anything with it. In preparation for removing the definition from Soong, I'm removing it from all Android.bp files in the tree. Since this has never done anything, this is a no-op, but if you really did want the Android.mk behavior, the proper way to define a module to be installed in userdebug / eng builds is to use PRODUCT_PACKAGES_DEBUG or PRODUCT_PACKAGES_ENG in the appropriate product makefile. Change-Id: Id519b2c0ec352e45c470a1734dfc633bbe39937e Exempt-From-Owner-Approval: global no-op build change Test: remove `tags` from Soong, see errors go away. --- adb/Android.bp | 1 - 1 file changed, 1 deletion(-) diff --git a/adb/Android.bp b/adb/Android.bp index b9a15966e..99de54e1c 100644 --- a/adb/Android.bp +++ b/adb/Android.bp @@ -222,7 +222,6 @@ cc_benchmark { cc_binary_host { name: "adb", - tags: ["debug"], defaults: ["adb_defaults"],