aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/android/databinding_annotation_template.txt
blob: 295397e4bbc09dd11185459681e77fa6dba41731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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. */
}