Don't install perfprofd on marlin-eng nor on sailfish-eng.

Replace it with dummy package no-perfprofd. This saves us a bit of
space and makes the system partition fit within the limits on those
build products. This is a temporary measure.

Test: lunch marlin-eng && make systemimage
Bug: 113373927
Change-Id: Id5e9d8cb95696fc7bd69b9c132b20a5a2e0ef705
diff --git a/device-common.mk b/device-common.mk
index a263988..c213adc 100644
--- a/device-common.mk
+++ b/device-common.mk
@@ -645,3 +645,9 @@
 # default atrace HAL
 PRODUCT_PACKAGES += \
     android.hardware.atrace@1.0-service
+
+# Don't install perfprofd on marlin-eng and sailfish-eng (install
+# dummy binary no-perfprofd instead).
+ifneq (,$(filter eng, $(TARGET_BUILD_VARIANT)))
+PRODUCT_PACKAGES += no-perfprofd
+endif