31 lines
875 B
Plaintext
31 lines
875 B
Plaintext
//
|
|
// SPDX-FileCopyrightText: 2018 The Android Open Source Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "//device/google/gs201:device_google_gs201_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: [
|
|
"//device/google/gs201:device_google_gs201_license",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "wait_for_strongbox",
|
|
init_rc: ["wait_for_strongbox.rc"],
|
|
relative_install_path: "hw",
|
|
srcs: [ "wait_for_strongbox.cpp" ],
|
|
cflags: [ "-Werror", "-Wall" ],
|
|
shared_libs: [
|
|
"android.hardware.keymaster@4.0",
|
|
"libbase",
|
|
"libkeymaster4_1support",
|
|
"libutils",
|
|
],
|
|
proprietary: true,
|
|
}
|