aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: 95dc658d3e986c073307a2ea1ab0f6efcda38edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
genrule {
    name: "systrace-sdk-zip",
    visibility: ["//development/build"],
    tools: ["soong_zip"],
    // TODO: Use $(in) or similar, but bash cmdline limits are a problem
    // (Use implement a version of $(in) that works with rspfile?)
    cmd: "$(location soong_zip) -o $(out) -P systrace -C $$(dirname $(location systrace.py)) " +
        "-D $$(dirname $(location systrace.py))/catapult " +
        "-f $(location systrace.py) " +
        "-f $(location NOTICE) " +
        "-f $(location UPSTREAM_REVISION)",
    srcs: [
        "catapult/**/*",
        "systrace.py",
        "NOTICE",
        "UPSTREAM_REVISION",
    ],
    out: ["output.zip"],
}