From 0a072a3ee6241a8c2ceb91fb7392411e05ff6bd7 Mon Sep 17 00:00:00 2001 From: ykai55 Date: Fri, 26 Jun 2026 14:32:59 +0800 Subject: [PATCH] [Optimize] Remove unused HEADER_SEARCH_PATHS The relative path ../../../.. in HEADER_SEARCH_PATHS is invalid, so this commit remove it for clarify. AutoSubmit: True --- platform/darwin/ios/lynx_service_api/BUILD.gn | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/platform/darwin/ios/lynx_service_api/BUILD.gn b/platform/darwin/ios/lynx_service_api/BUILD.gn index f1b2873eb9..550066b7b3 100644 --- a/platform/darwin/ios/lynx_service_api/BUILD.gn +++ b/platform/darwin/ios/lynx_service_api/BUILD.gn @@ -36,10 +36,7 @@ podspec_target("LynxServiceAPI_podspec") { CLANG_CXX_LANGUAGE_STANDARD = "gnu++17" OTHER_CPLUSPLUSFLAGS = "-fno-aligned-allocation -fno-c++-static-destructors -std=gnu++17" - HEADER_SEARCH_PATHS = [ - "../../../..", - "//", - ] + HEADER_SEARCH_PATHS = [ "//" ] } if (!is_debug) { pod_target_xcconfig.GCC_PREPROCESSOR_DEFINITIONS += [ "NDEBUG=1" ]