Automated fix for refs/heads/master (#35562)
PanCakes to the rescue!
We noticed that our 'sanity' test was going to fail, but we think we can fix that automatically, so we put together this PR to do just that!
If you'd like to opt-out of these PR's, add yourself to NO_AUTOFIX_USERS in .github/workflows/pr-auto-fix.yaml
Closes #35562
COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35562 from grpc:create-pull-request/patch-fbd47fd 571581e637
PiperOrigin-RevId: 598913968
This commit is contained in:
parent
d6579e32a0
commit
abacdf94a6
|
|
@ -16562,6 +16562,15 @@ if(gRPC_BUILD_TESTS)
|
|||
add_executable(http2_settings_test
|
||||
test/core/transport/chttp2/http2_settings_test.cc
|
||||
)
|
||||
if(WIN32 AND MSVC)
|
||||
if(BUILD_SHARED_LIBS)
|
||||
target_compile_definitions(http2_settings_test
|
||||
PRIVATE
|
||||
"GPR_DLL_IMPORTS"
|
||||
"GRPC_DLL_IMPORTS"
|
||||
)
|
||||
endif()
|
||||
endif()
|
||||
target_compile_features(http2_settings_test PUBLIC cxx_std_14)
|
||||
target_include_directories(http2_settings_test
|
||||
PRIVATE
|
||||
|
|
|
|||
Loading…
Reference in New Issue