1// Copyright 2015 The Android Open Source Project 2 3package { 4 default_applicable_licenses: ["system_extras_bootctl_license"], 5} 6 7// Added automatically by a large-scale-change 8// See: http://go/android-license-faq 9license { 10 name: "system_extras_bootctl_license", 11 visibility: [":__subpackages__"], 12 license_kinds: [ 13 "SPDX-license-identifier-Apache-2.0", 14 ], 15 license_text: [ 16 "NOTICE", 17 ], 18} 19 20cc_binary { 21 name: "bootctl", 22 srcs: ["bootctl.cpp"], 23 24 cflags: [ 25 "-Wall", 26 "-Werror", 27 ], 28 29 shared_libs: [ 30 "android.hardware.boot@1.0", 31 "android.hardware.boot@1.1", 32 "android.hardware.boot@1.2", 33 "libhidlbase", 34 "libutils", 35 ], 36} 37