d2c7c08e7c
Use Android-Apache-2.0 for all Apache 2.0 Remove legacy_restricted (no longer appears in code). Remove Android.bp which did not build anything but was a placeholder for the missing license texts. Test: m nothing Change-Id: Ia491a59c735ca20afda9b4bbac9d8b33dbf8874e
19 lines
416 B
Text
19 lines
416 B
Text
// Copyright 2007 The Android Open Source Project
|
|
//
|
|
// Copies files into the directory structure described by a manifest
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_binary_host {
|
|
name: "atree",
|
|
srcs: [
|
|
"atree.cpp",
|
|
"files.cpp",
|
|
"fs.cpp",
|
|
],
|
|
cflags: ["-Wall", "-Werror"],
|
|
static_libs: ["libhost"],
|
|
}
|