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