From d4f9dbefbaddac26d77728b3803517b27552e18f Mon Sep 17 00:00:00 2001 From: "Denny C. Dai" Date: Fri, 15 Oct 2021 16:09:32 -0700 Subject: [PATCH] [objc] Remove pre install header search path patch in core test (#27741) --- src/objective-c/tests/CoreTests/Podfile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/objective-c/tests/CoreTests/Podfile b/src/objective-c/tests/CoreTests/Podfile index c30e738be48..068d2e9e96f 100644 --- a/src/objective-c/tests/CoreTests/Podfile +++ b/src/objective-c/tests/CoreTests/Podfile @@ -14,18 +14,6 @@ target 'CoreTests' do grpc_deps end -pre_install do |installer| - grpc_core_spec = installer.pod_targets.find{|t| t.name.start_with?('gRPC-Core')}.root_spec - src_root = "$(PODS_ROOT)/../#{GRPC_LOCAL_SRC}" - grpc_core_spec.pod_target_xcconfig = { - 'GRPC_SRC_ROOT' => src_root, - 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"', - 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"', - 'USE_HEADERMAP' => 'NO', - 'ALWAYS_SEARCH_USER_PATHS' => 'NO', - } -end - post_install do |installer| installer.pods_project.targets.each do |target| if target.name == "CoreTests"