Auto-Submit | +1 |
Commit-Queue | +0 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
LGTM with one question about the BUILD.gn dependencies. Thanks!
"//net/third_party/quiche:blind_sign_auth",
does this need to be in public_deps or would deps suffice?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
"//net/third_party/quiche:blind_sign_auth",
does this need to be in public_deps or would deps suffice?
My reading of go/build-gn-best-practices: because this target only has `sources`, all of the sources are treated as being `public`. Therefore, because the header `#include`s something from BlindSignAuth, that dependency needs to be in `public_deps`.
But I'm also brand new to this, so I could have easily misinterpreted things.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
+1 for //net/third_party/quiche
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Implement quiche::BlindSignTracingHooks
The hooks cause trace events to be emitted to a specific
perfetto::Track so that they can be viewed as a sequence, regardless of
which thread they run on. (Currently all BlindSignAuth operations
happen in a single thread, but this may not be the case for long.)
Also adds a new `ip_protection` Perfetto category.
These hooks will be wired up in a subsequent CL.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |