-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
26 lines (24 loc) · 815 Bytes
/
BUILD
File metadata and controls
26 lines (24 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
load(
"@com_googlesource_gerrit_bazlets//:gerrit_plugin.bzl",
"gerrit_plugin",
"gerrit_plugin_tests",
)
gerrit_plugin(
name = "avatars-external",
srcs = glob(["src/main/java/**/*.java"]),
manifest_entries = [
"Gerrit-PluginName: avatars-external",
"Implementation-Title: External Avatar plugin",
"Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/avatars-external",
"Gerrit-AvatarProvider: com.googlesource.gerrit.plugins.avatars.external.ExternalUrlAvatarProvider",
],
resources = glob(["src/main/resources/**/*"]),
)
gerrit_plugin_tests(
name = "avatars-external_tests",
srcs = glob(["src/test/java/**/*.java"]),
tags = ["avatars-external"],
deps = [
":avatars-external__plugin",
],
)