1package { 2 default_team: "trendy_team_platform_security", 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6cc_test { 7 name: "CtsNativeEncryptionTestCases", 8 cflags: [ 9 "-Wall", 10 "-Werror", 11 "-Wno-error=#warnings", 12 ], 13 srcs: [ 14 "FileBasedEncryptionPolicyTest.cpp", 15 ], 16 shared_libs: [ 17 "libbase", 18 "libcutils", 19 ], 20 static_libs: [ 21 "libctssecurity_native_test_utils", 22 "libfscrypt", 23 ], 24 multilib: { 25 lib32: { 26 suffix: "32", 27 }, 28 lib64: { 29 suffix: "64", 30 }, 31 }, 32 test_suites: [ 33 "cts", 34 "general-tests", 35 ], 36} 37