From 537089e284b6d85810e9c679a6e531af11262fbd Mon Sep 17 00:00:00 2001 From: Ulises Mendez Martinez Date: Wed, 19 Mar 2025 15:31:20 +0000 Subject: [PATCH] ANDROID: Add IFTTT analyzer markers for GKI modules * This is temporary check to avoid getting out of sync with regards to the list of protected exports each time there is a change in the GKI module list. Bug: 393366754 Bug: 279016364 Change-Id: Ibdfbe5b461f221e3d875f576ec8540f4a8713d8a Signed-off-by: Ulises Mendez Martinez --- modules.bzl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules.bzl b/modules.bzl index ebbb90ddaf6e..49700e6cf657 100644 --- a/modules.bzl +++ b/modules.bzl @@ -6,6 +6,7 @@ This module contains a full list of kernel modules compiled by GKI. """ +# LINT.IfChange _COMMON_GKI_MODULES_LIST = [ # keep sorted "drivers/block/virtio_blk.ko", @@ -105,6 +106,7 @@ _ARM64_GKI_MODULES_LIST = [ "drivers/misc/open-dice.ko", "drivers/ptp/ptp_kvm.ko", ] +# LINT.ThenChange(gki/aarch64/protected_exports) _X86_GKI_MODULES_LIST = [ # keep sorted @@ -204,7 +206,9 @@ def get_kunit_modules_list(arch = None): return kunit_modules_list +# LINT.IfChange _COMMON_UNPROTECTED_MODULES_LIST = [] +# LINT.ThenChange(gki/aarch64/protected_exports) # buildifier: disable=unnamed-macro def get_gki_protected_modules_list(arch = None):