Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 7e50ad5

Browse files
committed
chore: Irregularly scheduled update for the protos.
Update to the version of googleapis/googleapis as-of 2019-08-23.
1 parent 7420d53 commit 7e50ad5

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

CMakeLists.txt

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
3939
# downloaded from GitHub.
4040
set(
4141
GOOGLE_CLOUD_CPP_GOOGLEAPIS_URL
42-
"https://github.com/googleapis/googleapis/archive/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz"
42+
"https://github.com/googleapis/googleapis/archive/9c9f778aedde02f9826d2ae5d0f9c96409ba0f25.tar.gz"
4343
)
4444
set(GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
45-
"6b8a9b2bcb4476e9a5a9872869996f0d639c8d5df76dd8a893e79201f211b1cf")
45+
"13af135d8cc9b81b47d6fbfc258fe790a151956d06e01fd16671aa49fe536ab1")
4646

4747
set(GOOGLEAPIS_CPP_SOURCE
4848
"${CMAKE_BINARY_DIR}/external/googleapis/src/googleapis_download")
@@ -68,6 +68,7 @@ ExternalProject_Add(
6868
"${GOOGLEAPIS_CPP_SOURCE}/google/type/expr.proto"
6969
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/error_details.proto"
7070
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/status.proto"
71+
"${GOOGLEAPIS_CPP_SOURCE}/google/iam/v1/options.proto"
7172
"${GOOGLEAPIS_CPP_SOURCE}/google/iam/v1/policy.proto"
7273
"${GOOGLEAPIS_CPP_SOURCE}/google/iam/v1/iam_policy.proto"
7374
"${GOOGLEAPIS_CPP_SOURCE}/google/longrunning/operations.proto"
@@ -202,6 +203,17 @@ target_link_libraries(googleapis_cpp_rpc_status_protos
202203
PUBLIC googleapis-c++::rpc_error_details_protos
203204
PRIVATE googleapis_cpp_common_flags)
204205

206+
google_cloud_cpp_grpcpp_library(
207+
googleapis_cpp_iam_v1_options_protos
208+
"${GOOGLEAPIS_CPP_SOURCE}/google/iam/v1/options.proto"
209+
PROTO_PATH_DIRECTORIES
210+
"${GOOGLEAPIS_CPP_SOURCE}"
211+
"${PROTO_INCLUDE_DIR}")
212+
googleapis_cpp_set_version_and_alias(iam_v1_options_protos)
213+
target_link_libraries(googleapis_cpp_iam_v1_options_protos
214+
PUBLIC googleapis-c++::api_annotations_protos
215+
PRIVATE googleapis_cpp_common_flags)
216+
205217
google_cloud_cpp_grpcpp_library(
206218
googleapis_cpp_iam_v1_policy_protos
207219
"${GOOGLEAPIS_CPP_SOURCE}/google/iam/v1/policy.proto"
@@ -321,6 +333,7 @@ set(googleapis_cpp_installed_libraries_list
321333
googleapis_cpp_api_resource_protos
322334
googleapis_cpp_devtools_cloudtrace_v2_trace_protos
323335
googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
336+
googleapis_cpp_iam_v1_options_protos
324337
googleapis_cpp_iam_v1_policy_protos
325338
googleapis_cpp_iam_v1_iam_policy_protos
326339
googleapis_cpp_rpc_error_details_protos
@@ -407,6 +420,7 @@ set(GOOGLE_CLOUD_CPP_PC_DESCRIPTION
407420
string(CONCAT GOOGLE_CLOUD_CPP_PC_REQUIRES
408421
"googleapis_cpp_bigtable_protos"
409422
" googleapis_cpp_iam_v1_iam_policy_protos"
423+
" googleapis_cpp_iam_v1_options_protos"
410424
" googleapis_cpp_iam_v1_policy_protos"
411425
" googleapis_cpp_longrunning_operations_protos"
412426
" googleapis_cpp_api_auth_protos"

cmake/config.cmake.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ foreach (_target
2929
devtools_cloudtrace_v2_trace
3030
devtools_cloudtrace_v2_tracing
3131
iam_v1_iam_policy
32-
iam_v1_policy
32+
iam_v1_iam_policy
33+
iam_v1_options
3334
longrunning_operations
3435
rpc_error_details
3536
rpc_status

0 commit comments

Comments
 (0)