1// Copyright 2008 The Android Open Source Project 2// 3 4subdirs = [ 5 "test", 6] 7 8cc_library_static { 9 name: "libconstrainedcrypto", 10 host_supported: true, 11 srcs: [ 12 "dsa_sig.c", 13 "p256.c", 14 "p256_ec.c", 15 "p256_ecdsa.c", 16 "rsa.c", 17 "sha.c", 18 "sha256.c", 19 ], 20 cflags: [ 21 "-Wall", 22 "-Werror", 23 ], 24 export_include_dirs: ["include"], 25} 26