Index: head/devel/google-cloud-cpp/files/patch-cmake_external_googleapis.cmake =================================================================== --- head/devel/google-cloud-cpp/files/patch-cmake_external_googleapis.cmake (revision 560402) +++ head/devel/google-cloud-cpp/files/patch-cmake_external_googleapis.cmake (nonexistent) @@ -1,17 +0,0 @@ -Workaround for the upstream bug -https://github.com/googleapis/google-cloud-cpp/issues/2875 (Installs files into the same directory where build is performed from) -suggested by Anthony . - -Also see post-patch in Makefile. - ---- cmake/external/googleapis.cmake.orig 2019-07-17 17:31:29 UTC -+++ cmake/external/googleapis.cmake -@@ -109,7 +109,7 @@ if (NOT TARGET googleapis_project) - -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} - -DBUILD_SHARED_LIBS=${BUILD_SHARED_LIBS} - -DCMAKE_PREFIX_PATH=${GOOGLE_CLOUD_CPP_PREFIX_PATH} -- -DCMAKE_INSTALL_PREFIX= -+ -DCMAKE_INSTALL_PREFIX=%%LOCALBASE%% - -DCMAKE_INSTALL_RPATH=${GOOGLE_CLOUD_CPP_INSTALL_RPATH} - ${_googleapis_toolchain_flag} - ${_googleapis_triplet_flag} Property changes on: head/devel/google-cloud-cpp/files/patch-cmake_external_googleapis.cmake ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/google-cloud-cpp/files/patch-cmake_GoogleCloudCppCommon.cmake =================================================================== --- head/devel/google-cloud-cpp/files/patch-cmake_GoogleCloudCppCommon.cmake (revision 560402) +++ head/devel/google-cloud-cpp/files/patch-cmake_GoogleCloudCppCommon.cmake (nonexistent) @@ -1,20 +0,0 @@ ---- cmake/GoogleCloudCppCommon.cmake.orig 2019-07-11 02:46:50 UTC -+++ cmake/GoogleCloudCppCommon.cmake -@@ -24,7 +24,6 @@ include(CheckCXXCompilerFlag) - if (NOT MSVC) - check_cxx_compiler_flag(-Wall GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WALL) - check_cxx_compiler_flag(-Wextra GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WEXTRA) -- check_cxx_compiler_flag(-Werror GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WERROR) - else() - check_cxx_compiler_flag("/std:c++latest" - GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_CPP_LATEST) -@@ -118,9 +117,6 @@ function (google_cloud_cpp_add_common_options target) - endif () - if (GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WEXTRA) - target_compile_options(${target} INTERFACE "-Wextra") -- endif () -- if (GOOGLE_CLOUD_CPP_COMPILER_SUPPORTS_WERROR) -- target_compile_options(${target} INTERFACE "-Werror") - endif () - if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" - AND "${CMAKE_CXX_COMPILER_VERSION}" VERSION_LESS 5.0) Property changes on: head/devel/google-cloud-cpp/files/patch-cmake_GoogleCloudCppCommon.cmake ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/google-cloud-cpp/files/patch-google_cloud_storage_CMakeLists.txt =================================================================== --- head/devel/google-cloud-cpp/files/patch-google_cloud_storage_CMakeLists.txt (revision 560402) +++ head/devel/google-cloud-cpp/files/patch-google_cloud_storage_CMakeLists.txt (nonexistent) @@ -1,12 +0,0 @@ ---- google/cloud/storage/CMakeLists.txt.orig 2019-07-11 02:46:50 UTC -+++ google/cloud/storage/CMakeLists.txt -@@ -227,9 +227,6 @@ target_link_libraries(storage_client - Crc32c::crc32c - CURL::libcurl - Threads::Threads -- OpenSSL::SSL -- OpenSSL::Crypto -- ZLIB::ZLIB - PRIVATE storage_common_options) - target_include_directories(storage_client - PUBLIC $ Property changes on: head/devel/google-cloud-cpp/files/patch-google_cloud_storage_CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/google-cloud-cpp/files/patch-cmake_DownloadNlohmannJson.cmake =================================================================== --- head/devel/google-cloud-cpp/files/patch-cmake_DownloadNlohmannJson.cmake (revision 560402) +++ head/devel/google-cloud-cpp/files/patch-cmake_DownloadNlohmannJson.cmake (nonexistent) @@ -1,13 +0,0 @@ ---- cmake/DownloadNlohmannJson.cmake.orig 2019-07-11 02:46:50 UTC -+++ cmake/DownloadNlohmannJson.cmake -@@ -37,6 +37,10 @@ function (_download_json_hpp) - execute_process(COMMAND "${CMAKE_COMMAND}" -E sleep - "${sleep_seconds}") - endif () -+ if (EXISTS "${DEST}/json.hpp") -+ set(download_error_code 0) -+ break() -+ endif () - file(DOWNLOAD "${JSON_URL}" "${DEST}/json.hpp" STATUS download_status) - list(GET download_status 0 download_error_code) - if (download_error_code EQUAL 0) Property changes on: head/devel/google-cloud-cpp/files/patch-cmake_DownloadNlohmannJson.cmake ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/google-cloud-cpp/Makefile =================================================================== --- head/devel/google-cloud-cpp/Makefile (revision 560402) +++ head/devel/google-cloud-cpp/Makefile (revision 560403) @@ -1,50 +1,48 @@ # $FreeBSD$ PORTNAME= google-cloud-cpp DISTVERSIONPREFIX= v -DISTVERSION= 0.11.0.g20190710 # the upstream master branch is mis-versioned: https://github.com/googleapis/google-cloud-cpp/issues/2871 -PORTREVISION= 5 +DISTVERSION= 1.21.0 CATEGORIES= devel -MASTER_SITES= https://github.com/nlohmann/json/releases/download/v3.4.0/:json # should use the package: https://github.com/googleapis/google-cloud-cpp/issues/2874 -DISTFILES= json.hpp:json DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= amzo1337@gmail.com COMMENT= C++ Idiomatic Clients for Google Cloud Platform services LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= protobuf>=3.7.1:devel/protobuf \ - grpc>=1.19.1:devel/grpc -LIB_DEPENDS= libcrc32c.so:devel/crc32c \ +NOT_FOR_ARCHS= i386 + +BUILD_DEPENDS= grpc>=1.19.1:devel/grpc \ + nlohmann-json>0:devel/nlohmann-json \ + protobuf>=3.7.1:devel/protobuf +LIB_DEPENDS= libabsl_strings.so:devel/abseil \ + libcares.so:dns/c-ares \ + libcrc32c.so:devel/crc32c \ libcurl.so:ftp/curl \ libgrpc.so:devel/grpc \ - libprotobuf.so:devel/protobuf + libprotobuf.so:devel/protobuf \ + libre2.so:devel/re2 -USES= cmake compiler:c++11-lang ssl +USES= cmake compiler:c++17-lang pkgconfig ssl USE_GITHUB= yes -GH_TAGNAME= 4dff795ca GH_ACCOUNT= GoogleCloudPlatform -GH_TUPLE= googleapis:googleapis:a8ee1416f4c588f2ab92da72e7c1f588c784d3e6:googleapis +GH_TUPLE= googleapis:googleapis:370e9f9ac14dbc73f56e15257bccc06dfebd4196:googleapis USE_LDCONFIG= yes -CFLAGS+= -I${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build -LDFLAGS+= -L${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build - +CMAKE_ARGS= -DGOOGLE_CLOUD_CPP_CXX_STANDARD=17 \ + -DGOOGLE_CLOUD_CPP_DEPENDENCY_PROVIDER=package CMAKE_ON= BUILD_SHARED_LIBS CMAKE_OFF= BUILD_TESTING GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS -CMAKE_ARGS= -DGOOGLE_CLOUD_CPP_DEPENDENCY_PROVIDER=package +CFLAGS+= -I${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build +LDFLAGS+= -L${BUILD_WRKSRC}/external/googleapis/src/googleapis_project-build + post-extract: - @${MKDIR} ${BUILD_WRKSRC}/external/nlohmann_json/src/ - @${CP} ${DISTDIR}/${DIST_SUBDIR}/json.hpp ${BUILD_WRKSRC}/external/nlohmann_json/src/json.hpp @${MKDIR} ${BUILD_WRKSRC}/external/googleapis/src/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILE_googleapis} \ - ${BUILD_WRKSRC}/external/googleapis/src/a8ee1416f4c588f2ab92da72e7c1f588c784d3e6.tar.gz - -post-patch: # workaround for https://github.com/googleapis/google-cloud-cpp/issues/2875, also see files/patch-cmake_external_googleapis.cmake - @${REINPLACE_CMD} "s#%%LOCALBASE%%#${LOCALBASE}#" ${WRKSRC}/cmake/external/googleapis.cmake + ${BUILD_WRKSRC}/external/googleapis/src/370e9f9ac14dbc73f56e15257bccc06dfebd4196.tar.gz .include Index: head/devel/google-cloud-cpp/distinfo =================================================================== --- head/devel/google-cloud-cpp/distinfo (revision 560402) +++ head/devel/google-cloud-cpp/distinfo (revision 560403) @@ -1,7 +1,5 @@ -TIMESTAMP = 1563091031 -SHA256 (google-cloud-cpp/googleapis-googleapis-a8ee1416f4c588f2ab92da72e7c1f588c784d3e6_GH0.tar.gz) = 6b8a9b2bcb4476e9a5a9872869996f0d639c8d5df76dd8a893e79201f211b1cf -SIZE (google-cloud-cpp/googleapis-googleapis-a8ee1416f4c588f2ab92da72e7c1f588c784d3e6_GH0.tar.gz) = 1493736 -SHA256 (google-cloud-cpp/json.hpp) = 63da6d1f22b2a7bb9e4ff7d6b255cf691a161ff49532dcc45d398a53e295835f -SIZE (google-cloud-cpp/json.hpp) = 705920 -SHA256 (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v0.11.0.g20190710-4dff795ca_GH0.tar.gz) = 00a6355ae09b9f1708e87747835f8cb2e8de8351a0f836ff6954a6809ef81d73 -SIZE (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v0.11.0.g20190710-4dff795ca_GH0.tar.gz) = 2230947 +TIMESTAMP = 1608925921 +SHA256 (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v1.21.0_GH0.tar.gz) = 14bf9bf97431b890e0ae5dca8f8904841d4883b8596a7108a42f5700ae58d711 +SIZE (google-cloud-cpp/GoogleCloudPlatform-google-cloud-cpp-v1.21.0_GH0.tar.gz) = 3919149 +SHA256 (google-cloud-cpp/googleapis-googleapis-370e9f9ac14dbc73f56e15257bccc06dfebd4196_GH0.tar.gz) = 71ebb74007fd32626896fa2056c31d436c5e96774ac160482b5f25df5a90c6b9 +SIZE (google-cloud-cpp/googleapis-googleapis-370e9f9ac14dbc73f56e15257bccc06dfebd4196_GH0.tar.gz) = 3646780 Index: head/devel/google-cloud-cpp/pkg-plist =================================================================== --- head/devel/google-cloud-cpp/pkg-plist (revision 560402) +++ head/devel/google-cloud-cpp/pkg-plist (revision 560403) @@ -1,361 +1,664 @@ include/google/api/annotations.grpc.pb.h include/google/api/annotations.pb.h -include/google/api/annotations.proto include/google/api/auth.grpc.pb.h include/google/api/auth.pb.h -include/google/api/auth.proto +include/google/api/client.grpc.pb.h +include/google/api/client.pb.h +include/google/api/field_behavior.grpc.pb.h +include/google/api/field_behavior.pb.h include/google/api/http.grpc.pb.h include/google/api/http.pb.h -include/google/api/http.proto include/google/api/resource.grpc.pb.h include/google/api/resource.pb.h -include/google/api/resource.proto include/google/bigtable/admin/v2/bigtable_instance_admin.grpc.pb.h include/google/bigtable/admin/v2/bigtable_instance_admin.pb.h -include/google/bigtable/admin/v2/bigtable_instance_admin.proto include/google/bigtable/admin/v2/bigtable_table_admin.grpc.pb.h include/google/bigtable/admin/v2/bigtable_table_admin.pb.h -include/google/bigtable/admin/v2/bigtable_table_admin.proto include/google/bigtable/admin/v2/common.grpc.pb.h include/google/bigtable/admin/v2/common.pb.h -include/google/bigtable/admin/v2/common.proto include/google/bigtable/admin/v2/instance.grpc.pb.h include/google/bigtable/admin/v2/instance.pb.h -include/google/bigtable/admin/v2/instance.proto include/google/bigtable/admin/v2/table.grpc.pb.h include/google/bigtable/admin/v2/table.pb.h -include/google/bigtable/admin/v2/table.proto include/google/bigtable/v2/bigtable.grpc.pb.h include/google/bigtable/v2/bigtable.pb.h -include/google/bigtable/v2/bigtable.proto include/google/bigtable/v2/data.grpc.pb.h include/google/bigtable/v2/data.pb.h -include/google/bigtable/v2/data.proto +include/google/cloud/async_operation.h +include/google/cloud/background_threads.h +include/google/cloud/backoff_policy.h +include/google/cloud/bigquery/client.h +include/google/cloud/bigquery/connection.h +include/google/cloud/bigquery/connection/v1beta1/connection.grpc.pb.h +include/google/cloud/bigquery/connection/v1beta1/connection.pb.h +include/google/cloud/bigquery/connection_options.h +include/google/cloud/bigquery/datatransfer/v1/datatransfer.grpc.pb.h +include/google/cloud/bigquery/datatransfer/v1/datatransfer.pb.h +include/google/cloud/bigquery/datatransfer/v1/transfer.grpc.pb.h +include/google/cloud/bigquery/datatransfer/v1/transfer.pb.h +include/google/cloud/bigquery/internal/connection_impl.h +include/google/cloud/bigquery/internal/storage_stub.h +include/google/cloud/bigquery/internal/stream_reader.h +include/google/cloud/bigquery/internal/streaming_read_result_source.h +include/google/cloud/bigquery/logging/v1/audit_data.grpc.pb.h +include/google/cloud/bigquery/logging/v1/audit_data.pb.h +include/google/cloud/bigquery/read_result.h +include/google/cloud/bigquery/read_stream.h +include/google/cloud/bigquery/row.h +include/google/cloud/bigquery/row_set.h +include/google/cloud/bigquery/storage/v1beta1/arrow.grpc.pb.h +include/google/cloud/bigquery/storage/v1beta1/arrow.pb.h +include/google/cloud/bigquery/storage/v1beta1/avro.grpc.pb.h +include/google/cloud/bigquery/storage/v1beta1/avro.pb.h +include/google/cloud/bigquery/storage/v1beta1/read_options.grpc.pb.h +include/google/cloud/bigquery/storage/v1beta1/read_options.pb.h +include/google/cloud/bigquery/storage/v1beta1/storage.grpc.pb.h +include/google/cloud/bigquery/storage/v1beta1/storage.pb.h +include/google/cloud/bigquery/storage/v1beta1/table_reference.grpc.pb.h +include/google/cloud/bigquery/storage/v1beta1/table_reference.pb.h +include/google/cloud/bigquery/v2/encryption_config.grpc.pb.h +include/google/cloud/bigquery/v2/encryption_config.pb.h +include/google/cloud/bigquery/v2/model.grpc.pb.h +include/google/cloud/bigquery/v2/model.pb.h +include/google/cloud/bigquery/v2/model_reference.grpc.pb.h +include/google/cloud/bigquery/v2/model_reference.pb.h +include/google/cloud/bigquery/v2/standard_sql.grpc.pb.h +include/google/cloud/bigquery/v2/standard_sql.pb.h +include/google/cloud/bigquery/v2/table_reference.grpc.pb.h +include/google/cloud/bigquery/v2/table_reference.pb.h +include/google/cloud/bigquery/version.h +include/google/cloud/bigquery/version_info.h include/google/cloud/bigtable/admin_client.h include/google/cloud/bigtable/app_profile_config.h -include/google/cloud/bigtable/async_operation.h include/google/cloud/bigtable/async_row_reader.h include/google/cloud/bigtable/cell.h include/google/cloud/bigtable/client_options.h include/google/cloud/bigtable/cluster_config.h include/google/cloud/bigtable/cluster_list_responses.h include/google/cloud/bigtable/column_family.h include/google/cloud/bigtable/completion_queue.h include/google/cloud/bigtable/data_client.h include/google/cloud/bigtable/expr.h include/google/cloud/bigtable/filters.h include/google/cloud/bigtable/iam_binding.h include/google/cloud/bigtable/iam_policy.h include/google/cloud/bigtable/idempotent_mutation_policy.h include/google/cloud/bigtable/instance_admin.h include/google/cloud/bigtable/instance_admin_client.h include/google/cloud/bigtable/instance_config.h include/google/cloud/bigtable/instance_list_responses.h include/google/cloud/bigtable/instance_update_config.h include/google/cloud/bigtable/internal/async_bulk_apply.h include/google/cloud/bigtable/internal/async_longrunning_op.h include/google/cloud/bigtable/internal/async_poll_op.h -include/google/cloud/bigtable/internal/async_read_stream_impl.h include/google/cloud/bigtable/internal/async_retry_multi_page.h include/google/cloud/bigtable/internal/async_retry_op.h -include/google/cloud/bigtable/internal/async_retry_unary_rpc.h include/google/cloud/bigtable/internal/async_retry_unary_rpc_and_poll.h include/google/cloud/bigtable/internal/bulk_mutator.h include/google/cloud/bigtable/internal/client_options_defaults.h include/google/cloud/bigtable/internal/common_client.h -include/google/cloud/bigtable/internal/completion_queue_impl.h -include/google/cloud/bigtable/internal/conjunction.h include/google/cloud/bigtable/internal/google_bytes_traits.h include/google/cloud/bigtable/internal/prefix_range_end.h include/google/cloud/bigtable/internal/readrowsparser.h include/google/cloud/bigtable/internal/rowreaderiterator.h include/google/cloud/bigtable/internal/rpc_policy_parameters.h include/google/cloud/bigtable/internal/rpc_policy_parameters.inc include/google/cloud/bigtable/internal/unary_client_utils.h include/google/cloud/bigtable/metadata_update_policy.h include/google/cloud/bigtable/mutation_batcher.h include/google/cloud/bigtable/mutations.h include/google/cloud/bigtable/polling_policy.h include/google/cloud/bigtable/read_modify_write_rule.h include/google/cloud/bigtable/row.h include/google/cloud/bigtable/row_key.h include/google/cloud/bigtable/row_key_sample.h include/google/cloud/bigtable/row_range.h include/google/cloud/bigtable/row_reader.h include/google/cloud/bigtable/row_set.h include/google/cloud/bigtable/rpc_backoff_policy.h include/google/cloud/bigtable/rpc_retry_policy.h include/google/cloud/bigtable/table.h include/google/cloud/bigtable/table_admin.h include/google/cloud/bigtable/table_config.h include/google/cloud/bigtable/version.h include/google/cloud/bigtable/version_info.h +include/google/cloud/completion_queue.h +include/google/cloud/connection_options.h include/google/cloud/firestore/field_path.h include/google/cloud/future.h include/google/cloud/future_generic.h include/google/cloud/future_void.h +include/google/cloud/grpc_error_delegate.h +include/google/cloud/grpc_utils/async_operation.h +include/google/cloud/grpc_utils/completion_queue.h include/google/cloud/grpc_utils/grpc_error_delegate.h include/google/cloud/grpc_utils/version.h -include/google/cloud/grpc_utils/version_info.h include/google/cloud/iam_binding.h include/google/cloud/iam_bindings.h include/google/cloud/iam_policy.h +include/google/cloud/internal/absl_flat_hash_map_quiet.h +include/google/cloud/internal/absl_str_cat_quiet.h +include/google/cloud/internal/absl_str_join_quiet.h +include/google/cloud/internal/absl_str_replace_quiet.h +include/google/cloud/internal/api_client_header.h +include/google/cloud/internal/async_read_stream_impl.h +include/google/cloud/internal/async_read_write_stream_impl.h +include/google/cloud/internal/async_retry_loop.h +include/google/cloud/internal/async_retry_unary_rpc.h +include/google/cloud/internal/async_rpc_details.h +include/google/cloud/internal/background_threads_impl.h include/google/cloud/internal/backoff_policy.h include/google/cloud/internal/big_endian.h include/google/cloud/internal/build_info.h -include/google/cloud/internal/disjunction.h +include/google/cloud/internal/compiler_info.h +include/google/cloud/internal/completion_queue_impl.h +include/google/cloud/internal/default_completion_queue_impl.h +include/google/cloud/internal/diagnostics_pop.inc +include/google/cloud/internal/diagnostics_push.inc +include/google/cloud/internal/disable_msvc_crt_secure_warnings.inc include/google/cloud/internal/filesystem.h include/google/cloud/internal/format_time_point.h include/google/cloud/internal/future_base.h include/google/cloud/internal/future_fwd.h include/google/cloud/internal/future_impl.h include/google/cloud/internal/future_then_impl.h include/google/cloud/internal/future_then_meta.h include/google/cloud/internal/getenv.h include/google/cloud/internal/invoke_result.h include/google/cloud/internal/ios_flags_saver.h -include/google/cloud/internal/make_unique.h +include/google/cloud/internal/log_wrapper.h +include/google/cloud/internal/pagination_range.h include/google/cloud/internal/parse_rfc3339.h +include/google/cloud/internal/polling_loop.h include/google/cloud/internal/port_platform.h include/google/cloud/internal/random.h +include/google/cloud/internal/retry_loop.h +include/google/cloud/internal/retry_loop_helpers.h include/google/cloud/internal/retry_policy.h include/google/cloud/internal/setenv.h +include/google/cloud/internal/stream_range.h +include/google/cloud/internal/strerror.h include/google/cloud/internal/throw_delegate.h +include/google/cloud/internal/time_utils.h +include/google/cloud/internal/tuple.h +include/google/cloud/internal/user_agent_prefix.h +include/google/cloud/internal/utility.h include/google/cloud/internal/version_info.h +include/google/cloud/kms_key_name.h include/google/cloud/log.h include/google/cloud/optional.h +include/google/cloud/polling_policy.h +include/google/cloud/pubsub/ack_handler.h +include/google/cloud/pubsub/application_callback.h +include/google/cloud/pubsub/backoff_policy.h +include/google/cloud/pubsub/connection_options.h +include/google/cloud/pubsub/internal/batch_sink.h +include/google/cloud/pubsub/internal/batching_publisher_connection.h +include/google/cloud/pubsub/internal/create_channel.h +include/google/cloud/pubsub/internal/default_batch_sink.h +include/google/cloud/pubsub/internal/default_retry_policies.h +include/google/cloud/pubsub/internal/emulator_overrides.h +include/google/cloud/pubsub/internal/ordering_key_publisher_connection.h +include/google/cloud/pubsub/internal/publisher_logging.h +include/google/cloud/pubsub/internal/publisher_metadata.h +include/google/cloud/pubsub/internal/publisher_round_robin.h +include/google/cloud/pubsub/internal/publisher_stub.h +include/google/cloud/pubsub/internal/rejects_with_ordering_key.h +include/google/cloud/pubsub/internal/sequential_batch_sink.h +include/google/cloud/pubsub/internal/session_shutdown_manager.h +include/google/cloud/pubsub/internal/streaming_subscription_batch_source.h +include/google/cloud/pubsub/internal/subscriber_logging.h +include/google/cloud/pubsub/internal/subscriber_metadata.h +include/google/cloud/pubsub/internal/subscriber_round_robin.h +include/google/cloud/pubsub/internal/subscriber_stub.h +include/google/cloud/pubsub/internal/subscription_batch_source.h +include/google/cloud/pubsub/internal/subscription_concurrency_control.h +include/google/cloud/pubsub/internal/subscription_lease_management.h +include/google/cloud/pubsub/internal/subscription_message_queue.h +include/google/cloud/pubsub/internal/subscription_message_source.h +include/google/cloud/pubsub/internal/subscription_session.h +include/google/cloud/pubsub/internal/user_agent_prefix.h +include/google/cloud/pubsub/message.h +include/google/cloud/pubsub/mocks/mock_ack_handler.h +include/google/cloud/pubsub/mocks/mock_publisher_connection.h +include/google/cloud/pubsub/mocks/mock_subscriber_connection.h +include/google/cloud/pubsub/mocks/mock_subscription_admin_connection.h +include/google/cloud/pubsub/mocks/mock_topic_admin_connection.h +include/google/cloud/pubsub/publisher.h +include/google/cloud/pubsub/publisher_connection.h +include/google/cloud/pubsub/publisher_options.h +include/google/cloud/pubsub/retry_policy.h +include/google/cloud/pubsub/snapshot.h +include/google/cloud/pubsub/snapshot_builder.h +include/google/cloud/pubsub/subscriber.h +include/google/cloud/pubsub/subscriber_connection.h +include/google/cloud/pubsub/subscriber_options.h +include/google/cloud/pubsub/subscription.h +include/google/cloud/pubsub/subscription_admin_client.h +include/google/cloud/pubsub/subscription_admin_connection.h +include/google/cloud/pubsub/subscription_builder.h +include/google/cloud/pubsub/topic.h +include/google/cloud/pubsub/topic_admin_client.h +include/google/cloud/pubsub/topic_admin_connection.h +include/google/cloud/pubsub/topic_builder.h +include/google/cloud/pubsub/version.h +include/google/cloud/pubsub/version_info.h +include/google/cloud/spanner/backoff_policy.h +include/google/cloud/spanner/backup.h +include/google/cloud/spanner/batch_dml_result.h +include/google/cloud/spanner/bytes.h +include/google/cloud/spanner/client.h +include/google/cloud/spanner/client_options.h +include/google/cloud/spanner/commit_result.h +include/google/cloud/spanner/connection.h +include/google/cloud/spanner/connection_options.h +include/google/cloud/spanner/create_instance_request_builder.h +include/google/cloud/spanner/database.h +include/google/cloud/spanner/database_admin_client.h +include/google/cloud/spanner/database_admin_connection.h +include/google/cloud/spanner/date.h +include/google/cloud/spanner/iam_updater.h +include/google/cloud/spanner/instance.h +include/google/cloud/spanner/instance_admin_client.h +include/google/cloud/spanner/instance_admin_connection.h +include/google/cloud/spanner/internal/channel.h +include/google/cloud/spanner/internal/clock.h +include/google/cloud/spanner/internal/connection_impl.h +include/google/cloud/spanner/internal/database_admin_logging.h +include/google/cloud/spanner/internal/database_admin_metadata.h +include/google/cloud/spanner/internal/database_admin_stub.h +include/google/cloud/spanner/internal/instance_admin_logging.h +include/google/cloud/spanner/internal/instance_admin_metadata.h +include/google/cloud/spanner/internal/instance_admin_stub.h +include/google/cloud/spanner/internal/logging_result_set_reader.h +include/google/cloud/spanner/internal/logging_spanner_stub.h +include/google/cloud/spanner/internal/merge_chunk.h +include/google/cloud/spanner/internal/metadata_spanner_stub.h +include/google/cloud/spanner/internal/partial_result_set_reader.h +include/google/cloud/spanner/internal/partial_result_set_resume.h +include/google/cloud/spanner/internal/partial_result_set_source.h +include/google/cloud/spanner/internal/session.h +include/google/cloud/spanner/internal/session_pool.h +include/google/cloud/spanner/internal/spanner_stub.h +include/google/cloud/spanner/internal/status_utils.h +include/google/cloud/spanner/internal/transaction_impl.h +include/google/cloud/spanner/internal/tuple_utils.h +include/google/cloud/spanner/keys.h +include/google/cloud/spanner/mocks/mock_database_admin_connection.h +include/google/cloud/spanner/mocks/mock_instance_admin_connection.h +include/google/cloud/spanner/mocks/mock_spanner_connection.h +include/google/cloud/spanner/mutations.h +include/google/cloud/spanner/numeric.h +include/google/cloud/spanner/partition_options.h +include/google/cloud/spanner/partitioned_dml_result.h +include/google/cloud/spanner/polling_policy.h +include/google/cloud/spanner/query_options.h +include/google/cloud/spanner/query_partition.h +include/google/cloud/spanner/read_options.h +include/google/cloud/spanner/read_partition.h +include/google/cloud/spanner/results.h +include/google/cloud/spanner/retry_policy.h +include/google/cloud/spanner/row.h +include/google/cloud/spanner/session_pool_options.h +include/google/cloud/spanner/sql_statement.h +include/google/cloud/spanner/timestamp.h +include/google/cloud/spanner/tracing_options.h +include/google/cloud/spanner/transaction.h +include/google/cloud/spanner/update_instance_request_builder.h +include/google/cloud/spanner/value.h +include/google/cloud/spanner/version.h +include/google/cloud/spanner/version_info.h include/google/cloud/status.h include/google/cloud/status_or.h include/google/cloud/storage/bucket_access_control.h include/google/cloud/storage/bucket_metadata.h include/google/cloud/storage/client.h include/google/cloud/storage/client_options.h include/google/cloud/storage/download_options.h include/google/cloud/storage/hashing_options.h include/google/cloud/storage/hmac_key_metadata.h +include/google/cloud/storage/iam_policy.h include/google/cloud/storage/idempotency_policy.h include/google/cloud/storage/internal/access_control_common.h +include/google/cloud/storage/internal/access_control_common_parser.h include/google/cloud/storage/internal/binary_data_as_debug_string.h +include/google/cloud/storage/internal/bucket_access_control_parser.h include/google/cloud/storage/internal/bucket_acl_requests.h +include/google/cloud/storage/internal/bucket_metadata_parser.h include/google/cloud/storage/internal/bucket_requests.h include/google/cloud/storage/internal/common_metadata.h +include/google/cloud/storage/internal/common_metadata_parser.h include/google/cloud/storage/internal/complex_option.h include/google/cloud/storage/internal/compute_engine_util.h +include/google/cloud/storage/internal/const_buffer.h include/google/cloud/storage/internal/curl_client.h include/google/cloud/storage/internal/curl_download_request.h include/google/cloud/storage/internal/curl_handle.h include/google/cloud/storage/internal/curl_handle_factory.h include/google/cloud/storage/internal/curl_request.h include/google/cloud/storage/internal/curl_request_builder.h include/google/cloud/storage/internal/curl_resumable_upload_session.h include/google/cloud/storage/internal/curl_wrappers.h include/google/cloud/storage/internal/default_object_acl_requests.h include/google/cloud/storage/internal/empty_response.h include/google/cloud/storage/internal/generate_message_boundary.h include/google/cloud/storage/internal/generic_object_request.h include/google/cloud/storage/internal/generic_request.h include/google/cloud/storage/internal/hash_validator.h include/google/cloud/storage/internal/hash_validator_impl.h +include/google/cloud/storage/internal/hmac_key_metadata_parser.h include/google/cloud/storage/internal/hmac_key_requests.h include/google/cloud/storage/internal/http_response.h +include/google/cloud/storage/internal/lifecycle_rule_parser.h include/google/cloud/storage/internal/logging_client.h include/google/cloud/storage/internal/logging_resumable_upload_session.h include/google/cloud/storage/internal/metadata_parser.h -include/google/cloud/storage/internal/nljson.h -include/google/cloud/storage/internal/nlohmann_json.hpp +include/google/cloud/storage/internal/notification_metadata_parser.h include/google/cloud/storage/internal/notification_requests.h +include/google/cloud/storage/internal/object_access_control_parser.h include/google/cloud/storage/internal/object_acl_requests.h +include/google/cloud/storage/internal/object_metadata_parser.h include/google/cloud/storage/internal/object_read_source.h include/google/cloud/storage/internal/object_requests.h include/google/cloud/storage/internal/object_streambuf.h include/google/cloud/storage/internal/openssl_util.h +include/google/cloud/storage/internal/parameter_pack_validation.h include/google/cloud/storage/internal/patch_builder.h include/google/cloud/storage/internal/policy_document_request.h -include/google/cloud/storage/internal/range_from_pagination.h include/google/cloud/storage/internal/raw_client.h include/google/cloud/storage/internal/raw_client_wrapper_utils.h include/google/cloud/storage/internal/resumable_upload_session.h include/google/cloud/storage/internal/retry_client.h include/google/cloud/storage/internal/retry_object_read_source.h include/google/cloud/storage/internal/retry_resumable_upload_session.h +include/google/cloud/storage/internal/service_account_parser.h include/google/cloud/storage/internal/service_account_requests.h include/google/cloud/storage/internal/sha256_hash.h include/google/cloud/storage/internal/sign_blob_requests.h include/google/cloud/storage/internal/signed_url_requests.h +include/google/cloud/storage/internal/tuple_filter.h include/google/cloud/storage/lifecycle_rule.h include/google/cloud/storage/list_buckets_reader.h include/google/cloud/storage/list_hmac_keys_reader.h +include/google/cloud/storage/list_objects_and_prefixes_reader.h include/google/cloud/storage/list_objects_reader.h include/google/cloud/storage/notification_event_type.h include/google/cloud/storage/notification_metadata.h include/google/cloud/storage/notification_payload_format.h include/google/cloud/storage/oauth2/anonymous_credentials.h include/google/cloud/storage/oauth2/authorized_user_credentials.h include/google/cloud/storage/oauth2/compute_engine_credentials.h include/google/cloud/storage/oauth2/credential_constants.h include/google/cloud/storage/oauth2/credentials.h include/google/cloud/storage/oauth2/google_application_default_credentials_file.h include/google/cloud/storage/oauth2/google_credentials.h include/google/cloud/storage/oauth2/refreshing_credentials_wrapper.h include/google/cloud/storage/oauth2/service_account_credentials.h include/google/cloud/storage/object_access_control.h include/google/cloud/storage/object_metadata.h include/google/cloud/storage/object_rewriter.h include/google/cloud/storage/object_stream.h include/google/cloud/storage/override_default_project.h +include/google/cloud/storage/parallel_upload.h include/google/cloud/storage/policy_document.h include/google/cloud/storage/retry_policy.h include/google/cloud/storage/service_account.h include/google/cloud/storage/signed_url_options.h include/google/cloud/storage/storage_class.h +include/google/cloud/storage/testing/mock_client.h include/google/cloud/storage/upload_options.h include/google/cloud/storage/version.h include/google/cloud/storage/version_info.h include/google/cloud/storage/well_known_headers.h include/google/cloud/storage/well_known_parameters.h include/google/cloud/terminate_handler.h +include/google/cloud/tracing_options.h include/google/cloud/version.h +include/google/devtools/cloudtrace/v2/trace.grpc.pb.h +include/google/devtools/cloudtrace/v2/trace.pb.h +include/google/devtools/cloudtrace/v2/tracing.grpc.pb.h +include/google/devtools/cloudtrace/v2/tracing.pb.h include/google/iam/v1/iam_policy.grpc.pb.h include/google/iam/v1/iam_policy.pb.h -include/google/iam/v1/iam_policy.proto +include/google/iam/v1/options.grpc.pb.h +include/google/iam/v1/options.pb.h include/google/iam/v1/policy.grpc.pb.h include/google/iam/v1/policy.pb.h -include/google/iam/v1/policy.proto include/google/longrunning/operations.grpc.pb.h include/google/longrunning/operations.pb.h -include/google/longrunning/operations.proto +include/google/pubsub/v1/pubsub.grpc.pb.h +include/google/pubsub/v1/pubsub.pb.h include/google/rpc/error_details.grpc.pb.h include/google/rpc/error_details.pb.h -include/google/rpc/error_details.proto include/google/rpc/status.grpc.pb.h include/google/rpc/status.pb.h -include/google/rpc/status.proto +include/google/spanner/admin/database/v1/backup.grpc.pb.h +include/google/spanner/admin/database/v1/backup.pb.h +include/google/spanner/admin/database/v1/common.grpc.pb.h +include/google/spanner/admin/database/v1/common.pb.h include/google/spanner/admin/database/v1/spanner_database_admin.grpc.pb.h include/google/spanner/admin/database/v1/spanner_database_admin.pb.h -include/google/spanner/admin/database/v1/spanner_database_admin.proto include/google/spanner/admin/instance/v1/spanner_instance_admin.grpc.pb.h include/google/spanner/admin/instance/v1/spanner_instance_admin.pb.h -include/google/spanner/admin/instance/v1/spanner_instance_admin.proto include/google/spanner/v1/keys.grpc.pb.h include/google/spanner/v1/keys.pb.h -include/google/spanner/v1/keys.proto include/google/spanner/v1/mutation.grpc.pb.h include/google/spanner/v1/mutation.pb.h -include/google/spanner/v1/mutation.proto include/google/spanner/v1/query_plan.grpc.pb.h include/google/spanner/v1/query_plan.pb.h -include/google/spanner/v1/query_plan.proto include/google/spanner/v1/result_set.grpc.pb.h include/google/spanner/v1/result_set.pb.h -include/google/spanner/v1/result_set.proto include/google/spanner/v1/spanner.grpc.pb.h include/google/spanner/v1/spanner.pb.h -include/google/spanner/v1/spanner.proto include/google/spanner/v1/transaction.grpc.pb.h include/google/spanner/v1/transaction.pb.h -include/google/spanner/v1/transaction.proto include/google/spanner/v1/type.grpc.pb.h include/google/spanner/v1/type.pb.h -include/google/spanner/v1/type.proto +include/google/storage/v1/storage.grpc.pb.h +include/google/storage/v1/storage.pb.h +include/google/storage/v1/storage_resources.grpc.pb.h +include/google/storage/v1/storage_resources.pb.h include/google/type/expr.grpc.pb.h include/google/type/expr.pb.h -include/google/type/expr.proto +include/src/googleapis_download/google/api/annotations.proto +include/src/googleapis_download/google/api/auth.proto +include/src/googleapis_download/google/api/client.proto +include/src/googleapis_download/google/api/field_behavior.proto +include/src/googleapis_download/google/api/http.proto +include/src/googleapis_download/google/api/resource.proto +include/src/googleapis_download/google/bigtable/admin/v2/bigtable_instance_admin.proto +include/src/googleapis_download/google/bigtable/admin/v2/bigtable_table_admin.proto +include/src/googleapis_download/google/bigtable/admin/v2/common.proto +include/src/googleapis_download/google/bigtable/admin/v2/instance.proto +include/src/googleapis_download/google/bigtable/admin/v2/table.proto +include/src/googleapis_download/google/bigtable/v2/bigtable.proto +include/src/googleapis_download/google/bigtable/v2/data.proto +include/src/googleapis_download/google/cloud/bigquery/connection/v1beta1/connection.proto +include/src/googleapis_download/google/cloud/bigquery/datatransfer/v1/datatransfer.proto +include/src/googleapis_download/google/cloud/bigquery/datatransfer/v1/transfer.proto +include/src/googleapis_download/google/cloud/bigquery/logging/v1/audit_data.proto +include/src/googleapis_download/google/cloud/bigquery/storage/v1beta1/arrow.proto +include/src/googleapis_download/google/cloud/bigquery/storage/v1beta1/avro.proto +include/src/googleapis_download/google/cloud/bigquery/storage/v1beta1/read_options.proto +include/src/googleapis_download/google/cloud/bigquery/storage/v1beta1/storage.proto +include/src/googleapis_download/google/cloud/bigquery/storage/v1beta1/table_reference.proto +include/src/googleapis_download/google/cloud/bigquery/v2/encryption_config.proto +include/src/googleapis_download/google/cloud/bigquery/v2/model.proto +include/src/googleapis_download/google/cloud/bigquery/v2/model_reference.proto +include/src/googleapis_download/google/cloud/bigquery/v2/standard_sql.proto +include/src/googleapis_download/google/cloud/bigquery/v2/table_reference.proto +include/src/googleapis_download/google/devtools/cloudtrace/v2/trace.proto +include/src/googleapis_download/google/devtools/cloudtrace/v2/tracing.proto +include/src/googleapis_download/google/iam/v1/iam_policy.proto +include/src/googleapis_download/google/iam/v1/options.proto +include/src/googleapis_download/google/iam/v1/policy.proto +include/src/googleapis_download/google/longrunning/operations.proto +include/src/googleapis_download/google/pubsub/v1/pubsub.proto +include/src/googleapis_download/google/rpc/error_details.proto +include/src/googleapis_download/google/rpc/status.proto +include/src/googleapis_download/google/spanner/admin/database/v1/backup.proto +include/src/googleapis_download/google/spanner/admin/database/v1/common.proto +include/src/googleapis_download/google/spanner/admin/database/v1/spanner_database_admin.proto +include/src/googleapis_download/google/spanner/admin/instance/v1/spanner_instance_admin.proto +include/src/googleapis_download/google/spanner/v1/keys.proto +include/src/googleapis_download/google/spanner/v1/mutation.proto +include/src/googleapis_download/google/spanner/v1/query_plan.proto +include/src/googleapis_download/google/spanner/v1/result_set.proto +include/src/googleapis_download/google/spanner/v1/spanner.proto +include/src/googleapis_download/google/spanner/v1/transaction.proto +include/src/googleapis_download/google/spanner/v1/type.proto +include/src/googleapis_download/google/storage/v1/storage.proto +include/src/googleapis_download/google/storage/v1/storage_resources.proto +include/src/googleapis_download/google/type/expr.proto +lib/cmake/bigquery_client/bigquery-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/bigquery_client/bigquery-targets.cmake +lib/cmake/bigquery_client/bigquery_client-config-version.cmake +lib/cmake/bigquery_client/bigquery_client-config.cmake lib/cmake/bigtable_client/bigtable-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/bigtable_client/bigtable-targets.cmake lib/cmake/bigtable_client/bigtable_client-config-version.cmake lib/cmake/bigtable_client/bigtable_client-config.cmake lib/cmake/firestore_client/firestore-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/firestore_client/firestore-targets.cmake lib/cmake/firestore_client/firestore_client-config-version.cmake lib/cmake/firestore_client/firestore_client-config.cmake lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-config-version.cmake lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-config.cmake lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/google_cloud_cpp_common/google_cloud_cpp_common-targets.cmake -lib/cmake/google_cloud_cpp_grpc_utils/FindProtobufTargets.cmake -lib/cmake/google_cloud_cpp_grpc_utils/FindgRPC.cmake -lib/cmake/google_cloud_cpp_grpc_utils/PkgConfigHelper.cmake lib/cmake/google_cloud_cpp_grpc_utils/google_cloud_cpp_grpc_utils-config-version.cmake lib/cmake/google_cloud_cpp_grpc_utils/google_cloud_cpp_grpc_utils-config.cmake lib/cmake/google_cloud_cpp_grpc_utils/grpc_utils-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/google_cloud_cpp_grpc_utils/grpc_utils-targets.cmake -lib/cmake/googleapis/FindProtobufTargets.cmake +lib/cmake/googleapis/CompileProtos.cmake +lib/cmake/googleapis/FindProtobufWithTargets.cmake lib/cmake/googleapis/FindgRPC.cmake -lib/cmake/googleapis/PkgConfigHelper.cmake lib/cmake/googleapis/googleapis-config-version.cmake lib/cmake/googleapis/googleapis-config.cmake lib/cmake/googleapis/googleapis-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/googleapis/googleapis-targets.cmake +lib/cmake/pubsub_client/pubsub-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/pubsub_client/pubsub-targets.cmake +lib/cmake/pubsub_client/pubsub_client-config-version.cmake +lib/cmake/pubsub_client/pubsub_client-config.cmake +lib/cmake/spanner_client/spanner-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/spanner_client/spanner-targets.cmake +lib/cmake/spanner_client/spanner_client-config-version.cmake +lib/cmake/spanner_client/spanner_client-config.cmake lib/cmake/storage_client/storage-targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/storage_client/storage-targets.cmake lib/cmake/storage_client/storage_client-config-version.cmake lib/cmake/storage_client/storage_client-config.cmake +lib/libbigquery_client.so +lib/libbigquery_client.so.1 +lib/libbigquery_client.so.1.21.0 lib/libbigtable_client.so lib/libbigtable_client.so.1 -lib/libbigtable_client.so.1.1.0 +lib/libbigtable_client.so.1.21.0 lib/libfirestore_client.so -lib/libfirestore_client.so.0 -lib/libfirestore_client.so.0.0.1 +lib/libfirestore_client.so.1 +lib/libfirestore_client.so.1.21.0 lib/libgoogle_cloud_cpp_common.so -lib/libgoogle_cloud_cpp_common.so.0 -lib/libgoogle_cloud_cpp_common.so.0.10.0 +lib/libgoogle_cloud_cpp_common.so.1 +lib/libgoogle_cloud_cpp_common.so.1.21.0 lib/libgoogle_cloud_cpp_grpc_utils.so -lib/libgoogle_cloud_cpp_grpc_utils.so.0 -lib/libgoogle_cloud_cpp_grpc_utils.so.0.1.0 +lib/libgoogle_cloud_cpp_grpc_utils.so.1 +lib/libgoogle_cloud_cpp_grpc_utils.so.1.21.0 lib/libgoogleapis_cpp_api_annotations_protos.so -lib/libgoogleapis_cpp_api_annotations_protos.so.0 -lib/libgoogleapis_cpp_api_annotations_protos.so.0.2.0 +lib/libgoogleapis_cpp_api_annotations_protos.so.1 +lib/libgoogleapis_cpp_api_annotations_protos.so.1.21.0 lib/libgoogleapis_cpp_api_auth_protos.so -lib/libgoogleapis_cpp_api_auth_protos.so.0 -lib/libgoogleapis_cpp_api_auth_protos.so.0.2.0 +lib/libgoogleapis_cpp_api_auth_protos.so.1 +lib/libgoogleapis_cpp_api_auth_protos.so.1.21.0 +lib/libgoogleapis_cpp_api_client_protos.so +lib/libgoogleapis_cpp_api_client_protos.so.1 +lib/libgoogleapis_cpp_api_client_protos.so.1.21.0 +lib/libgoogleapis_cpp_api_field_behavior_protos.so +lib/libgoogleapis_cpp_api_field_behavior_protos.so.1 +lib/libgoogleapis_cpp_api_field_behavior_protos.so.1.21.0 lib/libgoogleapis_cpp_api_http_protos.so -lib/libgoogleapis_cpp_api_http_protos.so.0 -lib/libgoogleapis_cpp_api_http_protos.so.0.2.0 +lib/libgoogleapis_cpp_api_http_protos.so.1 +lib/libgoogleapis_cpp_api_http_protos.so.1.21.0 lib/libgoogleapis_cpp_api_resource_protos.so -lib/libgoogleapis_cpp_api_resource_protos.so.0 -lib/libgoogleapis_cpp_api_resource_protos.so.0.2.0 +lib/libgoogleapis_cpp_api_resource_protos.so.1 +lib/libgoogleapis_cpp_api_resource_protos.so.1.21.0 lib/libgoogleapis_cpp_bigtable_protos.so -lib/libgoogleapis_cpp_bigtable_protos.so.0 -lib/libgoogleapis_cpp_bigtable_protos.so.0.2.0 +lib/libgoogleapis_cpp_bigtable_protos.so.1 +lib/libgoogleapis_cpp_bigtable_protos.so.1.21.0 +lib/libgoogleapis_cpp_cloud_bigquery_protos.so +lib/libgoogleapis_cpp_cloud_bigquery_protos.so.1 +lib/libgoogleapis_cpp_cloud_bigquery_protos.so.1.21.0 +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_trace_protos.so +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_trace_protos.so.1 +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_trace_protos.so.1.21.0 +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_tracing_protos.so +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_tracing_protos.so.1 +lib/libgoogleapis_cpp_devtools_cloudtrace_v2_tracing_protos.so.1.21.0 lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so -lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.0 -lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.0.2.0 +lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.1 +lib/libgoogleapis_cpp_iam_v1_iam_policy_protos.so.1.21.0 +lib/libgoogleapis_cpp_iam_v1_options_protos.so +lib/libgoogleapis_cpp_iam_v1_options_protos.so.1 +lib/libgoogleapis_cpp_iam_v1_options_protos.so.1.21.0 lib/libgoogleapis_cpp_iam_v1_policy_protos.so -lib/libgoogleapis_cpp_iam_v1_policy_protos.so.0 -lib/libgoogleapis_cpp_iam_v1_policy_protos.so.0.2.0 +lib/libgoogleapis_cpp_iam_v1_policy_protos.so.1 +lib/libgoogleapis_cpp_iam_v1_policy_protos.so.1.21.0 lib/libgoogleapis_cpp_longrunning_operations_protos.so -lib/libgoogleapis_cpp_longrunning_operations_protos.so.0 -lib/libgoogleapis_cpp_longrunning_operations_protos.so.0.2.0 +lib/libgoogleapis_cpp_longrunning_operations_protos.so.1 +lib/libgoogleapis_cpp_longrunning_operations_protos.so.1.21.0 +lib/libgoogleapis_cpp_pubsub_protos.so +lib/libgoogleapis_cpp_pubsub_protos.so.1 +lib/libgoogleapis_cpp_pubsub_protos.so.1.21.0 lib/libgoogleapis_cpp_rpc_error_details_protos.so -lib/libgoogleapis_cpp_rpc_error_details_protos.so.0 -lib/libgoogleapis_cpp_rpc_error_details_protos.so.0.2.0 +lib/libgoogleapis_cpp_rpc_error_details_protos.so.1 +lib/libgoogleapis_cpp_rpc_error_details_protos.so.1.21.0 lib/libgoogleapis_cpp_rpc_status_protos.so -lib/libgoogleapis_cpp_rpc_status_protos.so.0 -lib/libgoogleapis_cpp_rpc_status_protos.so.0.2.0 +lib/libgoogleapis_cpp_rpc_status_protos.so.1 +lib/libgoogleapis_cpp_rpc_status_protos.so.1.21.0 lib/libgoogleapis_cpp_spanner_protos.so -lib/libgoogleapis_cpp_spanner_protos.so.0 -lib/libgoogleapis_cpp_spanner_protos.so.0.2.0 +lib/libgoogleapis_cpp_spanner_protos.so.1 +lib/libgoogleapis_cpp_spanner_protos.so.1.21.0 +lib/libgoogleapis_cpp_storage_protos.so +lib/libgoogleapis_cpp_storage_protos.so.1 +lib/libgoogleapis_cpp_storage_protos.so.1.21.0 lib/libgoogleapis_cpp_type_expr_protos.so -lib/libgoogleapis_cpp_type_expr_protos.so.0 -lib/libgoogleapis_cpp_type_expr_protos.so.0.2.0 +lib/libgoogleapis_cpp_type_expr_protos.so.1 +lib/libgoogleapis_cpp_type_expr_protos.so.1.21.0 +lib/libpubsub_client.so +lib/libpubsub_client.so.1 +lib/libpubsub_client.so.1.21.0 +lib/libspanner_client.so +lib/libspanner_client.so.1 +lib/libspanner_client.so.1.21.0 lib/libstorage_client.so lib/libstorage_client.so.1 -lib/libstorage_client.so.1.3.0 +lib/libstorage_client.so.1.21.0 +libdata/pkgconfig/bigquery_client.pc libdata/pkgconfig/bigtable_client.pc libdata/pkgconfig/firestore_client.pc libdata/pkgconfig/google_cloud_cpp_common.pc libdata/pkgconfig/google_cloud_cpp_grpc_utils.pc libdata/pkgconfig/googleapis.pc libdata/pkgconfig/googleapis_cpp_api_annotations_protos.pc libdata/pkgconfig/googleapis_cpp_api_auth_protos.pc +libdata/pkgconfig/googleapis_cpp_api_client_protos.pc +libdata/pkgconfig/googleapis_cpp_api_field_behavior_protos.pc libdata/pkgconfig/googleapis_cpp_api_http_protos.pc libdata/pkgconfig/googleapis_cpp_api_resource_protos.pc libdata/pkgconfig/googleapis_cpp_bigtable_protos.pc +libdata/pkgconfig/googleapis_cpp_cloud_bigquery_protos.pc +libdata/pkgconfig/googleapis_cpp_devtools_cloudtrace_v2_trace_protos.pc +libdata/pkgconfig/googleapis_cpp_devtools_cloudtrace_v2_tracing_protos.pc libdata/pkgconfig/googleapis_cpp_iam_v1_iam_policy_protos.pc +libdata/pkgconfig/googleapis_cpp_iam_v1_options_protos.pc libdata/pkgconfig/googleapis_cpp_iam_v1_policy_protos.pc libdata/pkgconfig/googleapis_cpp_longrunning_operations_protos.pc +libdata/pkgconfig/googleapis_cpp_pubsub_protos.pc libdata/pkgconfig/googleapis_cpp_rpc_error_details_protos.pc libdata/pkgconfig/googleapis_cpp_rpc_status_protos.pc libdata/pkgconfig/googleapis_cpp_spanner_protos.pc +libdata/pkgconfig/googleapis_cpp_storage_protos.pc libdata/pkgconfig/googleapis_cpp_type_expr_protos.pc +libdata/pkgconfig/pubsub_client.pc +libdata/pkgconfig/spanner_client.pc libdata/pkgconfig/storage_client.pc