blob: 78738b06ad745d1a3776e577456b749a52a394ef [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
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 Willemsen56eb2f9f2016-06-06 14:41:32 -070014cc_binary_host {
15
16 srcs: ["acp.c"],
Chih-Hung Hsieh2a5bc9d2017-10-03 13:45:03 -070017 cflags: ["-Wall", "-Werror"],
Dan Willemsen56eb2f9f2016-06-06 14:41:32 -070018
19 static_libs: ["libhost"],
20 name: "acp",
21 stl: "none",
22
23}