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