blob: 9035d4c125d9d200947b81c587d4035ca8918999 [file] [log] [blame]
James Melvin16f9d042017-03-16 10:55:32 -06001load("//tools/bzl:plugin.bzl", "gerrit_plugin")
2
3MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenbelowchangeinfoblock.HelloForm"
4
5gerrit_plugin(
6 name = "example-wuiChangeScreenBelowChangeInfoBlock",
7 srcs = glob(["src/main/java/**/*.java"]),
8 gwt_module = MODULE,
9 manifest_entries = [
10 "Gerrit-PluginName: example-wuiChangeScreenBelowChangeInfoBlock",
11 "Gerrit-Module: com.googlesource.gerrit.plugins.examples.wuichangescreenbelowchangeinfoblock.Module",
12 "Implementation-Title: Example Change Screen Extension Below Change Info Block",
13 ],
14 resources = glob(["src/main/**/*"]),
15)