1// Copyright 2015 The Android Open Source Project
2
3cc_library_shared {
4    name: "bootctrl.copy",
5    relative_install_path: "hw",
6
7    srcs: [
8        "boot_control_copy.cpp",
9        "bootinfo.cpp",
10    ],
11    cflags: [
12        "-Wall",
13        "-Werror",
14        "-Wno-missing-field-initializers",
15        "-Wno-unused-parameter",
16    ],
17    header_libs: ["bootimg_headers"],
18    shared_libs: [
19        "libbase",
20        "libcutils",
21    ],
22    static_libs: [
23        "libfs_mgr",
24    ],
25}
26