blob: 47b23b2388f20a15e119f2fafe858cdcc9535625 [file] [log] [blame]
Dan Willemsen56eb2f9f2016-06-06 14:41:32 -07001// Copyright 2005 The Android Open Source Project
2//
3// Custom version of cp.
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 Willemsen56eb2f9f2016-06-06 14:41:32 -070010cc_binary_host {
11
12 srcs: ["acp.c"],
Chih-Hung Hsieh2a5bc9d2017-10-03 13:45:03 -070013 cflags: ["-Wall", "-Werror"],
Dan Willemsen56eb2f9f2016-06-06 14:41:32 -070014
15 static_libs: ["libhost"],
16 name: "acp",
17 stl: "none",
18
19}