summaryrefslogtreecommitdiff
path: root/data/etc/input/Android.bp
blob: b662491272e27b68c79fbe1b43621530d6357b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package {
    default_applicable_licenses: ["frameworks_native_license"],
}

filegroup {
    name: "motion_predictor_model",
    srcs: [
        "motion_predictor_model.tflite",
        "motion_predictor_config.xml",
    ],
}

prebuilt_etc {
    name: "motion_predictor_model_prebuilt",
    filename_from_src: true,
    src: "motion_predictor_model.tflite",
}

prebuilt_etc {
    name: "motion_predictor_model_config",
    filename_from_src: true,
    src: "motion_predictor_config.xml",
}