1 cc_library_headers { 2 name: "libnativebridge-dummy-headers", 3 4 host_supported: true, 5 export_include_dirs: ["include"], 6 } 7 8 cc_library { 9 name: "libnativebridge", 10 11 host_supported: true, 12 srcs: ["native_bridge.cc"], 13 shared_libs: [ 14 "liblog", 15 "libbase", 16 ], 17 18 export_include_dirs: ["include"], 19 20 cflags: [ 21 "-Werror", 22 "-Wall", 23 ], 24 cppflags: [ 25 "-fvisibility=protected", 26 ], 27 } 28 29 subdirs = ["tests"] 30