forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract authandtls, buildeventservice, buildeventstream into package-…
…level BUILD files. Replace all ":relative" labels with "//absolute:path" labels for easier search & replace. PiperOrigin-RevId: 167500985
- Loading branch information
1 parent
263cb0d
commit a94ef48
Showing
14 changed files
with
354 additions
and
348 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/com/google/devtools/build/lib/authandtls/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package(default_visibility = ["//src:__subpackages__"]) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
) | ||
|
||
java_library( | ||
name = "authandtls", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//src/main/java/com/google/devtools/common/options", | ||
"//third_party:apache_httpclient", | ||
"//third_party:apache_httpcore", | ||
"//third_party:auth", | ||
"//third_party:guava", | ||
"//third_party:jsr305", | ||
"//third_party:netty", | ||
"//third_party/grpc:grpc-jar", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/main/java/com/google/devtools/build/lib/buildeventservice/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package(default_visibility = ["//src:__subpackages__"]) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
) | ||
|
||
java_library( | ||
name = "buildeventservice", | ||
srcs = glob(["*.java"]), | ||
visibility = [ | ||
"//visibility:public", | ||
], | ||
deps = [ | ||
"//src/main/java/com/google/devtools/build/lib:events", | ||
"//src/main/java/com/google/devtools/build/lib:io", | ||
"//src/main/java/com/google/devtools/build/lib:runtime", | ||
"//src/main/java/com/google/devtools/build/lib:util", | ||
"//src/main/java/com/google/devtools/build/lib:vfs", | ||
"//src/main/java/com/google/devtools/build/lib/authandtls", | ||
"//src/main/java/com/google/devtools/build/lib/buildeventservice/client", | ||
"//src/main/java/com/google/devtools/build/lib/buildeventstream", | ||
"//src/main/java/com/google/devtools/build/lib/buildeventstream/proto:build_event_stream_java_proto", | ||
"//src/main/java/com/google/devtools/build/lib/buildeventstream/transports", | ||
"//src/main/java/com/google/devtools/common/options", | ||
"//third_party:guava", | ||
"//third_party:jsr305", | ||
"//third_party/grpc:grpc-jar", | ||
"@com_google_protobuf//:protobuf_java", | ||
"@com_google_protobuf//:protobuf_java_util", | ||
"@com_google_protobuf//:well_known_types_any_proto", | ||
"@googleapis//:google_devtools_build_v1_build_events_java_proto", | ||
"@googleapis//:google_devtools_build_v1_build_status_java_proto", | ||
"@googleapis//:google_devtools_build_v1_publish_build_event_java_proto", | ||
], | ||
) |
7 changes: 2 additions & 5 deletions
7
src/main/java/com/google/devtools/build/lib/buildeventservice/client/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/main/java/com/google/devtools/build/lib/buildeventstream/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package(default_visibility = ["//src:__subpackages__"]) | ||
|
||
# External build-event reporting infrastructure | ||
java_library( | ||
name = "buildeventstream", | ||
srcs = glob(["*.java"]), | ||
deps = [ | ||
"//src/main/java/com/google/devtools/build/lib:events", | ||
"//src/main/java/com/google/devtools/build/lib:vfs", | ||
"//src/main/java/com/google/devtools/build/lib/buildeventstream/proto:build_event_stream_java_proto", | ||
"//src/main/java/com/google/devtools/build/lib/causes", | ||
"//src/main/java/com/google/devtools/build/lib/cmdline", | ||
"//third_party:guava", | ||
"//third_party:jsr305", | ||
"//third_party/protobuf:protobuf_java", | ||
], | ||
) | ||
|
||
filegroup( | ||
name = "srcs", | ||
srcs = glob(["**"]), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters