Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

context, all: move Context classes to grpc-api #10313

Merged
merged 5 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
api,context: make changes to bazel build files to account for context…
… code moving from context to api
  • Loading branch information
sanjaypujare committed Jun 27, 2023
commit 4b632a563797d917c985c817287ec32f2df565f9
1 change: 1 addition & 0 deletions api/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ java_library(
name = "api",
srcs = glob([
"src/main/java/**/*.java",
"src/context/java/**/*.java",
]),
javacopts = ["-Xep:DoNotCall:OFF"], # Remove once requiring Bazel 3.4.0+; allows non-final
visibility = ["//visibility:public"],
Expand Down
1 change: 0 additions & 1 deletion context/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
java_library(
name = "context",
srcs = glob([
sanjaypujare marked this conversation as resolved.
Show resolved Hide resolved
"src/main/java/**/*.java",
]),
visibility = ["//visibility:public"],
)