Dan Willemsen | c0a0f2d | 2017-09-09 13:37:03 -0700 | [diff] [blame] | 1 | // Copyright 2007 The Android Open Source Project |
| 2 | // |
| 3 | // Copies files into the directory structure described by a manifest |
| 4 | |
Bob Badour | 0390580 | 2021-02-12 21:42:54 -0800 | [diff] [blame] | 5 | package { |
| 6 | // See: http://go/android-license-faq |
| 7 | // A large-scale-change added 'default_applicable_licenses' to import |
| 8 | // all of the 'license_kinds' from "build_make_license" |
| 9 | // to get the below license kinds: |
| 10 | // legacy_restricted |
| 11 | default_applicable_licenses: ["build_make_license"], |
| 12 | } |
| 13 | |
Dan Willemsen | c0a0f2d | 2017-09-09 13:37:03 -0700 | [diff] [blame] | 14 | cc_binary_host { |
| 15 | name: "atree", |
| 16 | srcs: [ |
| 17 | "atree.cpp", |
| 18 | "files.cpp", |
| 19 | "fs.cpp", |
| 20 | ], |
Chih-Hung Hsieh | 2a5bc9d | 2017-10-03 13:45:03 -0700 | [diff] [blame] | 21 | cflags: ["-Wall", "-Werror"], |
Dan Willemsen | c0a0f2d | 2017-09-09 13:37:03 -0700 | [diff] [blame] | 22 | static_libs: ["libhost"], |
| 23 | } |