forked from google/jsinterop-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
30 lines (28 loc) · 1.25 KB
/
BUILD
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
# Description:
# Build rules in this directory are used by our tooling and build rules
package(
default_visibility = ["//visibility:public"],
# Apache2
licenses = ["notice"],
)
##########################################################
# #
# __ __ _____ _ _ _____ _ _ _____ #
# \ \ / /\ | __ \| \ | |_ _| \ | |/ ____| #
# \ \ /\ / / \ | |__) | \| | | | | \| | | __ #
# \ \/ \/ / /\ \ | _ /| . ` | | | | . ` | | |_ | #
# \ /\ / ____ \| | \ \| |\ |_| |_| |\ | |__| | #
# \/ \/_/ \_\_| \_\_| \_|_____|_| \_|\_____| #
# #
# #
##########################################################
# Never depend on any of the targets in this BUILD file #
# manually. They are used within tools/build rules and #
# and should actually be private, but Bazel does not #
# support this yet, b/34359566. #
##########################################################
# An implicit dependency of all "jsinterop_generator" skylark rules.
sh_binary(
name = "format_srcjar",
srcs = ["format_srcjar.sh"],
)