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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Packaging
md5_cmd = "set -e -o pipefail && cat $(SRCS) | %s | awk '{ print $$1; }' > $@"
# TODO(bazel-team): find a better way to handle dylib extensions.
filegroup(
name = "libunix",
srcs = select({
":darwin": ["//src/main/native:libunix.dylib"],
"//conditions:default": ["//src/main/native:libunix.so"],
}),
visibility = [
"//src/main/java/com/google/devtools/build/workspace:__pkg__",
"//src/test/java:__pkg__",
],
)
genrule(
name = "install_base_key-file",
srcs = [
"//src/main/java:bazel-main_deploy.jar",
"//src/main/cpp:client",
":libunix",
"//src/main/tools:build-runfiles",
"//src/main/tools:process-wrapper",
"//src/main/tools:namespace-sandbox",
"//src/main/tools:build_interface_so",
],
outs = ["install_base_key"],
cmd = select({
":darwin": md5_cmd % "/sbin/md5",
"//conditions:default": md5_cmd % "md5sum",
}),
)
# Try to grab the java version from the java_toolchain.
# Unfortunately, we don't the javac options so we cannot get it from
# the command-line options.
genquery(
name = "java_toolchain_content",
expression = "kind(java_toolchain, deps(//tools/defaults:java_toolchain))",
opts = ["--output=xml"],
scope = ["//tools/defaults:java_toolchain"],
)
genrule(
name = "java-version",
srcs = [":java_toolchain_content"],
outs = ["java.version"],
cmd = """
VERSION_LINE=$$(cat $< | grep target_version);
JAVA_VERSION=$$(echo $${VERSION_LINE} | sed -E 's/.*value="([^"])".*/\\1/');
if [ -z "$${JAVA_VERSION}" ]; then
echo "1.7" >$@ # Java 7 is the default
elif [[ "$${JAVA_VERSION}" =~ ^[0-9]+$$ ]]; then
echo "1.$${JAVA_VERSION}" >$@ # Add 1. before 7 or 8
else
echo "$${JAVA_VERSION}" >$@
fi
""",
)
genrule(
name = "package-zip",
srcs = [
"//src/main/java:bazel-main_deploy.jar",
# The jar must the first in the zip file because the client launcher
# looks for the first entry in the zip file for the java server.
"//src/main/cpp:client",
":libunix",
"//src/main/tools:build-runfiles",
"//src/main/tools:process-wrapper",
"//src/main/tools:jdk-support",
"//src/main/tools:namespace-sandbox",
"//src/main/tools:build_interface_so",
"install_base_key",
":java-version",
],
outs = ["package.zip"],
# Terrible hack to remove timestamps in the zip file
cmd = "mkdir -p $(@D)/package-zip && " +
"cp $(SRCS) $(@D)/package-zip && " +
"touch -t 198001010000.00 $(@D)/package-zip/* && " +
"zip -qj $@ $(@D)/package-zip/* && " +
"rm -fr $(@D)/package-zip",
)
genrule(
name = "bazel-bin",
srcs = [
"//src/main/cpp:client",
"package-zip",
],
outs = ["bazel"],
cmd = "cat $(location //src/main/cpp:client) $(location :package-zip) > $@ && zip -qA $@",
executable = 1,
output_to_bindir = 1,
visibility = [
"//scripts:__pkg__", # For bash completion generation
"//src/test:__subpackages__", # For integration tests
],
)
filegroup(
name = "tools",
srcs = [
"//src/java_tools/buildjar:JavaBuilder_deploy.jar",
"//src/java_tools/buildjar/java/com/google/devtools/build/buildjar/genclass:GenClass_deploy.jar",
"//src/java_tools/singlejar:SingleJar_deploy.jar",
"//third_party/ijar",
],
)
config_setting(
name = "darwin",
values = {"cpu": "darwin"},
visibility = ["//visibility:public"],
)
|