| James Melvin | 16f9d04 | 2017-03-16 10:55:32 -0600 | [diff] [blame^] | 1 | load("//tools/bzl:plugin.bzl", "gerrit_plugin") |
| 2 | |
| 3 | MODULE = "com.googlesource.gerrit.plugins.examples.wuichangescreenbelowchangeinfoblock.HelloForm" |
| 4 | |
| 5 | gerrit_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 | ) |