• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1subdirs = ["tests"]
2
3cc_library {
4    name: "libvndksupport",
5    srcs: ["linker.c"],
6    cflags: [
7        "-Wall",
8        "-Werror",
9    ],
10    local_include_dirs: ["include/vndksupport"],
11    export_include_dirs: ["include"],
12    shared_libs: ["liblog"],
13}
14
15llndk_library {
16    name: "libvndksupport",
17    symbol_file: "libvndksupport.map.txt",
18    export_include_dirs: ["include"],
19}
20