Merge "fix: cannot determine the type of modules with class 'samples'"
am: b1331938a3

Change-Id: I2908df25418d37f4be1c653110233900a063af8c
diff --git a/core/base_rules.mk b/core/base_rules.mk
index 2f7852d..1fb516b 100644
--- a/core/base_rules.mk
+++ b/core/base_rules.mk
@@ -227,9 +227,9 @@
     # Here, vendor means vendor/oem/odm
     lib_type := vendor_provided
   else
-    # Test lib falls into this. No lib_type required for them.
-    ifneq ($(filter tests,$(LOCAL_MODULE_TAGS)),tests)
-      $(call pretty-error,Cannot determine the type of this library)
+    # Test, samples lib falls into this. No lib_type required for them.
+    ifeq ($(filter tests samples,$(LOCAL_MODULE_TAGS)),)
+      $(call pretty-warning,Cannot determine the type of this library)
     endif
     lib_type :=
   endif