blob: fdae3e07f70e670ce2abb1b91ef7cd74794ae0cd [file] [log] [blame]
Dan Willemsenc0a0f2d2017-09-09 13:37:03 -07001// Copyright 2007 The Android Open Source Project
2//
3// Copies files into the directory structure described by a manifest
4
Bob Badour03905802021-02-12 21:42:54 -08005package {
6 // See: http://go/android-license-faq
Bob Badourd2c7c082022-01-24 15:21:32 -08007 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour03905802021-02-12 21:42:54 -08008}
9
Dan Willemsenc0a0f2d2017-09-09 13:37:03 -070010cc_binary_host {
11 name: "atree",
12 srcs: [
13 "atree.cpp",
14 "files.cpp",
15 "fs.cpp",
16 ],
Chih-Hung Hsieh2a5bc9d2017-10-03 13:45:03 -070017 cflags: ["-Wall", "-Werror"],
Dan Willemsenc0a0f2d2017-09-09 13:37:03 -070018 static_libs: ["libhost"],
19}