• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2005 The Android Open Source Project
2//
3// Custom version of cp.
4
5package {
6    // See: http://go/android-license-faq
7    default_applicable_licenses: ["Android-Apache-2.0"],
8}
9
10cc_binary_host {
11
12    srcs: ["acp.c"],
13    cflags: ["-Wall", "-Werror"],
14
15    static_libs: ["libhost"],
16    name: "acp",
17    stl: "none",
18
19}
20