Skip to content

Commit

Permalink
[ggj][build] build: add gradle assembly rules for logging and redis (#…
Browse files Browse the repository at this point in the history
…436)

* fix: support non-name fields with res-refs in resname def parsing

* fix: add workaround for missing default_host and oauth_scopes annotation

* [ggj][infra][3/5]feat: add goldens update bazel rules for Redis API (#396)

* goldens update bazel rules

* clean up

* [ggj][infra][4/5]feat: add goldens update bazel rules for Asset API (#397)

* goldens update bazel rules

* clean up

* goldens update rule for asset API

* update goldens

* [ggj][infra][3/5]feat: add goldens update bazel rules for Redis API (#396)

* goldens update bazel rules

* clean up

* [ggj][infra][4/5]feat: add goldens update bazel rules for Asset API (#397)

* goldens update bazel rules

* clean up

* goldens update rule for asset API

* update goldens

* [ggj][infra][3/5]feat: add goldens update bazel rules for Redis API (#396)

* goldens update bazel rules

* clean up

* [ggj][infra][4/5]feat: add goldens update bazel rules for Asset API (#397)

* goldens update bazel rules

* clean up

* goldens update rule for asset API

* update goldens

* fix: clarify LRO parsing error messages

* feat: support deeply-nested types in AST and proto message parsing

* fix: prevent resname tokens from matching subcomponents

* fix: use TypeParser for proto message parsing

* fix: merge master

* fix: use generic types in field instantiation in ServiceClientTest

* fix: prevent descension into map types in nested message parsing

* fix: merge master

* fix: merge master

* fix: merge master

* fix: merge master

* fix: prevent descension into map types in nested message parsing

* build: add logging, redis gradle assembly rules

* fix: merge master

Co-authored-by: Xiaozhen Liu <[email protected]>
  • Loading branch information
miraleung and xiaozhenliu-gg5 authored Oct 31, 2020
1 parent 6993a34 commit 7a184e1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions test/integration/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,21 @@ java_gapic_library(
],
)

# Logging API
java_gapic_library(
name = "redis_java_gapic",
srcs = ["redis_proto_with_info"],
grpc_service_config = "@com_google_googleapis//google/cloud/redis/v1:redis_grpc_service_config.json",
package = "google.cloud.redis.v1",
service_yaml = "@com_google_googleapis//google/cloud/redis/v1:redis_v1.yaml",
test_deps = [
"@com_google_googleapis//google/cloud/redis/v1:redis_java_grpc",
],
deps = [
"@com_google_googleapis//google/cloud/redis/v1:redis_java_proto",
],
)

# Logging API
java_gapic_library(
name = "logging_java_gapic",
Expand All @@ -101,3 +116,13 @@ java_gapic_library(
"@com_google_googleapis//google/logging/v2:logging_java_proto",
],
)

java_gapic_assembly_gradle_pkg(
name = "google-cloud-logging-v2-java",
deps = [
":logging_java_gapic",
"@com_google_googleapis//google/logging/v2:logging_java_grpc",
"@com_google_googleapis//google/logging/v2:logging_java_proto",
"@com_google_googleapis//google/logging/v2:logging_proto",
],
)

0 comments on commit 7a184e1

Please sign in to comment.