1PRODUCT_COPY_FILES += \ 2 hardware/google/pixel/common/init.pixel.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.pixel.rc 3 4BOARD_VENDOR_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/common/vendor 5SYSTEM_EXT_PRIVATE_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/common/system_ext 6 7# Write flags to the vendor space in /misc partition. 8PRODUCT_PACKAGES += \ 9 misc_writer 10 11# Enable atrace hal and tools for pixel devices 12PRODUCT_PACKAGES += \ 13 android.hardware.atrace@1.0-service.pixel \ 14 dmabuf_dump 15 16# fastbootd 17PRODUCT_PACKAGES += \ 18 fastbootd 19 20# Common ramdump file type. 21BOARD_VENDOR_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/ramdump/common 22 23# Pixel Experience 24 25ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT))) 26ifeq (,$(filter aosp_%,$(TARGET_PRODUCT))) 27PRODUCT_PACKAGES_DEBUG += wifi_diagnostic 28BOARD_VENDOR_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/wifi_diagnostic 29endif 30endif 31 32PRODUCT_PACKAGES_DEBUG += wifi_sniffer 33BOARD_VENDOR_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/wifi_sniffer 34 35PRODUCT_PACKAGES_DEBUG += wifi_perf_diag 36BOARD_VENDOR_SEPOLICY_DIRS += hardware/google/pixel-sepolicy/wifi_perf_diag 37 38# Enable whole-program R8 Java optimizations for SystemUI and system_server, 39# but also allow explicit overriding for testing and development. 40SYSTEM_OPTIMIZE_JAVA ?= true 41SYSTEMUI_OPTIMIZE_JAVA ?= true 42