xref: /aosp_15_r20/build/make/tools/atree/Android.bp (revision 9e94795a3d4ef5c1d47486f9a02bb378756cea8a)
1// Copyright 2007 The Android Open Source Project
2//
3// Copies files into the directory structure described by a manifest
4
5package {
6    // See: http://go/android-license-faq
7    default_applicable_licenses: ["Android-Apache-2.0"],
8}
9
10cc_binary_host {
11    name: "atree",
12    srcs: [
13        "atree.cpp",
14        "files.cpp",
15        "fs.cpp",
16    ],
17    cflags: ["-Wall", "-Werror"],
18    static_libs: ["libhost"],
19}
20