| package android.databinding.layouts; | |
| import android.databinding.BindingBuildInfo; | |
| /** | |
| * Template for the file that feeds data binding's annotation processor. The | |
| * processor reads the values set here to generate .java files that link XML | |
| * data binding declarations (from layoutInfoDir) to app code. | |
| */ | |
| @BindingBuildInfo( | |
| buildId="not_used_here" // Adds incrementality, which Bazel already supports | |
| ) | |
| public class DataBindingInfo { | |
| /* This only exists for annotation processing. */ | |
| } |