Jiyong Park | 8902f75 | 2017-05-11 02:15:24 +0900 | [diff] [blame] | 1 | subdirs = ["tests"] |
| 2 | |
Jiyong Park | 0b3c24b | 2017-05-26 17:57:18 +0900 | [diff] [blame] | 3 | cc_library { |
Jiyong Park | 8902f75 | 2017-05-11 02:15:24 +0900 | [diff] [blame] | 4 | name: "libvndksupport", |
| 5 | srcs: ["linker.c"], |
Elliott Hughes | dc699a2 | 2018-02-16 17:58:14 -0800 | [diff] [blame] | 6 | cflags: [ |
| 7 | "-Wall", |
| 8 | "-Werror", |
| 9 | ], |
Jiyong Park | 8902f75 | 2017-05-11 02:15:24 +0900 | [diff] [blame] | 10 | local_include_dirs: ["include/vndksupport"], |
| 11 | export_include_dirs: ["include"], |
dimitry | 0c11941 | 2019-03-19 12:29:49 +0100 | [diff] [blame^] | 12 | shared_libs: [ |
| 13 | "libdl_android", |
| 14 | "liblog", |
| 15 | ], |
Dongwon Kang | 9dff515 | 2019-02-08 14:00:35 -0800 | [diff] [blame] | 16 | version_script: "libvndksupport.map.txt", |
| 17 | stubs: { |
| 18 | symbol_file: "libvndksupport.map.txt", |
| 19 | versions: ["29"], |
| 20 | }, |
Jiyong Park | 8902f75 | 2017-05-11 02:15:24 +0900 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | llndk_library { |
| 24 | name: "libvndksupport", |
| 25 | symbol_file: "libvndksupport.map.txt", |
| 26 | export_include_dirs: ["include"], |
| 27 | } |