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