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", |
Nikita Ioffe | 38b9e71 | 2024-02-08 15:55:07 +0000 | [diff] [blame] | 7 | defaults: ["avf_build_flags_cc"], |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 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 | ], |
Seungjae Yoo | 329f286 | 2024-04-08 11:21:53 +0900 | [diff] [blame] | 19 | static_libs: ["libavf_cc_flags"], |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | cc_library_shared { |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 23 | name: "libvirtualmachine_jni", |
Nikita Ioffe | 38b9e71 | 2024-02-08 15:55:07 +0000 | [diff] [blame] | 24 | defaults: ["avf_build_flags_cc"], |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 25 | srcs: [ |
| 26 | "android_system_virtualmachine_VirtualMachine.cpp", |
| 27 | ], |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 28 | apex_available: ["com.android.virt"], |
| 29 | shared_libs: [ |
| 30 | "android.system.virtualizationservice-ndk", |
David Brazdil | 7958839 | 2022-10-20 17:04:46 +0100 | [diff] [blame] | 31 | "libbase", |
Inseob Kim | aa41e0a | 2021-08-31 10:00:42 +0900 | [diff] [blame] | 32 | "libbinder_ndk", |
| 33 | "libbinder_rpc_unstable", |
| 34 | "liblog", |
| 35 | "libnativehelper", |
| 36 | ], |
| 37 | } |