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