From 07027f95bf0a5b2451984c01a87ea86ee715c15d Mon Sep 17 00:00:00 2001 From: Google APIs Date: Thu, 3 Dec 2020 11:36:52 -0800 Subject: [PATCH] chore: migrate example/library to the Java microgenerator Committer: @miraleung PiperOrigin-RevId: 345498172 --- google/example/library/v1/BUILD.bazel | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/google/example/library/v1/BUILD.bazel b/google/example/library/v1/BUILD.bazel index 094650d6..852860f6 100644 --- a/google/example/library/v1/BUILD.bazel +++ b/google/example/library/v1/BUILD.bazel @@ -33,12 +33,13 @@ proto_library_with_info( ############################################################################## # Java +# DO NOT OVERRIDE this Java microgenerator section with autogenerated rules. ############################################################################## load( "@com_google_googleapis_imports//:imports.bzl", - "java_gapic_assembly_gradle_pkg", - "java_gapic_library", - "java_gapic_test", + java_gapic_assembly_gradle_pkg = "java_gapic_assembly_gradle_pkg2", + java_gapic_library = "java_gapic_library2", + java_gapic_test = "java_gapic_test2", "java_grpc_library", "java_proto_library", ) @@ -56,10 +57,9 @@ java_grpc_library( java_gapic_library( name = "library_java_gapic", - src = ":library_proto_with_info", + srcs = [":library_proto_with_info"], gapic_yaml = "library_example_gapic.yaml", package = "google.example.library.v1", - service_yaml = "//google/example/library:library_example_v1.yaml", test_deps = [ ":library_java_grpc", ],