alts: re-order dependencies in ALTS bazel build (#4133)

This commit is contained in:
Jiangtao Li 2018-02-23 15:59:54 -08:00 committed by GitHub
parent 9f677a991a
commit af2ae2a1e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -7,6 +7,8 @@ java_library(
]),
visibility = ["//visibility:public"],
deps = [
":handshaker_java_grpc",
":handshaker_java_proto",
"//core",
"//core:internal",
"//stub",
@ -16,8 +18,6 @@ java_library(
"@com_google_protobuf//:protobuf_java_util",
"@io_netty_netty_buffer//jar",
"@io_netty_netty_common//jar",
":handshaker_java_proto",
":handshaker_java_grpc",
],
)
@ -28,6 +28,9 @@ java_library(
]),
visibility = ["//visibility:public"],
deps = [
":alts_tsi",
":handshaker_java_grpc",
":handshaker_java_proto",
"//core",
"//core:internal",
"//netty",
@ -41,9 +44,6 @@ java_library(
"@io_netty_netty_common//jar",
"@io_netty_netty_transport//jar",
"@org_apache_commons_commons_lang3//jar",
":alts_tsi",
":handshaker_java_proto",
":handshaker_java_grpc",
],
)