Skip to content

Commit bd88f1e

Browse files
committed
From Bazel 0.4.4 release.
0 parents  commit bd88f1e

File tree

5,880 files changed

+1597019
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,880 files changed

+1597019
-0
lines changed

AUTHORS

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# This the official list of Bazel authors for copyright purposes.
2+
# This file is distinct from the CONTRIBUTORS files.
3+
# See the latter for an explanation.
4+
5+
# Names should be added to this file as:
6+
# Name or Organization <email address>
7+
# The email address is not required for organizations.
8+
9+
Google Inc.
10+
Anthony Bellissimo <[email protected]>
11+
Volker Braun <[email protected]>
12+
Thomas Broyer <[email protected]>
13+
Steven Dee <[email protected]>
14+
Alan Donovan <[email protected]>
15+
Thiago Farina <[email protected]>
16+
Peter Foley <[email protected]>
17+
Roland Huß <[email protected]>
18+
Erik Kuefler <[email protected]>
19+
liuhuahang <[email protected]>
20+
David Mankin <[email protected]>
21+
Kamal Marhubi <[email protected]>
22+
Carl Mastrangelo <[email protected]>
23+
Kyle Moffett <[email protected]>
24+
NicholasGorski <[email protected]>
25+
Allen Porter <[email protected]>
26+
Doug Rabson <[email protected]>
27+
David Santiago <[email protected]>
28+
John Shimek <[email protected]>
29+
Brian Silverman <[email protected]>
30+
John Sullivan <[email protected]>
31+
32+
Zhong Wang <[email protected]>
33+
Kevin Watts <[email protected]>
34+
35+
Andrew Z Allen <[email protected]>
36+
Ming Zhao <[email protected]>

BUILD

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
package(default_visibility = ["//scripts/release:__pkg__"])
2+
3+
filegroup(
4+
name = "git",
5+
srcs = glob([".git/**"]),
6+
)
7+
8+
filegroup(
9+
name = "dummy",
10+
visibility = ["//visibility:public"],
11+
)
12+
13+
filegroup(
14+
name = "workspace-file",
15+
srcs = [":WORKSPACE"],
16+
visibility = [
17+
"//src/test/shell/bazel:__subpackages__",
18+
"//tools/cpp/test:__pkg__",
19+
],
20+
)
21+
22+
filegroup(
23+
name = "changelog-file",
24+
srcs = [":CHANGELOG.md"],
25+
visibility = [
26+
"//scripts/packages:__pkg__",
27+
],
28+
)
29+
30+
filegroup(
31+
name = "srcs",
32+
srcs = glob(
33+
["*"],
34+
exclude = [
35+
"bazel-*", # convenience symlinks
36+
"out", # IntelliJ with setup-intellij.sh
37+
"output", # output of compile.sh
38+
"WORKSPACE.user.bzl", # generated workspace file
39+
".*", # mainly .git* files
40+
],
41+
) + [
42+
"//examples:srcs",
43+
"//scripts:srcs",
44+
"//site:srcs",
45+
"//src:srcs",
46+
"//tools:srcs",
47+
"//third_party:srcs",
48+
],
49+
visibility = ["//visibility:private"],
50+
)
51+
52+
load("//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
53+
54+
pkg_tar(
55+
name = "bazel-srcs",
56+
files = [":srcs"],
57+
strip_prefix = ".",
58+
# Public but bazel-only visibility.
59+
visibility = ["//:__subpackages__"],
60+
)
61+
62+
genrule(
63+
name = "bazel-distfile",
64+
srcs = [
65+
":bazel-srcs",
66+
"//src:derived_java_srcs",
67+
],
68+
outs = ["bazel-distfile.zip"],
69+
cmd = "$(location :combine_distfiles.sh) $@ $(SRCS)",
70+
tools = ["combine_distfiles.sh"],
71+
# Public but bazel-only visibility.
72+
visibility = ["//:__subpackages__"],
73+
)
74+
75+
genrule(
76+
name = "bazel-distfile-tar",
77+
srcs = [
78+
":bazel-srcs",
79+
"//src:derived_java_srcs",
80+
],
81+
outs = ["bazel-distfile.tar"],
82+
cmd = "env USE_TAR=YES $(location :combine_distfiles.sh) $@ $(SRCS)",
83+
tools = ["combine_distfiles.sh"],
84+
# Public but bazel-only visibility.
85+
visibility = ["//:__subpackages__"],
86+
)

0 commit comments

Comments
 (0)