summaryrefslogtreecommitdiff
path: root/tests/icachetest/Android.bp
blob: e8c7285576c5d6454b4d35289802314fd73d43e8 (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 2006 The Android Open Source Project

cc_binary {
    name: "icache",

    srcs: [
        "icache_main.cpp",
        "Profiler.cpp",
        "icache.S",
    ],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    enabled: false,
    arch: {
        arm: {
            enabled: true,
        },
    },
}