summaryrefslogtreecommitdiff
path: root/tools/acp/Android.bp
blob: 78738b06ad745d1a3776e577456b749a52a394ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2005 The Android Open Source Project
//
// Custom version of cp.

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "build_make_license"
    // to get the below license kinds:
    //   legacy_restricted
    default_applicable_licenses: ["build_make_license"],
}

cc_binary_host {

    srcs: ["acp.c"],
    cflags: ["-Wall", "-Werror"],

    static_libs: ["libhost"],
    name: "acp",
    stl: "none",

}