AI 147059: CTS: Fix LOCAL_MODULE_TAGS for CTS tests
  CTS tests should use local module tag 'tests' such that they are not built
  and included in the image by default.
  BUG=1778334

Automated import of CL 147059
diff --git a/tests/Android.mk b/tests/Android.mk
index 48fa8e2..778a81c 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -15,7 +15,7 @@
 LOCAL_PATH:= $(call my-dir)
 include $(CLEAR_VARS)
 
-LOCAL_MODULE_TAGS := ctstests
+LOCAL_MODULE_TAGS := tests
 
 LOCAL_SRC_FILES := $(call all-java-files-under, src)\
               src/android/app/cts/ISecondary.aidl\