-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(cmake)!: only compile protos if asked - logging #12502
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #12502 +/- ##
==========================================
- Coverage 93.63% 93.62% -0.01%
==========================================
Files 2043 2043
Lines 180846 180846
==========================================
- Hits 169327 169319 -8
- Misses 11519 11527 +8 ☔ View full report in Codecov by Sentry. |
/gcbrun |
@@ -18,7 +18,8 @@ include(GoogleCloudCppLibrary) | |||
|
|||
set(GOOGLE_CLOUD_CPP_SERVICE_DIRS "" "v1/") | |||
|
|||
google_cloud_cpp_add_ga_grpc_library(appengine "App Engine Admin API") | |||
google_cloud_cpp_add_ga_grpc_library(appengine "App Engine Admin API" | |||
SHARED_PROTO_DEPS "logging_type") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, logging_type
is generated here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, it will be generated by whatever comes first in the alphabet, pretty much.
If you -DGOOGLE_CLOUD_CPP_ENABLE=logging
(without appengine
), then the google/cloud/logging
subdirectory will be responsible for generating logging_type
.
Part of the work for #8022 and #12428
Only
iam
remains for both...This change is