Bob Badour | f555b81 | 2021-09-13 17:48:57 -0700 | [diff] [blame] | 1 | package { |
| 2 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 3 | } |
| 4 | |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 5 | cc_library_shared { |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 6 | name: "libvirtualizationservice_jni", |
| 7 | srcs: [ |
| 8 | "android_system_virtualmachine_VirtualizationService.cpp", |
| 9 | ], |
| 10 | apex_available: ["com.android.virt"], |
| 11 | shared_libs: [ |
| 12 | "libbase", |
| 13 | "libbinder_ndk", |
| 14 | "libbinder_rpc_unstable", |
| 15 | "liblog", |
| 16 | "libnativehelper", |
| 17 | ], |
| 18 | } |
| 19 | |
| 20 | cc_library_shared { |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 21 | name: "libvirtualmachine_jni", |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 22 | srcs: [ |
| 23 | "android_system_virtualmachine_VirtualMachine.cpp", |
| 24 | ], |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 25 | apex_available: ["com.android.virt"], |
| 26 | shared_libs: [ |
| 27 | "android.system.virtualizationservice-ndk", |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 28 | "libbase", |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 29 | "libbinder_ndk", |
| 30 | "libbinder_rpc_unstable", |
| 31 | "liblog", |
| 32 | "libnativehelper", |
| 33 | ], |
| 34 | } |