1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_library { 6 name: "libvndksupport", 7 native_bridge_supported: true, 8 llndk: { 9 symbol_file: "libvndksupport.map.txt", 10 }, 11 srcs: ["linker.cpp"], 12 cflags: [ 13 "-Wall", 14 "-Werror", 15 ], 16 local_include_dirs: ["include/vndksupport"], 17 export_include_dirs: ["include"], 18 shared_libs: [ 19 "libdl_android", 20 "liblog", 21 ], 22 version_script: "libvndksupport.map.txt", 23 stubs: { 24 symbol_file: "libvndksupport.map.txt", 25 versions: ["29"], 26 }, 27} 28