• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2015 The Android Open Source Project
2
3package {
4    default_applicable_licenses: ["system_extras_boot_control_copy_license"],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10    name: "system_extras_boot_control_copy_license",
11    visibility: [":__subpackages__"],
12    license_kinds: [
13        "SPDX-license-identifier-Apache-2.0",
14    ],
15    license_text: [
16        "NOTICE",
17    ],
18}
19
20cc_library_shared {
21    name: "bootctrl.copy",
22    relative_install_path: "hw",
23
24    srcs: [
25        "boot_control_copy.cpp",
26        "bootinfo.cpp",
27    ],
28    cflags: [
29        "-Wall",
30        "-Werror",
31        "-Wno-missing-field-initializers",
32        "-Wno-unused-parameter",
33    ],
34    header_libs: ["bootimg_headers"],
35    shared_libs: [
36        "libbase",
37        "libcutils",
38    ],
39    static_libs: [
40        "libfs_mgr",
41    ],
42}
43