xref: /aosp_15_r20/external/bazelbuild-rules_android/rules/data_binding_annotation_template.txt (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1package android.databinding.layouts;
2
3import android.databinding.BindingBuildInfo;
4
5/**
6 * Template for the file that feeds data binding's annotation processor. The
7 * processor reads the values set here to generate .java files that link XML
8 * data binding declarations (from layoutInfoDir) to app code.
9 */
10@BindingBuildInfo(
11    buildId="not_used_here" // Adds incrementality, which Bazel already supports
12)
13public class DataBindingInfo {
14  /* This only exists for annotation processing. */
15}
16