diff options
Diffstat (limited to '1.1/libboot_control_qti/Android.bp')
-rw-r--r-- | 1.1/libboot_control_qti/Android.bp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1.1/libboot_control_qti/Android.bp b/1.1/libboot_control_qti/Android.bp new file mode 100644 index 0000000..29729a7 --- /dev/null +++ b/1.1/libboot_control_qti/Android.bp @@ -0,0 +1,27 @@ +cc_library { + name: "libboot_control_qti", + vendor: true, + recovery_available: true, + shared_libs: [ + "android.hardware.boot@1.1", + "librecovery_updater", + "libbase", + "libcutils", + "liblog", + "libz", + ], + static_libs: [ + "libboot_control", + "libbootloader_message_vendor", + "libfstab", + ], + owner: "qti", + cflags: [ + "-Wall", + "-Werror", + ], + srcs: [ + "libboot_control_qti.cpp", + ], + export_include_dirs: ["."], +} |