Skip to content

Commit

Permalink
Set intellij-ext targets to manual
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 556933487
  • Loading branch information
mai93 authored and copybara-github committed Aug 14, 2023
1 parent 5843e0b commit 9bc506d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ext/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
java_binary(
name = "client",
main_class = "com.google.idea.blaze.ext.IntelliJExtClientCli",
tags = ["manual"],
runtime_deps = [
":intellijext",
],
Expand All @@ -9,6 +10,7 @@ java_binary(
java_library(
name = "intellijext",
srcs = glob(["src/**/*.java"]),
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [
"//ext/proto:intellijext_java_grpc",
Expand All @@ -27,6 +29,7 @@ java_binary(
name = "IntelliJExtTestServer",
srcs = ["tests/com/google/idea/blaze/ext/IntelliJExtTestServer.java"],
main_class = "com.google.idea.blaze.ext.IntelliJExtTestServer",
tags = ["manual"],
deps = [
"//ext/proto:intellijext_java_grpc",
"//ext/proto:intellijext_java_proto",
Expand All @@ -46,6 +49,7 @@ java_test(
data = [
"//ext:IntelliJExtTestServer_deploy.jar",
],
tags = ["manual"],
test_class = "com.google.idea.blaze.ext.IntelliJExtServiceTest",
deps = [
":intellijext",
Expand Down
5 changes: 5 additions & 0 deletions ext/proto/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,36 @@ proto_library(
name = "intellijext_proto",
srcs = ["intellijext.proto"],
has_services = 1,
tags = ["manual"],
use_java_stubby_library = True,
)

java_proto_library(
name = "intellijext_java_proto",
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [":intellijext_proto"],
)

java_grpc_library(
name = "intellijext_java_grpc",
srcs = [":intellijext_proto"],
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [":intellijext_java_proto"],
)

go_proto_library(
name = "intellijext_go_proto",
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [":intellijext_proto"],
)

go_grpc_library(
name = "intellijext_go_grpc",
srcs = [":intellijext_proto"],
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [":intellijext_go_proto"],
)

0 comments on commit 9bc506d

Please sign in to comment.