1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10genrule {
11    name: "tuner_frontend_input_es",
12    srcs: ["tuner_frontend_input.es"],
13    out: [
14        "test.es",
15    ],
16    cmd: "cp -f $(in) $(genDir)/test.es",
17}
18
19genrule {
20    name: "tuner_frontend_input_ts",
21    srcs: ["tuner_frontend_input.ts"],
22    out: [
23        "segment000000.ts",
24    ],
25    cmd: "cp -f $(in) $(genDir)/segment000000.ts",
26}
27