-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBUILD
More file actions
35 lines (29 loc) · 802 Bytes
/
BUILD
File metadata and controls
35 lines (29 loc) · 802 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
27
28
29
30
31
32
33
34
35
# Description:
# Jsinterop Annotations for J2CL/GWT
#
load("@bazel_skylib//rules:build_test.bzl", "build_test")
load("@rules_license//rules:license.bzl", "license")
package(
default_applicable_licenses = [":license"],
default_visibility = [
"//third_party/java/jsinterop_annotations:__subpackages__",
"@j2cl//:__subpackages__",
],
licenses = ["notice"],
)
license(
name = "license",
package_name = "jsinterop_annotations",
)
exports_files(["LICENSE"])
build_test(
name = "rule_test",
targets = [
":jsinterop-annotations",
],
)
alias(
name = "jsinterop-annotations",
actual = "//java/jsinterop/annotations:annotations",
tags = ["avoid_dep"], # Use //third_party/java/jsinterop_annotations:jsinterop-annotations instead.
)