1// Copyright 2009 The Android Open Source Project 2 3package { 4 default_applicable_licenses: ["frameworks_native_cmds_rawbu_license"], 5} 6 7// Added automatically by a large-scale-change 8// See: http://go/android-license-faq 9license { 10 name: "frameworks_native_cmds_rawbu_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: "rawbu", 22 23 srcs: ["backup.cpp"], 24 25 cflags: [ 26 "-Wall", 27 "-Werror", 28 ], 29 30 shared_libs: ["libcutils"], 31} 32