1// Copyright (C) 2015 The Android Open Source Project 2 3cc_library { 4 name: "liblz4", 5 vendor_available: true, 6 vndk: { 7 enabled: true, 8 }, 9 host_supported: true, 10 target: { 11 windows: { 12 enabled: true, 13 shared: { 14 enabled: false, 15 }, 16 }, 17 }, 18 srcs: [ 19 "lz4.c", 20 "lz4hc.c", 21 "lz4frame.c", 22 "xxhash.c", 23 ], 24 cflags: ["-Wall", "-Werror"], 25 export_include_dirs: ["."], 26} 27