From ecf06b48f87f4db9f8410c1660b57532aac6432a Mon Sep 17 00:00:00 2001 From: "Wang.Renzhu" Date: Mon, 25 Jul 2022 10:21:23 +0800 Subject: [PATCH] FaceMesh Graph Run success --- .gitignore | 31 + .vscode/settings.json | 3 +- mediapipe/examples/ios/common/BUILD | 14 +- mediapipe/examples/ios/facedetectiongpu/BUILD | 20 +- mediapipe/render/module/beauty/BUILD | 53 +- .../render/module/beauty/{ios => }/Info.plist | 0 .../Configs/OlaFaceUnity.tulsigen | 89 - .../OlaFaceUnity.tulsiproj/project.tulsiconf | 12 - .../render/module/beauty/face_mesh_module.cc | 2 - .../render/module/beauty/face_mesh_module.h | 2 +- .../module/beauty/face_mesh_module_imp.cc | 57 +- .../module/beauty/face_mesh_module_imp.h | 1 + .../render/module/beauty/ios/OlaFaceUnity.h | 9 - .../render/module/beauty/ios/OlaFaceUnity.mm | 8 - .../.tulsi/Configs/OlaFaceUnity.tulsigen | 50 - .../.tulsi/Resources/StubInfoPlist.plist | 13 - .../StubWatchOS2AppExInfoPlist.plist | 17 - .../Resources/StubWatchOS2InfoPlist.plist | 15 - .../Resources/iOSXCTRunner.entitlements | 16 - .../Resources/macOSXCTRunner.entitlements | 33 - .../.tulsi/Scripts/apfs_clone_copy.py | 115 - .../.tulsi/Scripts/bazel_build.py | 1863 --- .../.tulsi/Scripts/bazel_build_events.py | 136 - .../.tulsi/Scripts/bazel_build_settings.py | 274 - .../.tulsi/Scripts/bazel_clean.sh | 54 - .../.tulsi/Scripts/bazel_options.py | 42 - .../.tulsi/Scripts/bootstrap_lldbinit.py | 187 - .../.tulsi/Scripts/clang_stub.sh | 37 - .../.tulsi/Scripts/install_genfiles.py | 103 - .../.tulsi/Scripts/ld_stub.sh | 33 - .../.tulsi/Scripts/swiftc_stub.py | 76 - .../.tulsi/Scripts/symbol_cache_schema.py | 119 - .../.tulsi/Scripts/tulsi_logging.py | 77 - .../.tulsi/Scripts/update_symbol_cache.py | 54 - .../.tulsi/Scripts/user_build.py | 111 - .../.tulsi/Utils/lldbinit | 6 - .../.tulsi/tulsi-execution-root | 1 - .../.tulsi/tulsi-output-base | 1 - .../.tulsi/tulsi-workspace | 1 - .../xcschemes/OlaFaceUnityFramework.xcscheme | 29 - .../xcschemes/_idx_Scheme.xcscheme | 592 - ...le-beauty-ios-OlaFaceUnityLibrary.xcscheme | 29 - .../project.pbxproj | 2243 +++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 0 .../UserInterfaceState.xcuserstate | Bin 0 -> 165833 bytes .../xcschemes/xcschememanagement.plist | 14 + .../OpipeBeautyModuleExample/AppDelegate.h | 14 + .../OpipeBeautyModuleExample/AppDelegate.m | 40 + .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 98 + .../Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 80 + .../OpipeBeautyModuleExample/Info.plist | 25 + .../OpipeBeautyModuleExample/SceneDelegate.h | 15 + .../OpipeBeautyModuleExample/SceneDelegate.m | 57 + .../OpipeBeautyModuleExample/ViewController.h | 14 + .../ViewController.mm | 273 + .../OpipeBeautyModuleExample/main.m | 18 + .../module/beauty/ios/{ => framework}/BUILD | 12 +- .../project.pbxproj | 12532 +++++++++------- .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 0 .../UserInterfaceState.xcuserstate | Bin 0 -> 14245 bytes .../WorkspaceSettings.xcsettings | 10 + .../xcschemes/OlaFaceUnityFramework.xcscheme | 29 + .../xcschemes/_idx_Scheme.xcscheme | 916 ++ ...ios-framework-OlaFaceUnityLibrary.xcscheme | 29 + .../xcschemes/xcschememanagement.plist | 32 + .../module/beauty/ios/framework/Info.plist | 22 + .../beauty/ios/framework/OlaFaceUnity.h | 17 + .../beauty/ios/framework/OlaFaceUnity.mm | 61 + mediapipe/render/module/common/BUILD | 50 +- mediapipe/render/module/common/ola_graph.cc | 12 +- 75 files changed, 11637 insertions(+), 9418 deletions(-) rename mediapipe/render/module/beauty/{ios => }/Info.plist (100%) delete mode 100644 mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/Configs/OlaFaceUnity.tulsigen delete mode 100644 mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/project.tulsiconf delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.h delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.mm delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Configs/OlaFaceUnity.tulsigen delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubInfoPlist.plist delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2AppExInfoPlist.plist delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2InfoPlist.plist delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/iOSXCTRunner.entitlements delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/macOSXCTRunner.entitlements delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/apfs_clone_copy.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_events.py delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_clean.sh delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_options.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bootstrap_lldbinit.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/clang_stub.sh delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/install_genfiles.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/ld_stub.sh delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/swiftc_stub.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/symbol_cache_schema.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/tulsi_logging.py delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/update_symbol_cache.py delete mode 100755 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/user_build.py delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit delete mode 120000 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root delete mode 120000 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-output-base delete mode 120000 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-workspace delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme delete mode 100644 mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename mediapipe/render/module/beauty/ios/{OlaFaceUnity.xcodeproj => example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj}/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (100%) create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.h create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.m create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/Contents.json create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/LaunchScreen.storyboard create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Info.plist create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.h create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.m create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.h create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm create mode 100644 mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/main.m rename mediapipe/render/module/beauty/ios/{ => framework}/BUILD (68%) rename mediapipe/render/module/beauty/ios/{OlaFaceUnity.xcodeproj => framework/FaceUnityFramework.xcodeproj}/project.pbxproj (50%) create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename mediapipe/render/module/beauty/ios/{OlaFaceUnity.xcodeproj => framework/FaceUnityFramework.xcodeproj}/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings (100%) create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/WorkspaceSettings.xcsettings create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme create mode 100644 mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 mediapipe/render/module/beauty/ios/framework/Info.plist create mode 100644 mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h create mode 100644 mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm diff --git a/.gitignore b/.gitignore index 18b9bf1a0..425fffafb 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,34 @@ mediapipe/examples/ios/playground/MediapipeiOSPlayground/MediapipeiOSPlayground. mediapipe/examples/ios/playground/MediapipeiOSPlayground/MediapipeiOSPlayground.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist mediapipe/examples/ios/common/MediapipeiOSCommonLibrary.tulsiproj/wangrenzhu.tulsiconf-user mediapipe/examples/ios/common/MediapipeiOSCommonLibrary.xcodeproj/.tulsi/Configs/wangrenzhu.tulsigen-user +mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/xcdebugger/Expressions.xcexplist +mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.tulsiproj/project.tulsiconf +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.tulsiproj/wangrenzhu.tulsiconf-user +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.tulsiproj/Configs/Develop.tulsigen +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/tulsi-execution-root +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/tulsi-output-base +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/tulsi-workspace +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Configs/FaceUnityFramework.tulsigen +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Configs/wangrenzhu.tulsigen-user +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Resources/iOSXCTRunner.entitlements +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Resources/macOSXCTRunner.entitlements +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Resources/StubInfoPlist.plist +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Resources/StubWatchOS2AppExInfoPlist.plist +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Resources/StubWatchOS2InfoPlist.plist +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/apfs_clone_copy.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bazel_build.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bazel_build_events.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bazel_build_settings.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bazel_clean.sh +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bazel_options.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/bootstrap_lldbinit.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/clang_stub.sh +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/install_genfiles.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/ld_stub.sh +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/swiftc_stub.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/symbol_cache_schema.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/tulsi_logging.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/update_symbol_cache.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Scripts/user_build.py +mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/.tulsi/Utils/lldbinit diff --git a/.vscode/settings.json b/.vscode/settings.json index f791b5751..cdccee4e5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -62,6 +62,7 @@ "semaphore": "cpp", "stop_token": "cpp", "thread": "cpp", - "target.hpp": "c" + "target.hpp": "c", + "calculator_framework.h": "c" } } \ No newline at end of file diff --git a/mediapipe/examples/ios/common/BUILD b/mediapipe/examples/ios/common/BUILD index 9aebfb11d..902a59f56 100644 --- a/mediapipe/examples/ios/common/BUILD +++ b/mediapipe/examples/ios/common/BUILD @@ -41,20 +41,20 @@ ios_framework( objc_library( name = "CommonMediaPipeAppLibrary", srcs = [ -# "AppDelegate.mm", + "AppDelegate.mm", "CommonViewController.mm", "CommonLibraryFactory.mm", -# "main.m", + "main.m", ], hdrs = [ -# "AppDelegate.h", + "AppDelegate.h", "CommonViewController.h", "CommonLibraryFactory.h", ], -# data = [ -# "Base.lproj/LaunchScreen.storyboard", -# "Base.lproj/Main.storyboard", -# ], + data = [ + "Base.lproj/LaunchScreen.storyboard", + "Base.lproj/Main.storyboard", + ], sdk_frameworks = [ "AVFoundation", "CoreGraphics", diff --git a/mediapipe/examples/ios/facedetectiongpu/BUILD b/mediapipe/examples/ios/facedetectiongpu/BUILD index 8ed689b4f..03acda86d 100644 --- a/mediapipe/examples/ios/facedetectiongpu/BUILD +++ b/mediapipe/examples/ios/facedetectiongpu/BUILD @@ -14,7 +14,7 @@ load( "@build_bazel_rules_apple//apple:ios.bzl", - "ios_application", + "ios_application", "ios_framework", "ios_static_framework" ) load( "//mediapipe/examples/ios:bundle_id.bzl", @@ -51,6 +51,24 @@ ios_application( ], ) +ios_framework( + name = "FaceDetectionGpuAppFramework", + bundle_id = "com.mediapipe.framework.facedetection", + infoplists = [ + "Info.plist", + ], + minimum_os_version = "11.0", + families = [ + "iphone", + "ipad", + ], + deps = [ + ":FaceDetectionGpuAppLibrary", + "@ios_opencv//:OpencvFramework", + ] +) + + objc_library( name = "FaceDetectionGpuAppLibrary", data = [ diff --git a/mediapipe/render/module/beauty/BUILD b/mediapipe/render/module/beauty/BUILD index f654b20ef..037746163 100644 --- a/mediapipe/render/module/beauty/BUILD +++ b/mediapipe/render/module/beauty/BUILD @@ -1,33 +1,58 @@ package(default_visibility = ["//visibility:public"]) -cc_library( - name = "FaceMeshGPULibrary", - srcs = [ +load( + "@build_bazel_rules_apple//apple:ios.bzl", + "ios_application", "ios_framework", "ios_static_framework" +) + + +ios_framework( + name = "FaceMeshGPUFramework", + bundle_id = "com.ola.framework.facemesh", + infoplists = [ + "Info.plist", + ], + minimum_os_version = "11.0", + families = [ + "iphone", + "ipad", + ], + deps = [ + ":FaceMeshGPULibrary", + "@ios_opencv//:OpencvFramework", + ], +) + +FACEUNITY_SRCS = [ "face_mesh_module.cc", "face_mesh_beauty_render.cc", "face_mesh_module_imp.cc", - ], - hdrs = [ +] + +FACEUNITY_HDRS = [ "face_mesh_module.h", "face_mesh_beauty_render.h", "face_mesh_module_imp.h", - ], - data = [ - "//mediapipe/graphs/face_mesh:face_mesh_mobile_gpu.binarypb", - "//mediapipe/modules/face_detection:face_detection_short_range.tflite", - "//mediapipe/modules/face_landmark:face_landmark_with_attention.tflite", - ], +] + +cc_library( + name = "FaceMeshGPULibrary", + srcs = FACEUNITY_SRCS, + hdrs = FACEUNITY_HDRS, visibility = ["//visibility:public"], + alwayslink = True, + linkstatic = True, deps = [ "//mediapipe/render/module/common:olamodule_common_library", + ] + select({ - "//mediapipe:ios_i386": [], - "//mediapipe:ios_x86_64": [], "//mediapipe:apple": [ "//mediapipe/render/core:core-ios", + "//mediapipe/graphs/face_mesh:mobile_calculators", + "//mediapipe/framework/formats:landmark_cc_proto", ], "//conditions:default": [ - # "//mediapipe/render/core:core", + "//mediapipe/render/core:core", "//mediapipe/graphs/face_mesh:mobile_calculators", "//mediapipe/framework/formats:landmark_cc_proto", ], diff --git a/mediapipe/render/module/beauty/ios/Info.plist b/mediapipe/render/module/beauty/Info.plist similarity index 100% rename from mediapipe/render/module/beauty/ios/Info.plist rename to mediapipe/render/module/beauty/Info.plist diff --git a/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/Configs/OlaFaceUnity.tulsigen b/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/Configs/OlaFaceUnity.tulsigen deleted file mode 100644 index a25b19300..000000000 --- a/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/Configs/OlaFaceUnity.tulsigen +++ /dev/null @@ -1,89 +0,0 @@ -{ - "additionalFilePaths" : [ - "mediapipe/render/module/beauty/ios/BUILD" - ], - "buildTargets" : [ - "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework", - "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary" - ], - "optionSet" : { - "BazelBuildOptionsDebug" : { - "p" : "$(inherited)" - }, - "BazelBuildOptionsRelease" : { - "p" : "$(inherited)" - }, - "BazelBuildStartupOptionsDebug" : { - "p" : "$(inherited)" - }, - "BazelBuildStartupOptionsRelease" : { - "p" : "$(inherited)" - }, - "BuildActionPostActionScript" : { - "p" : "$(inherited)" - }, - "BuildActionPreActionScript" : { - "p" : "$(inherited)" - }, - "CLANG_CXX_LANGUAGE_STANDARD" : { - "p" : "c++17" - }, - "CommandlineArguments" : { - "p" : "$(inherited)" - }, - "EnvironmentVariables" : { - "p" : "$(inherited)" - }, - "LaunchActionPostActionScript" : { - "p" : "$(inherited)" - }, - "LaunchActionPreActionScript" : { - "p" : "$(inherited)" - }, - "ProjectGenerationBazelStartupOptions" : { - "p" : "$(inherited)" - }, - "ProjectGenerationPlatformConfiguration" : { - "p" : "ios_arm64" - }, - "TestActionPostActionScript" : { - "p" : "$(inherited)" - }, - "TestActionPreActionScript" : { - "p" : "$(inherited)" - } - }, - "projectName" : "OlaFaceUnity", - "sourceFilters" : [ - "mediapipe/calculators", - "mediapipe/calculators/core", - "mediapipe/calculators/image", - "mediapipe/calculators/internal", - "mediapipe/calculators/tensor", - "mediapipe/calculators/tflite", - "mediapipe/calculators/util", - "mediapipe/gpu", - "mediapipe/graphs", - "mediapipe/graphs/face_mesh", - "mediapipe/graphs/face_mesh/calculators", - "mediapipe/graphs/face_mesh/subgraphs", - "mediapipe/modules", - "mediapipe/modules/face_detection", - "mediapipe/modules/face_landmark", - "mediapipe/objc", - "mediapipe/render", - "mediapipe/render/core", - "mediapipe/render/core/math", - "mediapipe/render/module", - "mediapipe/render/module/beauty", - "mediapipe/render/module/beauty/ios", - "mediapipe/render/module/common", - "mediapipe/util", - "mediapipe/util/android", - "mediapipe/util/android/file", - "mediapipe/util/android/file/base", - "mediapipe/util/tflite", - "mediapipe/util/tflite/operations", - "third_party" - ] -} diff --git a/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/project.tulsiconf b/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/project.tulsiconf deleted file mode 100644 index b32abedb9..000000000 --- a/mediapipe/render/module/beauty/OlaFaceUnity.tulsiproj/project.tulsiconf +++ /dev/null @@ -1,12 +0,0 @@ -{ - "configDefaults" : { - "optionSet" : { - - } - }, - "packages" : [ - "mediapipe/render/module/beauty/ios" - ], - "projectName" : "OlaFaceUnity", - "workspaceRoot" : "../../../../.." -} diff --git a/mediapipe/render/module/beauty/face_mesh_module.cc b/mediapipe/render/module/beauty/face_mesh_module.cc index d34080817..c47d657ed 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.cc +++ b/mediapipe/render/module/beauty/face_mesh_module.cc @@ -18,7 +18,5 @@ namespace Opipe { return instance; } - - } diff --git a/mediapipe/render/module/beauty/face_mesh_module.h b/mediapipe/render/module/beauty/face_mesh_module.h index eb481cb85..cba1b00f2 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.h +++ b/mediapipe/render/module/beauty/face_mesh_module.h @@ -19,7 +19,7 @@ namespace Opipe FaceMeshModule(); virtual ~FaceMeshModule(); - FaceMeshModule* create(); + static FaceMeshModule* create(); // 暂停渲染 diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.cc b/mediapipe/render/module/beauty/face_mesh_module_imp.cc index 41f6a3859..101bdc4c5 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.cc +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.cc @@ -1,4 +1,9 @@ #include "face_mesh_module_imp.h" +#include "mediapipe/framework/formats/landmark.pb.h" + +static const char* kNumFacesInputSidePacket = "num_faces"; +static const char* kLandmarksOutputStream = "multi_face_landmarks"; +static const char* kOutputVideo = "output_video"; namespace Opipe { @@ -21,7 +26,25 @@ namespace Opipe void FaceMeshCallFrameDelegate::outputPacket(OlaGraph *graph, const mediapipe::Packet &packet, MPPPacketType packetType, const std::string &streamName) { - +#if defined(__APPLE__) + if (streamName == kLandmarksOutputStream) { + if (packet.IsEmpty()) { + NSLog(@"[TS:%lld] No face landmarks", packet.Timestamp().Value()); + return; + } + const auto& multi_face_landmarks = packet.Get>(); + NSLog(@"[TS:%lld] Number of face instances with landmarks: %lu", packet.Timestamp().Value(), + multi_face_landmarks.size()); + for (int face_index = 0; face_index < multi_face_landmarks.size(); ++face_index) { + const auto& landmarks = multi_face_landmarks[face_index]; + NSLog(@"\tNumber of landmarks for face[%d]: %d", face_index, landmarks.landmark_size()); + for (int i = 0; i < landmarks.landmark_size(); ++i) { + NSLog(@"\t\tLandmark[%d]: (%f, %f, %f)", i, landmarks.landmark(i).x(), + landmarks.landmark(i).y(), landmarks.landmark(i).z()); + } + } + } +#endif } FaceMeshModuleIMP::FaceMeshModuleIMP() @@ -58,6 +81,12 @@ namespace Opipe _graph = std::make_unique(config); _graph->setDelegate(_delegate); + _graph->setSidePacket(mediapipe::MakePacket(1), kNumFacesInputSidePacket); + _graph->addFrameOutputStream(kLandmarksOutputStream, MPPPacketTypeRaw); +#if defined(__APPLE__) + _graph->addFrameOutputStream(kOutputVideo, MPPPacketTypePixelBuffer); +#endif + _isInit = true; return true; } @@ -68,9 +97,7 @@ namespace Opipe { return; } - _dispatch->runSync([&] { - _graph->start(); - }, Context::IOContext); + _isInit = _graph->start(); } void FaceMeshModuleIMP::stopModule() @@ -79,12 +106,10 @@ namespace Opipe { return; } - _dispatch->runSync([&] { - _graph->setDelegate(nullptr); - _graph->cancel(); - _graph->closeAllInputStreams(); - _graph->waitUntilDone(); - }, Context::IOContext); + _graph->setDelegate(nullptr); + _graph->cancel(); + _graph->closeAllInputStreams(); + _graph->waitUntilDone(); } #if defined(__APPLE__) @@ -95,12 +120,12 @@ namespace Opipe { return; } - _dispatch->runAsync([&] { - Timestamp ts(timeStamp); - _graph->sendPixelBuffer(pixelbuffer, "input_video", - MPPPacketTypePixelBuffer, - ts); - }, Context::IOContext); + Timestamp ts(timeStamp * 1000); + CVPixelBufferLockBaseAddress(pixelbuffer, 0); + _graph->sendPixelBuffer(pixelbuffer, "input_video", + MPPPacketTypePixelBuffer, + ts); + CVPixelBufferUnlockBaseAddress(pixelbuffer, 0); } #endif diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index e67853656..6b0f6a293 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -3,6 +3,7 @@ #include "mediapipe/render/module/common/ola_graph.h" #include "mediapipe/render/core/OpipeDispatch.hpp" + #include "face_mesh_module.h" namespace Opipe diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/OlaFaceUnity.h deleted file mode 100644 index c95c825fa..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.h +++ /dev/null @@ -1,9 +0,0 @@ -#import -#import - -@interface OlaFaceUnity : NSObject - - -//- (void)processVideoFrame:(CVPixelbufferRef)pixelbuffer; - -@end diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm deleted file mode 100644 index 184aac91a..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.mm +++ /dev/null @@ -1,8 +0,0 @@ -#import "OlaFaceUnity.h" - -@interface OlaFaceUnity() - -@end -@implementation OlaFaceUnity - -@end diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Configs/OlaFaceUnity.tulsigen b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Configs/OlaFaceUnity.tulsigen deleted file mode 100644 index 7651746cf..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Configs/OlaFaceUnity.tulsigen +++ /dev/null @@ -1,50 +0,0 @@ -{ - "additionalFilePaths" : [ - "mediapipe/render/module/beauty/ios/BUILD" - ], - "buildTargets" : [ - "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework", - "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary" - ], - "optionSet" : { - "CLANG_CXX_LANGUAGE_STANDARD" : { - "p" : "c++17" - }, - "ProjectGenerationPlatformConfiguration" : { - "p" : "ios_arm64" - } - }, - "projectName" : "OlaFaceUnity", - "sourceFilters" : [ - "mediapipe/calculators", - "mediapipe/calculators/core", - "mediapipe/calculators/image", - "mediapipe/calculators/internal", - "mediapipe/calculators/tensor", - "mediapipe/calculators/tflite", - "mediapipe/calculators/util", - "mediapipe/gpu", - "mediapipe/graphs", - "mediapipe/graphs/face_mesh", - "mediapipe/graphs/face_mesh/calculators", - "mediapipe/graphs/face_mesh/subgraphs", - "mediapipe/modules", - "mediapipe/modules/face_detection", - "mediapipe/modules/face_landmark", - "mediapipe/objc", - "mediapipe/render", - "mediapipe/render/core", - "mediapipe/render/core/math", - "mediapipe/render/module", - "mediapipe/render/module/beauty", - "mediapipe/render/module/beauty/ios", - "mediapipe/render/module/common", - "mediapipe/util", - "mediapipe/util/android", - "mediapipe/util/android/file", - "mediapipe/util/android/file/base", - "mediapipe/util/tflite", - "mediapipe/util/tflite/operations", - "third_party" - ] -} diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubInfoPlist.plist b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubInfoPlist.plist deleted file mode 100644 index 41851922a..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubInfoPlist.plist +++ /dev/null @@ -1,13 +0,0 @@ - - - - - CFBundleDisplayName - Stub Info.plist (do not edit) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - - - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2AppExInfoPlist.plist b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2AppExInfoPlist.plist deleted file mode 100644 index df0ca450e..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2AppExInfoPlist.plist +++ /dev/null @@ -1,17 +0,0 @@ - - - - - CFBundleDisplayName - Stub Info.plist for a watchOS app extension (do not edit) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - NSExtension - - NSExtensionPointIdentifier - com.apple.watchkit - - - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2InfoPlist.plist b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2InfoPlist.plist deleted file mode 100644 index 8b114b087..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/StubWatchOS2InfoPlist.plist +++ /dev/null @@ -1,15 +0,0 @@ - - - - - CFBundleDisplayName - Stub Info.plist for a watchOS app (do not edit) - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - WKWatchKitApp - - - - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/iOSXCTRunner.entitlements b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/iOSXCTRunner.entitlements deleted file mode 100644 index aa120ae1a..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/iOSXCTRunner.entitlements +++ /dev/null @@ -1,16 +0,0 @@ - - - - - application-identifier - $(TeamIdentifier).$(BundleIdentifier) - com.apple.developer.team-identifier - $(TeamIdentifier) - get-task-allow - - keychain-access-groups - - $(TeamIdentifier).$(BundleIdentifier) - - - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/macOSXCTRunner.entitlements b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/macOSXCTRunner.entitlements deleted file mode 100644 index 226c940ab..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Resources/macOSXCTRunner.entitlements +++ /dev/null @@ -1,33 +0,0 @@ - - - - - com.apple.application-identifier - $(BundleIdentifier) - com.apple.security.app-sandbox - - com.apple.security.network.client - - com.apple.security.temporary-exception.files.absolute-path.read-only - - / - / - - com.apple.security.temporary-exception.mach-lookup.global-name - - com.apple.coresymbolicationd - com.apple.testmanagerd - - com.apple.security.temporary-exception.mach-lookup.local-name - - com.apple.axserver - - com.apple.security.temporary-exception.sbpl - - (allow network-outbound (subpath "/private/tmp")) - (allow hid-control) - (allow signal) - (allow network-outbound (subpath "/private/tmp")) - - - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/apfs_clone_copy.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/apfs_clone_copy.py deleted file mode 100644 index ef9e3657c..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/apfs_clone_copy.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Copy on write with similar behavior to shutil.copy2, when available.""" - -import errno -import os -import re -import shutil -import subprocess - - -def _APFSCheck(volume_path): - """Reports if the given path belongs to an APFS volume. - - Args: - volume_path: Absolute path to the volume we want to test. - - Returns: - True if the volume has been formatted as APFS. - False if not. - """ - output = subprocess.check_output(['diskutil', 'info', volume_path], - encoding='utf-8') - # Match the output's "Type (Bundle): ..." entry to determine if apfs. - target_fs = re.search(r'(?:Type \(Bundle\):) +([^ ]+)', output) - if not target_fs: - return False - filesystem = target_fs.group(1) - if 'apfs' not in filesystem: - return False - return True - - -def _IsOnDevice(path, st_dev): - """Checks if a given path belongs to a FS on a given device. - - Args: - path: a filesystem path, possibly to a non-existent file or directory. - st_dev: the ID of a device with a filesystem, as in os.stat(...).st_dev. - - Returns: - True if the path or (if the path does not exist) its closest existing - ancestor exists on the device. - False if not. - """ - if not os.path.isabs(path): - path = os.path.abspath(path) - try: - return os.stat(path).st_dev == st_dev - except OSError as err: - if err.errno == errno.ENOENT: - dirname = os.path.dirname(path) - if len(dirname) < len(path): - return _IsOnDevice(dirname, st_dev) - return False - -# At launch, determine if the root filesystem is APFS. -IS_ROOT_APFS = _APFSCheck('/') - -# At launch, determine the root filesystem device ID. -ROOT_ST_DEV = os.stat('/').st_dev - - -def CopyOnWrite(source, dest, tree=False): - """Invokes cp -c to perform a CoW copy2 of all files, like clonefile(2). - - Args: - source: Source path to copy. - dest: Destination for copying. - tree: "True" to copy all child files and folders, like shutil.copytree(). - """ - # Note that this is based on cp, so permissions are copied, unlike shutil's - # copyfile method. - # - # Identical to shutil's copy2 method, used by shutil's move and copytree. - cmd = ['cp'] - if IS_ROOT_APFS and _IsOnDevice(source, ROOT_ST_DEV) and _IsOnDevice( - dest, ROOT_ST_DEV): - # Copy on write (clone) is possible if both source and destination reside in - # the same APFS volume. For simplicity, and since checking FS type can be - # expensive, allow CoW only for the root volume. - cmd.append('-c') - if tree: - # Copy recursively if indicated. - cmd.append('-R') - # Follow symlinks, emulating shutil.copytree defaults. - cmd.append('-L') - # Preserve all possible file attributes and permissions (copystat/copy2). - cmd.extend(['-p', source, dest]) - try: - # Attempt the copy action with cp. - subprocess.check_output(cmd) - except subprocess.CalledProcessError: - # If -c is not supported, use shutil's copy2-based methods directly. - if tree: - # A partial tree might be left over composed of dirs but no files. - # Remove them with rmtree so that they don't interfere with copytree. - if os.path.exists(dest): - shutil.rmtree(dest) - shutil.copytree(source, dest) - else: - shutil.copy2(source, dest) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build.py deleted file mode 100755 index 00d1a01f7..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build.py +++ /dev/null @@ -1,1863 +0,0 @@ -#!/usr/bin/python3 -# -*- coding: utf-8 -*- -# Copyright 2016 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Bridge between Xcode and Bazel for the "build" action.""" - -import atexit -import errno -import fcntl -import hashlib -import inspect -import io -import json -import os -import pipes -import plistlib -import re -import shutil -import signal -import subprocess -import sys -import textwrap -import threading -import time -import zipfile - -from apfs_clone_copy import CopyOnWrite -import bazel_build_events -import bazel_build_settings -import bazel_options -from bootstrap_lldbinit import BootstrapLLDBInit -from bootstrap_lldbinit import TULSI_LLDBINIT_FILE -import tulsi_logging -from update_symbol_cache import UpdateSymbolCache - - -# List of frameworks that Xcode injects into test host targets that should be -# re-signed when running the tests on devices. -XCODE_INJECTED_FRAMEWORKS = [ - 'libXCTestBundleInject.dylib', - 'libXCTestSwiftSupport.dylib', - 'IDEBundleInjection.framework', - 'XCTAutomationSupport.framework', - 'XCTest.framework', - 'XCTestCore.framework', - 'XCUnit.framework', - 'XCUIAutomation.framework', -] - -_logger = None - - -def _PrintUnbuffered(msg): - sys.stdout.write('%s\n' % msg) - sys.stdout.flush() - - -def _PrintXcodeWarning(msg): - sys.stdout.write(':: warning: %s\n' % msg) - sys.stdout.flush() - - -def _PrintXcodeError(msg): - sys.stderr.write(':: error: %s\n' % msg) - sys.stderr.flush() - - -def _Fatal(msg, fatal_frame=None): - """Print a fatal error pointing to the failure line inside the script.""" - if not fatal_frame: - fatal_frame = inspect.currentframe().f_back - filename, line_number, _, _, _ = inspect.getframeinfo(fatal_frame) - _PrintUnbuffered('%s:%d: error: %s' % (os.path.abspath(filename), - line_number, msg)) - - -CLEANUP_BEP_FILE_AT_EXIT = False - - -# Function to be called atexit to clean up the BEP file if one is present. -# This is especially useful in cases of abnormal termination (such as what -# happens when Xcode is killed). -def _BEPFileExitCleanup(bep_file_path): - if not CLEANUP_BEP_FILE_AT_EXIT: - return - try: - os.remove(bep_file_path) - except OSError as e: - _PrintXcodeWarning('Failed to remove BEP file from %s. Error: %s' % - (bep_file_path, e.strerror)) - - -def _InterruptHandler(signum, frame): - """Gracefully exit on SIGINT.""" - del signum, frame # Unused. - _PrintUnbuffered('Caught interrupt signal. Exiting...') - sys.exit(0) - - -def _FindDefaultLldbInit(): - """Returns the path to the primary lldbinit file that Xcode would load or None when no file exists.""" - for lldbinit_shortpath in ['~/.lldbinit-Xcode', '~/.lldbinit']: - lldbinit_path = os.path.expanduser(lldbinit_shortpath) - if os.path.isfile(lldbinit_path): - return lldbinit_path - - return None - - -class Timer(object): - """Simple profiler.""" - - def __init__(self, action_name, action_id): - """Creates a new Timer object. - - Args: - action_name: A human-readable action name, shown in the build log. - action_id: A machine-readable action identifier, can be used for metrics. - - Returns: - A Timer instance. - - Raises: - RuntimeError: if Timer is created without initializing _logger. - """ - if _logger is None: - raise RuntimeError('Attempted to create Timer without a logger.') - self.action_name = action_name - self.action_id = action_id - self._start = None - - def Start(self): - self._start = time.time() - return self - - def End(self, log_absolute_times=False): - end = time.time() - seconds = end - self._start - if log_absolute_times: - _logger.log_action(self.action_name, self.action_id, seconds, - self._start, end) - else: - _logger.log_action(self.action_name, self.action_id, seconds) - - -def _LockFileCreate(): - # This relies on this script running at the root of the bazel workspace. - cwd = os.environ['PWD'] - cwd_hash = hashlib.sha256(cwd.encode()).hexdigest() - return '/tmp/tulsi_bazel_build_{}.lock'.format(cwd_hash) - - -# Function to be called atexit to release the file lock on script termination. -def _LockFileExitCleanup(lock_file_handle): - lock_file_handle.close() - - -def _LockFileAcquire(lock_path): - """Force script to wait on file lock to serialize build target actions. - - Args: - lock_path: Path to the lock file. - """ - _PrintUnbuffered('Queuing Tulsi build...') - lockfile = open(lock_path, 'w') - # Register "fclose(...)" as early as possible, before acquiring lock. - atexit.register(_LockFileExitCleanup, lockfile) - while True: - try: - fcntl.lockf(lockfile, fcntl.LOCK_EX | fcntl.LOCK_NB) - break - except IOError as err: - if err.errno != errno.EAGAIN: - raise - else: - time.sleep(0.1) - - -class CodesignBundleAttributes(object): - """Wrapper class for codesigning attributes of a signed bundle.""" - - # List of codesigning attributes that this script requires. - _ATTRIBUTES = ['Authority', 'Identifier', 'TeamIdentifier'] - - def __init__(self, codesign_output): - self.attributes = {} - - pending_attributes = list(self._ATTRIBUTES) - for line in codesign_output.split('\n'): - if not pending_attributes: - break - - for attribute in pending_attributes: - if line.startswith(attribute): - value = line[len(attribute) + 1:] - self.attributes[attribute] = value - pending_attributes.remove(attribute) - break - - for attribute in self._ATTRIBUTES: - if attribute not in self.attributes: - _PrintXcodeError( - 'Failed to extract %s from %s.\n' % (attribute, codesign_output)) - - def Get(self, attribute): - """Returns the value for the given attribute, or None if it wasn't found.""" - value = self.attributes.get(attribute) - if attribute not in self._ATTRIBUTES: - _PrintXcodeError( - 'Attribute %s not declared to be parsed. ' % attribute + - 'Available attributes are %s.\n' % self._ATTRIBUTES) - return value - - -class _OptionsParser(object): - """Handles parsing script options.""" - - # List of all supported Xcode configurations. - KNOWN_CONFIGS = ['Debug', 'Release'] - - def __init__(self, build_settings, sdk_version, platform_name, arch): - self.targets = [] - self.build_settings = build_settings - self.common_build_options = [ - '--verbose_failures', - '--bes_outerr_buffer_size=0', # Don't buffer Bazel output. - ] - - self.sdk_version = sdk_version - self.platform_name = platform_name - - if self.platform_name.startswith('watch'): - config_platform = 'watchos' - elif self.platform_name.startswith('iphone'): - config_platform = 'ios' - elif self.platform_name.startswith('macos'): - config_platform = 'macos' - elif self.platform_name.startswith('appletv'): - config_platform = 'tvos' - else: - self._WarnUnknownPlatform() - config_platform = 'ios' - self.bazel_build_config = '{}_{}'.format(config_platform, arch) - if self.bazel_build_config not in build_settings.platformConfigFlags: - _PrintXcodeError('Unknown active compilation target of "{}". ' - 'Please report a Tulsi bug.' - .format(self.bazel_build_config)) - sys.exit(1) - - self.verbose = 0 - self.bazel_bin_path = 'bazel-bin' - self.bazel_executable = None - - @staticmethod - def _UsageMessage(): - """Returns a usage message string.""" - usage = textwrap.dedent("""\ - Usage: %s [ ...] --bazel [options] - - Where options are: - --verbose [-v] - Increments the verbosity of the script by one level. This argument - may be provided multiple times to enable additional output levels. - - --bazel_bin_path - Path at which Bazel-generated artifacts may be retrieved. - """ % sys.argv[0]) - - return usage - - def ParseOptions(self, args): - """Parses arguments, returning (message, exit_code).""" - - bazel_executable_index = args.index('--bazel') - - self.targets = args[:bazel_executable_index] - if not self.targets or len(args) < bazel_executable_index + 2: - return (self._UsageMessage(), 10) - self.bazel_executable = args[bazel_executable_index + 1] - - return self._ParseVariableOptions(args[bazel_executable_index + 2:]) - - def GetBaseFlagsForTargets(self, config): - is_debug = config == 'Debug' - return self.build_settings.flags_for_target( - self.targets[0], - is_debug, - self.bazel_build_config) - - def GetEnabledFeatures(self): - """Returns a list of enabled Bazel features for the active target.""" - return self.build_settings.features_for_target(self.targets[0]) - - def GetBazelOptions(self, config): - """Returns the full set of build options for the given config.""" - bazel, start_up, build = self.GetBaseFlagsForTargets(config) - all_build = [] - all_build.extend(self.common_build_options) - all_build.extend(build) - - xcode_version_flag = self._ComputeXcodeVersionFlag() - if xcode_version_flag: - all_build.append('--xcode_version=%s' % xcode_version_flag) - - return bazel, start_up, all_build - - def _WarnUnknownPlatform(self): - _PrintUnbuffered('Warning: unknown platform "%s" will be treated as ' - 'iOS' % self.platform_name) - - def _ParseVariableOptions(self, args): - """Parses flag-based args, returning (message, exit_code).""" - - verbose_re = re.compile('-(v+)$') - - while args: - arg = args[0] - args = args[1:] - - if arg == '--bazel_bin_path': - if not args: - return ('Missing required parameter for %s' % arg, 2) - self.bazel_bin_path = args[0] - args = args[1:] - - elif arg == '--verbose': - self.verbose += 1 - - else: - match = verbose_re.match(arg) - if match: - self.verbose += len(match.group(1)) - else: - return ('Unknown option "%s"\n%s' % (arg, self._UsageMessage()), 1) - - return (None, 0) - - @staticmethod - def _GetXcodeBuildVersionString(): - """Returns Xcode build version from the environment as a string.""" - return os.environ['XCODE_PRODUCT_BUILD_VERSION'] - - @staticmethod - def _GetXcodeVersionString(): - """Returns Xcode version info from the Xcode's version.plist. - - Just reading XCODE_VERSION_ACTUAL from the environment seems like - a more reasonable implementation, but has shown to be unreliable, - at least when using Xcode 11.3.1 and opening the project within an - Xcode workspace. - """ - developer_dir = os.environ['DEVELOPER_DIR'] - app_dir = developer_dir.split('.app')[0] + '.app' - version_plist_path = os.path.join(app_dir, 'Contents', 'version.plist') - try: - with open(version_plist_path, 'rb') as f: - plist = plistlib.load(f) - except IOError: - _PrintXcodeWarning('Tulsi cannot determine Xcode version, error ' - 'reading from {}'.format(version_plist_path)) - return None - try: - # Example: "11.3.1", "11.3", "11.0" - key = 'CFBundleShortVersionString' - version_string = plist[key] - except KeyError: - _PrintXcodeWarning('Tulsi cannot determine Xcode version from {}, no ' - '"{}" key'.format(version_plist_path, key)) - return None - - # But we need to normalize to major.minor.patch, e.g. 11.3.0 or - # 11.0.0, so add one or two ".0" if needed (two just in case - # there is ever just a single version number like "12") - dots_count = version_string.count('.') - dot_zeroes_to_add = 2 - dots_count - version_string += '.0' * dot_zeroes_to_add - return version_string - - @staticmethod - def _ComputeXcodeVersionFlag(): - """Returns a string for the --xcode_version build flag, if any. - - The flag should be used if the active Xcode version was not the same one - used during project generation. - - Note this a best-attempt only; this may not be accurate as Bazel itself - caches the active DEVELOPER_DIR path and the user may have changed their - installed Xcode version. - """ - xcode_version = _OptionsParser._GetXcodeVersionString() - build_version = _OptionsParser._GetXcodeBuildVersionString() - - if not xcode_version or not build_version: - return None - - # Of the form Major.Minor.Fix.Build (new Bazel form) or Major.Min.Fix (old). - full_bazel_version = os.environ.get('TULSI_XCODE_VERSION') - if not full_bazel_version: # Unexpected: Tulsi gen didn't set the flag. - return xcode_version - - # Newer Bazel versions specify the version as Major.Minor.Fix.Build. - if full_bazel_version.count('.') == 3: - components = full_bazel_version.rsplit('.', 1) - bazel_xcode_version = components[0] - bazel_build_version = components[1] - - if (xcode_version != bazel_xcode_version - or build_version != bazel_build_version): - return '{}.{}'.format(xcode_version, build_version) - else: - return None - else: # Old version of Bazel. We need to use form Major.Minor.Fix. - return xcode_version if xcode_version != full_bazel_version else None - - -class BazelBuildBridge(object): - """Handles invoking Bazel and unpacking generated binaries.""" - - BUILD_EVENTS_FILE = 'build_events.json' - - XCODE_MODULE_CACHE_DIRECTORY = os.path.expanduser( - '~/Library/Developer/Xcode/DerivedData/ModuleCache.noindex') - MODULE_CACHE_PRUNER_EXECUTABLE = os.path.expanduser( - '~/Library/Application Support/Tulsi/Scripts/module_cache_pruner') - - def __init__(self, build_settings): - self.build_settings = build_settings - self.verbose = 0 - self.bazel_bin_path = None - self.codesign_attributes = {} - - self.codesigning_folder_path = os.environ['CODESIGNING_FOLDER_PATH'] - - self.xcode_action = os.environ['ACTION'] # The Xcode build action. - # When invoked as an external build system script, Xcode will set ACTION to - # an empty string. - if not self.xcode_action: - self.xcode_action = 'build' - - if int(os.environ['XCODE_VERSION_MAJOR']) < 900: - xcode_build_version = os.environ['XCODE_PRODUCT_BUILD_VERSION'] - _PrintXcodeWarning('Tulsi officially supports Xcode 9+. You are using an ' - 'earlier Xcode, build %s.' % xcode_build_version) - - self.tulsi_version = os.environ.get('TULSI_VERSION', 'UNKNOWN') - - self.custom_lldbinit = os.environ.get('TULSI_LLDBINIT_FILE') - - # TODO(b/69857078): Remove this when wrapped_clang is updated. - self.direct_debug_prefix_map = False - self.normalized_prefix_map = False - - self.update_symbol_cache = None - if os.environ.get('TULSI_USE_BAZEL_CACHE_READER') is not None: - self.update_symbol_cache = UpdateSymbolCache() - - # Path into which generated artifacts should be copied. - self.built_products_dir = os.environ['BUILT_PRODUCTS_DIR'] - # Path where Xcode expects generated sources to be placed. - self.derived_sources_folder_path = os.environ.get('DERIVED_SOURCES_DIR') - # Full name of the target artifact (e.g., "MyApp.app" or "Test.xctest"). - self.full_product_name = os.environ['FULL_PRODUCT_NAME'] - # Whether to generate runfiles for this target. - self.gen_runfiles = os.environ.get('GENERATE_RUNFILES') - # Target SDK version. - self.sdk_version = os.environ.get('SDK_VERSION') - # TEST_HOST for unit tests. - self.test_host_binary = os.environ.get('TEST_HOST') - # Whether this target is a test or not. - self.is_test = os.environ.get('WRAPPER_EXTENSION') == 'xctest' - # Target platform. - self.platform_name = os.environ['PLATFORM_NAME'] - # Type of the target artifact. - self.product_type = os.environ['PRODUCT_TYPE'] - # Path to the parent of the xcodeproj bundle. - self.project_dir = os.environ['PROJECT_DIR'] - # Path to the xcodeproj bundle. - self.project_file_path = os.environ['PROJECT_FILE_PATH'] - # Path to the directory containing the WORKSPACE file. - self.workspace_root = os.path.abspath(os.environ['TULSI_WR']) - # Set to the name of the generated bundle for bundle-type targets, None for - # single file targets (like static libraries). - self.wrapper_name = os.environ.get('WRAPPER_NAME') - self.wrapper_suffix = os.environ.get('WRAPPER_SUFFIX', '') - - # Path where Xcode expects the artifacts to be written to. This is not the - # codesigning_path as device vs simulator builds have different signing - # requirements, so Xcode expects different paths to be signed. This is - # mostly apparent on XCUITests where simulator builds set the codesigning - # path to be the .xctest bundle, but for device builds it is actually the - # UI runner app (since it needs to be codesigned to run on the device.) The - # FULL_PRODUCT_NAME variable is a stable path on where to put the expected - # artifacts. For static libraries (objc_library, swift_library), - # FULL_PRODUCT_NAME corresponds to the .a file name, which coincides with - # the expected location for a single artifact output. - # TODO(b/35811023): Check these paths are still valid. - self.artifact_output_path = os.path.join( - os.environ['TARGET_BUILD_DIR'], - os.environ['FULL_PRODUCT_NAME']) - - # Path to where Xcode expects the binary to be placed. - self.binary_path = os.path.join( - os.environ['TARGET_BUILD_DIR'], os.environ['EXECUTABLE_PATH']) - - self.is_simulator = self.platform_name.endswith('simulator') - self.codesigning_allowed = not self.is_simulator - - # Target architecture. Must be defined for correct setting of - # the --cpu flag. Note that Xcode will set multiple values in - # ARCHS when building for a Generic Device. - archs = os.environ.get('ARCHS') - if not archs: - _PrintXcodeError('Tulsi requires env variable ARCHS to be ' - 'set. Please file a bug against Tulsi.') - sys.exit(1) - arch = archs.split()[-1] - if self.is_simulator and arch == "arm64": - self.arch = "sim_" + arch - else: - self.arch = arch - - if self.codesigning_allowed: - platform_prefix = 'iOS' - if self.platform_name.startswith('macos'): - platform_prefix = 'macOS' - entitlements_filename = '%sXCTRunner.entitlements' % platform_prefix - self.runner_entitlements_template = os.path.join(self.project_file_path, - '.tulsi', - 'Resources', - entitlements_filename) - - self.bazel_executable = None - - def Run(self, args): - """Executes a Bazel build based on the environment and given arguments.""" - if self.xcode_action != 'build': - sys.stderr.write('Xcode action is %s, ignoring.' % self.xcode_action) - return 0 - - parser = _OptionsParser(self.build_settings, - self.sdk_version, - self.platform_name, - self.arch) - timer = Timer('Parsing options', 'parsing_options').Start() - message, exit_code = parser.ParseOptions(args[1:]) - timer.End() - if exit_code: - _PrintXcodeError('Option parsing failed: %s' % message) - return exit_code - - self.verbose = parser.verbose - self.bazel_bin_path = os.path.abspath(parser.bazel_bin_path) - self.bazel_executable = parser.bazel_executable - self.bazel_exec_root = self.build_settings.bazelExecRoot - self.bazel_output_base = self.build_settings.bazelOutputBase - - # Update feature flags. - features = parser.GetEnabledFeatures() - self.direct_debug_prefix_map = 'DirectDebugPrefixMap' in features - self.normalized_prefix_map = 'DebugPathNormalization' in features - - # Path to the Build Events JSON file uses pid and is removed if the - # build is successful. - filename = '%d_%s' % (os.getpid(), BazelBuildBridge.BUILD_EVENTS_FILE) - self.build_events_file_path = os.path.join( - self.project_file_path, - '.tulsi', - filename) - - (command, retval) = self._BuildBazelCommand(parser) - if retval: - return retval - - timer = Timer('Running Bazel', 'running_bazel').Start() - exit_code, outputs = self._RunBazelAndPatchOutput(command) - timer.End() - if exit_code: - _Fatal('Bazel build failed with exit code %d. Please check the build ' - 'log in Report Navigator (⌘9) for more information.' - % exit_code) - return exit_code - - post_bazel_timer = Timer('Total Tulsi Post-Bazel time', 'total_post_bazel') - post_bazel_timer.Start() - - - # This needs to run after `bazel build`, since it depends on the Bazel - # output directories - - if not os.path.exists(self.bazel_exec_root): - _Fatal('No Bazel execution root was found at %r. Debugging experience ' - 'will be compromised. Please report a Tulsi bug.' - % self.bazel_exec_root) - return 404 - if not os.path.exists(self.bazel_output_base): - _Fatal('No Bazel output base was found at %r. Editing experience ' - 'will be compromised for external workspaces. Please report a' - ' Tulsi bug.' - % self.bazel_output_base) - return 404 - - exit_code = self._LinkTulsiToBazel('tulsi-execution-root', self.bazel_exec_root) - if exit_code: - return exit_code - # Old versions of Tulsi mis-referred to the execution root as the workspace. - # We preserve the old symlink name for backwards compatibility. - exit_code = self._LinkTulsiToBazel('tulsi-workspace', self.bazel_exec_root) - if exit_code: - return exit_code - exit_code = self._LinkTulsiToBazel( - 'tulsi-output-base', self.bazel_output_base) - if exit_code: - return exit_code - - - exit_code, outputs_data = self._ExtractAspectOutputsData(outputs) - if exit_code: - return exit_code - - # Generated headers are installed on a thread since we are launching - # a separate process to do so. This gives us clean timings. - install_thread = threading.Thread( - target=self._InstallGeneratedHeaders, args=(outputs,)) - install_thread.start() - timer = Timer('Installing artifacts', 'installing_artifacts').Start() - exit_code = self._InstallArtifact(outputs_data) - timer.End() - install_thread.join() - if exit_code: - return exit_code - - exit_code, dsym_paths = self._InstallDSYMBundles( - self.built_products_dir, outputs_data) - if exit_code: - return exit_code - - if not dsym_paths: - # Clean any bundles from a previous build that can interfere with - # debugging in LLDB. - self._CleanExistingDSYMs() - else: - for path in dsym_paths: - # Starting with Xcode 9.x, a plist based remapping exists for dSYM - # bundles that works with Swift as well as (Obj-)C(++). - # - # This solution also works for Xcode 8.x for (Obj-)C(++) but not - # for Swift. - timer = Timer('Adding remappings as plists to dSYM', - 'plist_dsym').Start() - exit_code = self._PlistdSYMPaths(path) - timer.End() - if exit_code: - _PrintXcodeError('Remapping dSYMs process returned %i, please ' - 'report a Tulsi bug and attach a full Xcode ' - 'build log.' % exit_code) - return exit_code - - # Starting with Xcode 7.3, XCTests inject several supporting frameworks - # into the test host that need to be signed with the same identity as - # the host itself. - if (self.is_test and not self.platform_name.startswith('macos') and - self.codesigning_allowed): - exit_code = self._ResignTestArtifacts() - if exit_code: - return exit_code - - self._PruneLLDBModuleCache(outputs) - - # Starting with Xcode 8, .lldbinit files are honored during Xcode debugging - # sessions. This allows use of the target.source-map field to remap the - # debug symbol paths encoded in the binary to the paths expected by Xcode. - # - # This will not work with dSYM bundles, or a direct -fdebug-prefix-map from - # the Bazel-built locations to Xcode-visible sources. - timer = Timer('Updating .lldbinit', 'updating_lldbinit').Start() - clear_source_map = dsym_paths or self.direct_debug_prefix_map - exit_code = self._UpdateLLDBInit(clear_source_map) - timer.End() - if exit_code: - _PrintXcodeWarning('Updating .lldbinit action failed with code %d' % - exit_code) - - post_bazel_timer.End(log_absolute_times=True) - - return 0 - - def _BuildBazelCommand(self, options): - """Builds up a commandline string suitable for running Bazel.""" - configuration = os.environ['CONFIGURATION'] - # Treat the special testrunner build config as a Debug compile. - test_runner_config_prefix = '__TulsiTestRunner_' - if configuration.startswith(test_runner_config_prefix): - configuration = configuration[len(test_runner_config_prefix):] - elif os.environ.get('TULSI_TEST_RUNNER_ONLY') == 'YES': - _PrintXcodeError('Building test targets with configuration "%s" is not ' - 'allowed. Please use the "Test" action or "Build for" > ' - '"Testing" instead.' % configuration) - return (None, 1) - - if configuration not in _OptionsParser.KNOWN_CONFIGS: - _PrintXcodeError('Unknown build configuration "%s"' % configuration) - return (None, 1) - - bazel, start_up, build = options.GetBazelOptions(configuration) - bazel_command = [bazel] - bazel_command.extend(start_up) - bazel_command.append('build') - bazel_command.extend(build) - - bazel_command.extend([ - # The following flags are used by Tulsi to identify itself and read - # build information from Bazel. They shold not affect Bazel anaylsis - # caching. - '--tool_tag=tulsi:bazel_build', - '--build_event_json_file=%s' % self.build_events_file_path, - '--noexperimental_build_event_json_file_path_conversion', - '--aspects', '@tulsi//:tulsi/tulsi_aspects.bzl%tulsi_outputs_aspect']) - - bazel_command.append('--output_groups=+tulsi_outputs') - bazel_command.extend(options.targets) - - extra_options = bazel_options.BazelOptions(os.environ) - bazel_command.extend(extra_options.bazel_feature_flags()) - - return (bazel_command, 0) - - def _RunBazelAndPatchOutput(self, command): - """Runs subprocess command, patching output as it's received.""" - self._PrintVerbose('Running "%s", patching output for workspace root at ' - '"%s" with project path at "%s".' % - (' '.join([pipes.quote(x) for x in command]), - self.workspace_root, - self.project_dir)) - # Clean up bazel output to make it look better in Xcode. - bazel_line_regex = re.compile( - r'(INFO|DEBUG|WARNING|ERROR|FAILED): ([^:]+:\d+:(?:\d+:)?)\s+(.+)') - - bazel_generic_regex = re.compile(r'(INFO|DEBUG|WARNING|ERROR|FAILED): (.*)') - - def PatchBazelDiagnosticStatements(output_line): - """Make Bazel output more Xcode friendly.""" - - def BazelLabelToXcodeLabel(bazel_label): - """Map Bazel labels to xcode labels for build output.""" - xcode_labels = { - 'INFO': 'note', - 'DEBUG': 'note', - 'WARNING': 'warning', - 'ERROR': 'error', - 'FAILED': 'error' - } - return xcode_labels.get(bazel_label, bazel_label) - - match = bazel_line_regex.match(output_line) - if match: - xcode_label = BazelLabelToXcodeLabel(match.group(1)) - output_line = '%s %s: %s' % (match.group(2), xcode_label, - match.group(3)) - else: - match = bazel_generic_regex.match(output_line) - if match: - xcode_label = BazelLabelToXcodeLabel(match.group(1)) - output_line = '%s: %s' % (xcode_label, match.group(2)) - return output_line - - if self.workspace_root != self.project_dir: - # Match (likely) filename:line_number: lines. - xcode_parsable_line_regex = re.compile(r'([^/][^:]+):\d+:') - - def PatchOutputLine(output_line): - output_line = PatchBazelDiagnosticStatements(output_line) - if xcode_parsable_line_regex.match(output_line): - output_line = '%s/%s' % (self.workspace_root, output_line) - return output_line - patch_xcode_parsable_line = PatchOutputLine - else: - patch_xcode_parsable_line = PatchBazelDiagnosticStatements - - def HandleOutput(output): - for line in output.splitlines(): - _logger.log_bazel_message(patch_xcode_parsable_line(line)) - - def WatcherUpdate(watcher): - """Processes any new events in the given watcher. - - Args: - watcher: a BazelBuildEventsWatcher object. - - Returns: - A list of new tulsiout file names seen. - """ - new_events = watcher.check_for_new_events() - new_outputs = [] - for build_event in new_events: - if build_event.stderr: - HandleOutput(build_event.stderr) - if build_event.stdout: - HandleOutput(build_event.stdout) - if build_event.files: - outputs = [x for x in build_event.files if x.endswith('.tulsiouts')] - new_outputs.extend(outputs) - return new_outputs - - def ReaderThread(file_handle, out_buffer): - out_buffer.append(file_handle.read()) - file_handle.close() - - # Make sure the BEP JSON file exists and is empty. We do this to prevent - # any sort of race between the watcher, bazel, and the old file contents. - open(self.build_events_file_path, 'w').close() - - # Capture the stderr and stdout from Bazel. We only display it if it we're - # unable to read any BEP events. - process = subprocess.Popen( - command, - stdout=subprocess.PIPE, - stderr=subprocess.STDOUT, - universal_newlines=True, - bufsize=1) - - # Register atexit function to clean up BEP file. - atexit.register(_BEPFileExitCleanup, self.build_events_file_path) - global CLEANUP_BEP_FILE_AT_EXIT - CLEANUP_BEP_FILE_AT_EXIT = True - - # Start capturing output from Bazel. - reader_buffer = [] - reader_thread = threading.Thread(target=ReaderThread, - args=(process.stdout, reader_buffer)) - reader_thread.daemon = True - reader_thread.start() - - with io.open(self.build_events_file_path, 'r', -1, 'utf-8', 'ignore' - ) as bep_file: - watcher = bazel_build_events.BazelBuildEventsWatcher(bep_file, - _PrintXcodeWarning) - output_locations = [] - while process.returncode is None: - output_locations.extend(WatcherUpdate(watcher)) - time.sleep(0.1) - process.poll() - - output_locations.extend(WatcherUpdate(watcher)) - - # If BEP JSON parsing failed, we should display the raw stdout and - # stderr from Bazel. - reader_thread.join() - if not watcher.has_read_events(): - HandleOutput(reader_buffer[0]) - - if process.returncode == 0 and not output_locations: - CLEANUP_BEP_FILE_AT_EXIT = False - _PrintXcodeError('Unable to find location of the .tulsiouts file.' - 'Please report this as a Tulsi bug, including the' - 'contents of %s.' % self.build_events_file_path) - return 1, output_locations - return process.returncode, output_locations - - def _ExtractAspectOutputsData(self, output_files): - """Converts aspect output from paths to json to a list of dictionaries. - - Args: - output_files: A list of strings to files representing Bazel aspect output - in UTF-8 JSON format. - - Returns: - return_code, [dict]: A tuple with a return code as its first argument and - for its second argument, a list of dictionaries for - each output_file that could be interpreted as valid - JSON, representing the returned Bazel aspect - information. - return_code, None: If an error occurred while converting the list of - files into JSON. - """ - outputs_data = [] - for output_file in output_files: - try: - with io.open(output_file, 'rb') as f: - output_data = json.load(f) - except (ValueError, IOError) as e: - _PrintXcodeError('Failed to load output map ""%s". ' - '%s' % (output_file, e)) - return 600, None - outputs_data.append(output_data) - return 0, outputs_data - - def _InstallArtifact(self, outputs_data): - """Installs Bazel-generated artifacts into the Xcode output directory.""" - xcode_artifact_path = self.artifact_output_path - - if not outputs_data: - _PrintXcodeError('Failed to load top level output file.') - return 600 - - primary_output_data = outputs_data[0] - - if 'artifact' not in primary_output_data: - _PrintXcodeError( - 'Failed to find an output artifact for target %s in output map %r' % - (xcode_artifact_path, primary_output_data)) - return 601 - - primary_artifact = primary_output_data['artifact'] - artifact_archive_root = primary_output_data.get('archive_root') - bundle_name = primary_output_data.get('bundle_name') - - # The PRODUCT_NAME used by the Xcode project is not trustable as it may be - # modified by the user and, more importantly, may have been modified by - # Tulsi to disambiguate multiple targets with the same name. - self.bazel_product_name = bundle_name - - # We need to handle IPAs (from {ios, tvos}_application) differently from - # ZIPs (from the other bundled rules) because they output slightly different - # directory structures. - is_ipa = primary_artifact.endswith('.ipa') - is_zip = primary_artifact.endswith('.zip') - - if is_ipa or is_zip: - expected_bundle_name = bundle_name + self.wrapper_suffix - - # The directory structure within the IPA is then determined based on - # Bazel's package and/or product type. - if is_ipa: - bundle_subpath = os.path.join('Payload', expected_bundle_name) - else: - # If the artifact is a ZIP, assume that the bundle is the top-level - # directory (this is the way in which Skylark rules package artifacts - # that are not standalone IPAs). - bundle_subpath = expected_bundle_name - - # Prefer to copy over files from the archive root instead of unzipping the - # ipa/zip in order to help preserve timestamps. Note that the archive root - # is only present for local builds; for remote builds we must extract from - # the zip file. - if self._IsValidArtifactArchiveRoot(artifact_archive_root, bundle_name): - source_location = os.path.join(artifact_archive_root, bundle_subpath) - exit_code = self._RsyncBundle(os.path.basename(primary_artifact), - source_location, - xcode_artifact_path) - else: - exit_code = self._UnpackTarget(primary_artifact, - xcode_artifact_path, - bundle_subpath) - if exit_code: - return exit_code - - elif os.path.isfile(primary_artifact): - # Remove the old artifact before copying. - if os.path.isfile(xcode_artifact_path): - try: - os.remove(xcode_artifact_path) - except OSError as e: - _PrintXcodeError('Failed to remove stale output file ""%s". ' - '%s' % (xcode_artifact_path, e)) - return 600 - exit_code = self._CopyFile(os.path.basename(primary_artifact), - primary_artifact, - xcode_artifact_path) - if exit_code: - return exit_code - else: - self._RsyncBundle(os.path.basename(primary_artifact), - primary_artifact, - xcode_artifact_path) - - # When the rules output a tree artifact, Tulsi will copy the bundle as is - # into the expected Xcode output location. But because they're copied as - # is from the bazel output, they come with bazel's permissions, which are - # read only. Here we set them to write as well, so Xcode can modify the - # bundle too (for example, for codesigning). - chmod_timer = Timer('Modifying permissions of output bundle', - 'bundle_chmod').Start() - - self._PrintVerbose('Spawning subprocess to add write permissions to ' - 'copied bundle...') - process = subprocess.Popen(['chmod', '-R', 'uga+w', xcode_artifact_path]) - process.wait() - chmod_timer.End() - - # No return code check as this is not an essential operation. - self._InstallEmbeddedBundlesIfNecessary(primary_output_data) - - return 0 - - def _IsValidArtifactArchiveRoot(self, archive_root, bundle_name): - """Returns true if the archive root is valid for use.""" - if not archive_root or not os.path.isdir(archive_root): - return False - - # The archive root will not be updated for any remote builds, but will be - # valid for local builds. We detect this by using an implementation detail - # of the rules_apple bundler: archives will always be transformed from - # .unprocessed.zip (locally or remotely) to .archive-root. - # - # Thus if the mod time on the archive root is not greater than the mod - # time on the on the zip, the archive root is not valid. Remote builds - # will end up copying the .unprocessed.zip but not the - # .archive-root, making this a valid temporary solution. - # - # In the future, it would be better to have this handled by the rules; - # until then this should suffice as a work around to improve build times. - unprocessed_zip = os.path.join(os.path.dirname(archive_root), - '%s.unprocessed.zip' % bundle_name) - if not os.path.isfile(unprocessed_zip): - return False - return os.path.getmtime(archive_root) > os.path.getmtime(unprocessed_zip) - - def _InstallEmbeddedBundlesIfNecessary(self, output_data): - """Install embedded bundles next to the current target's output.""" - - # In order to find and load symbols for the binary installed on device, - # Instruments needs to "see" it in Spotlight index somewhere on the local - # filesystem. This is only needed for on-device instrumentation. - # - # Unfortunatelly, it does not seem to be possible to detect when a build is - # being made for profiling, thus we can't exclude this step for on-device - # non-profiling builds. - - if self.is_simulator or ('embedded_bundles' not in output_data): - return - - timer = Timer('Installing embedded bundles', - 'installing_embedded_bundles').Start() - - for bundle_info in output_data['embedded_bundles']: - bundle_name = bundle_info['bundle_name'] - bundle_extension = bundle_info['bundle_extension'] - full_name = bundle_name + bundle_extension - output_path = os.path.join(self.built_products_dir, full_name) - # TODO(b/68936732): See if copying just the binary (not the whole bundle) - # is enough to make Instruments work. - if self._IsValidArtifactArchiveRoot(bundle_info['archive_root'], - bundle_name): - source_path = os.path.join(bundle_info['archive_root'], full_name) - self._RsyncBundle(full_name, source_path, output_path) - else: - # Try to find the embedded bundle within the installed main bundle. - bundle_path = self._FindEmbeddedBundleInMain(bundle_name, - bundle_extension) - if bundle_path: - self._RsyncBundle(full_name, bundle_path, output_path) - else: - _PrintXcodeWarning('Could not find bundle %s in main bundle. ' % - (full_name) + - 'Device-level Instruments debugging will be ' - 'disabled for this bundle. Please report a ' - 'Tulsi bug and attach a full Xcode build log.') - - timer.End() - - # Maps extensions to anticipated subfolders. - _EMBEDDED_BUNDLE_PATHS = { - '.appex': 'PlugIns', - '.framework': 'Frameworks' - } - - def _FindEmbeddedBundleInMain(self, bundle_name, bundle_extension): - """Retrieves the first embedded bundle found within our main bundle.""" - main_bundle = os.environ.get('EXECUTABLE_FOLDER_PATH') - - if not main_bundle: - return None - - main_bundle_path = os.path.join(self.built_products_dir, - main_bundle) - - return self._FindEmbeddedBundle(bundle_name, - bundle_extension, - main_bundle_path) - - def _FindEmbeddedBundle(self, bundle_name, bundle_extension, bundle_path): - """Retrieves the first embedded bundle found within this bundle path.""" - embedded_subfolder = self._EMBEDDED_BUNDLE_PATHS.get(bundle_extension) - - if not embedded_subfolder: - return None - - projected_bundle_path = os.path.join(bundle_path, - embedded_subfolder, - bundle_name + bundle_extension) - - if os.path.isdir(projected_bundle_path): - return projected_bundle_path - - # For frameworks not in the main app bundle, and possibly other executable - # bundle content in the future, we recurse through every .appex in PlugIns - # to find those frameworks. - # - # This won't support frameworks that could potentially have the same name - # but are different between the app and extensions, but we intentionally - # choose not to handle that case. Xcode build system only supports - # uniquely named frameworks, and we shouldn't confuse the dynamic loader - # with frameworks that have the same image names but different content. - appex_root_path = os.path.join(bundle_path, 'PlugIns') - if not os.path.isdir(appex_root_path): - return None - - # Find each directory within appex_root_path and attempt to find a bundle. - # If one can't be found, return None. - appex_dirs = os.listdir(appex_root_path) - for appex_dir in appex_dirs: - appex_path = os.path.join(appex_root_path, appex_dir) - path = self._FindEmbeddedBundle(bundle_name, - bundle_extension, - appex_path) - if path: - return path - return None - - def _InstallGeneratedHeaders(self, outputs): - """Invokes install_genfiles.py to install generated Bazel files.""" - genfiles_timer = Timer('Installing generated headers', - 'installing_generated_headers').Start() - # Resolve the path to the install_genfiles.py script. - # It should be in the same directory as this script. - path = os.path.join(os.path.dirname(os.path.realpath(__file__)), - 'install_genfiles.py') - - args = [path, self.bazel_exec_root] - args.extend(outputs) - - self._PrintVerbose('Spawning subprocess install_genfiles.py to copy ' - 'generated files in the background...') - process = subprocess.Popen(args) - process.wait() - genfiles_timer.End() - - def _InstallBundle(self, source_path, output_path): - """Copies the bundle at source_path to output_path.""" - if not os.path.isdir(source_path): - return 0, None - - if os.path.isdir(output_path): - try: - shutil.rmtree(output_path) - except OSError as e: - _PrintXcodeError('Failed to remove stale bundle ""%s". ' - '%s' % (output_path, e)) - return 700, None - - exit_code = self._CopyBundle(os.path.basename(source_path), - source_path, - output_path) - return exit_code, output_path - - def _RsyncBundle(self, source_path, full_source_path, output_path): - """Rsyncs the given bundle to the given expected output path.""" - self._PrintVerbose('Rsyncing %s to %s' % (source_path, output_path)) - - # rsync behavior changes based on presence of a trailing slash. - if not full_source_path.endswith('/'): - full_source_path += '/' - - try: - # Use -c to check differences by checksum, -v for verbose, - # and --delete to delete stale files. - # The rest of the flags are the same as -a but without preserving - # timestamps, which is done intentionally so the timestamp will - # only change when the file is changed. - subprocess.check_output(['rsync', - '-vcrlpgoD', - '--delete', - full_source_path, - output_path], - stderr=subprocess.STDOUT) - except subprocess.CalledProcessError as e: - _PrintXcodeError('Rsync failed. %s' % e) - return 650 - return 0 - - def _CopyBundle(self, source_path, full_source_path, output_path): - """Copies the given bundle to the given expected output path.""" - self._PrintVerbose('Copying %s to %s' % (source_path, output_path)) - try: - CopyOnWrite(full_source_path, output_path, tree=True) - except OSError as e: - _PrintXcodeError('Copy failed. %s' % e) - return 650 - return 0 - - def _CopyFile(self, source_path, full_source_path, output_path): - """Copies the given file to the given expected output path.""" - self._PrintVerbose('Copying %s to %s' % (source_path, output_path)) - output_path_dir = os.path.dirname(output_path) - if not os.path.exists(output_path_dir): - try: - os.makedirs(output_path_dir) - except OSError as e: - _PrintXcodeError('Failed to create output directory "%s". ' - '%s' % (output_path_dir, e)) - return 650 - try: - CopyOnWrite(full_source_path, output_path) - except OSError as e: - _PrintXcodeError('Copy failed. %s' % e) - return 650 - return 0 - - def _UnpackTarget(self, bundle_path, output_path, bundle_subpath): - """Unpacks generated bundle into the given expected output path.""" - self._PrintVerbose('Unpacking %s to %s' % (bundle_path, output_path)) - - if not os.path.isfile(bundle_path): - _PrintXcodeError('Generated bundle not found at "%s"' % bundle_path) - return 670 - - if os.path.isdir(output_path): - try: - shutil.rmtree(output_path) - except OSError as e: - _PrintXcodeError('Failed to remove stale output directory ""%s". ' - '%s' % (output_path, e)) - return 600 - - # We need to handle IPAs (from {ios, tvos}_application) differently from - # ZIPs (from the other bundled rules) because they output slightly different - # directory structures. - is_ipa = bundle_path.endswith('.ipa') - - with zipfile.ZipFile(bundle_path, 'r') as zf: - for item in zf.infolist(): - filename = item.filename - - # Support directories do not seem to be needed by the debugger and are - # skipped. - basedir = filename.split(os.sep)[0] - if basedir.endswith('Support') or basedir.endswith('Support2'): - continue - - if len(filename) < len(bundle_subpath): - continue - - attributes = (item.external_attr >> 16) & 0o777 - self._PrintVerbose('Extracting %s (%o)' % (filename, attributes), - level=1) - - if not filename.startswith(bundle_subpath): - _PrintXcodeWarning('Mismatched extraction path. Bundle content ' - 'at "%s" expected to have subpath of "%s"' % - (filename, bundle_subpath)) - - dir_components = self._SplitPathComponents(filename) - - # Get the file's path, ignoring the payload components if the archive - # is an IPA. - if is_ipa: - subpath = os.path.join(*dir_components[2:]) - else: - subpath = os.path.join(*dir_components[1:]) - target_path = os.path.join(output_path, subpath) - - # Ensure the target directory exists. - try: - target_dir = os.path.dirname(target_path) - if not os.path.isdir(target_dir): - os.makedirs(target_dir) - except OSError as e: - _PrintXcodeError( - 'Failed to create target path "%s" during extraction. %s' % ( - target_path, e)) - return 671 - - # If the archive item looks like a file, extract it. - if not filename.endswith(os.sep): - with zf.open(item) as src, open(target_path, 'wb') as dst: - shutil.copyfileobj(src, dst) - - # Patch up the extracted file's attributes to match the zip content. - if attributes: - os.chmod(target_path, attributes) - - return 0 - - def _InstallDSYMBundles(self, output_dir, outputs_data): - """Copies any generated dSYM bundles to the given directory.""" - - dsym_to_process = set() - primary_output_data = outputs_data[0] - if primary_output_data['has_dsym']: - # Declares the Xcode-generated name of our main target's dSYM. - # This environment variable is always set, for any possible Xcode output - # that could generate a dSYM bundle. - # - # Note that this may differ from the Bazel name as Tulsi may modify the - # Xcode `BUNDLE_NAME`, so we need to make sure we use Bazel as the source - # of truth for Bazel's dSYM name, but copy it over to where Xcode expects. - xcode_target_dsym = os.environ.get('DWARF_DSYM_FILE_NAME') - - if xcode_target_dsym: - dsym_path = primary_output_data.get('dsym_path') - if dsym_path: - dsym_to_process.add((dsym_path, xcode_target_dsym)) - else: - _PrintXcodeWarning('Unable to resolve dSYM paths for main bundle %s' % - primary_output_data) - - # Collect additional dSYM bundles generated by the dependencies of this - # build such as extensions or frameworks. Note that a main target may not - # have dSYMs while subtargets (like an xctest) still can have them. - child_dsyms = set() - for data in outputs_data: - for bundle_info in data.get('embedded_bundles', []): - if not bundle_info['has_dsym']: - continue - dsym_path = bundle_info.get('dsym_path') - if dsym_path: - child_dsyms.add((dsym_path, os.path.basename(dsym_path))) - else: - _PrintXcodeWarning( - 'Unable to resolve dSYM paths for embedded bundle %s' - % bundle_info) - dsym_to_process.update(child_dsyms) - - if not dsym_to_process: - return 0, None - - # Start the timer now that we know we have dSYM bundles to install. - timer = Timer('Installing dSYM bundles', 'installing_dsym').Start() - - dsyms_found = [] - for input_dsym_full_path, xcode_dsym_name in dsym_to_process: - output_full_path = os.path.join(output_dir, xcode_dsym_name) - exit_code, path = self._InstallBundle(input_dsym_full_path, - output_full_path) - if exit_code: - _PrintXcodeWarning('Failed to install dSYM to "%s" (%s)' - % (input_dsym_full_path, exit_code)) - elif path is None: - _PrintXcodeWarning('Did not find a dSYM bundle at %s' - % input_dsym_full_path) - else: - dsyms_found.append(path) - - timer.End() - return 0, dsyms_found - - def _ResignBundle(self, bundle_path, signing_identity, entitlements=None): - """Re-signs the bundle with the given signing identity and entitlements.""" - if not self.codesigning_allowed: - return 0 - - timer = Timer('\tSigning ' + bundle_path, 'signing_bundle').Start() - command = [ - 'xcrun', - 'codesign', - '-f', - '--timestamp=none', - '-s', - signing_identity, - ] - - if entitlements: - command.extend(['--entitlements', entitlements]) - else: - command.append('--preserve-metadata=entitlements') - - command.append(bundle_path) - - returncode, output = self._RunSubprocess(command) - timer.End() - if returncode: - _PrintXcodeError('Re-sign command %r failed. %s' % (command, output)) - return 800 + returncode - return 0 - - def _ResignTestArtifacts(self): - """Resign test related artifacts that Xcode injected into the outputs.""" - if not self.is_test: - return 0 - # Extract the signing identity from the bundle at the expected output path - # since that's where the signed bundle from bazel was placed. - signing_identity = self._ExtractSigningIdentity(self.artifact_output_path) - if not signing_identity: - return 800 - - exit_code = 0 - timer = Timer('Re-signing injected test host artifacts', - 'resigning_test_host').Start() - - if self.test_host_binary: - # For Unit tests, we need to resign the frameworks that Xcode injected - # into the test host bundle. - test_host_bundle = os.path.dirname(self.test_host_binary) - exit_code = self._ResignXcodeTestFrameworks( - test_host_bundle, signing_identity) - else: - # For UI tests, we need to resign the UI test runner app and the - # frameworks that Xcode injected into the runner app. The UI Runner app - # also needs to be signed with entitlements. - exit_code = self._ResignXcodeTestFrameworks( - self.codesigning_folder_path, signing_identity) - if exit_code == 0: - entitlements_path = self._InstantiateUIRunnerEntitlements() - if entitlements_path: - exit_code = self._ResignBundle( - self.codesigning_folder_path, - signing_identity, - entitlements_path) - else: - _PrintXcodeError('Could not instantiate UI runner entitlements.') - exit_code = 800 - - timer.End() - return exit_code - - def _ResignXcodeTestFrameworks(self, bundle, signing_identity): - """Re-signs the support frameworks injected by Xcode in the given bundle.""" - if not self.codesigning_allowed: - return 0 - - for framework in XCODE_INJECTED_FRAMEWORKS: - framework_path = os.path.join( - bundle, 'Frameworks', framework) - if os.path.isdir(framework_path) or os.path.isfile(framework_path): - exit_code = self._ResignBundle(framework_path, signing_identity) - if exit_code != 0: - return exit_code - return 0 - - def _InstantiateUIRunnerEntitlements(self): - """Substitute team and bundle identifiers into UI runner entitlements. - - This method throws an IOError exception if the template wasn't found in - its expected location, or an OSError if the expected output folder could - not be created. - - Returns: - The path to where the entitlements file was generated. - """ - if not self.codesigning_allowed: - return None - if not os.path.exists(self.derived_sources_folder_path): - os.makedirs(self.derived_sources_folder_path) - - output_file = os.path.join( - self.derived_sources_folder_path, - self.bazel_product_name + '_UIRunner.entitlements') - if os.path.exists(output_file): - os.remove(output_file) - - with io.open( - self.runner_entitlements_template, 'r', encoding='utf-8') as template: - contents = template.read() - contents = contents.replace( - '$(TeamIdentifier)', - self._ExtractSigningTeamIdentifier(self.artifact_output_path)) - contents = contents.replace( - '$(BundleIdentifier)', - self._ExtractSigningBundleIdentifier(self.artifact_output_path)) - with open(output_file, 'w') as output: - output.write(contents) - return output_file - - def _ExtractSigningIdentity(self, signed_bundle): - """Returns the identity used to sign the given bundle path.""" - return self._ExtractSigningAttribute(signed_bundle, 'Authority') - - def _ExtractSigningTeamIdentifier(self, signed_bundle): - """Returns the team identifier used to sign the given bundle path.""" - return self._ExtractSigningAttribute(signed_bundle, 'TeamIdentifier') - - def _ExtractSigningBundleIdentifier(self, signed_bundle): - """Returns the bundle identifier used to sign the given bundle path.""" - return self._ExtractSigningAttribute(signed_bundle, 'Identifier') - - def _ExtractSigningAttribute(self, signed_bundle, attribute): - """Returns the attribute used to sign the given bundle path.""" - if not self.codesigning_allowed: - return '' - - cached = self.codesign_attributes.get(signed_bundle) - if cached: - return cached.Get(attribute) - - timer = Timer('\tExtracting signature for ' + signed_bundle, - 'extracting_signature').Start() - output = subprocess.check_output( - ['xcrun', 'codesign', '-dvv', signed_bundle], - stderr=subprocess.STDOUT, - encoding='utf-8') - timer.End() - - bundle_attributes = CodesignBundleAttributes(output) - self.codesign_attributes[signed_bundle] = bundle_attributes - return bundle_attributes.Get(attribute) - - def _PruneLLDBModuleCache(self, output_files): - """Run the module cache pruner tool as a subprocess.""" - if not os.path.exists(BazelBuildBridge.MODULE_CACHE_PRUNER_EXECUTABLE): - _PrintXcodeWarning( - 'Could find module cache pruner executable at %s. ' - 'You may need to manually remove %s if lldb-rpc-server crashes.' % - (BazelBuildBridge.MODULE_CACHE_PRUNER_EXECUTABLE, - BazelBuildBridge.XCODE_MODULE_CACHE_DIRECTORY)) - return - - timer = Timer('Pruning module cache', 'prune_module_cache').Start() - for output_file in output_files: - self._RunSubprocess([ - BazelBuildBridge.MODULE_CACHE_PRUNER_EXECUTABLE, - BazelBuildBridge.XCODE_MODULE_CACHE_DIRECTORY, output_file - ]) - timer.End() - - def _UpdateLLDBInit(self, clear_source_map=False): - """Updates lldbinit to enable debugging of Bazel binaries.""" - - # An additional lldbinit file that we should load in the lldbinit file - # we are about to write. - additional_lldbinit = None - - if self.custom_lldbinit is None: - # Write our settings to the global ~/.lldbinit-tulsiproj file when no - # custom lldbinit is provided. - lldbinit_file = TULSI_LLDBINIT_FILE - # Make sure a reference to ~/.lldbinit-tulsiproj exists in ~/.lldbinit or - # ~/.lldbinit-Xcode. Priority is given to ~/.lldbinit-Xcode if it exists, - # otherwise the bootstrapping will be written to ~/.lldbinit. - BootstrapLLDBInit(True) - else: - # Remove any reference to ~/.lldbinit-tulsiproj if the global lldbinit was - # previously bootstrapped. This prevents the global lldbinit from having - # side effects on the custom lldbinit file. - BootstrapLLDBInit(False) - # When using a custom lldbinit, Xcode will directly load our custom file - # so write our settings to this custom file. Retain standard Xcode - # behavior by loading the default file in our custom file. - lldbinit_file = self.custom_lldbinit - additional_lldbinit = _FindDefaultLldbInit() - - project_basename = os.path.basename(self.project_file_path) - workspace_root = self._NormalizePath(self.workspace_root) - - with open(lldbinit_file, 'w') as out: - out.write('# This file is autogenerated by Tulsi and should not be ' - 'edited.\n') - - if additional_lldbinit is not None: - out.write('# This loads the default lldbinit file to retain standard ' - 'Xcode behavior.\n') - out.write('command source "%s"\n' % additional_lldbinit) - - out.write('# This sets lldb\'s working directory to the Bazel workspace ' - 'root used by %r.\n' % project_basename) - out.write('platform settings -w "%s"\n' % workspace_root) - - out.write('# This enables implicitly loading Clang modules which can be ' - 'disabled when a Swift module was built with explicit modules ' - 'enabled.\n') - out.write( - 'settings set -- target.swift-extra-clang-flags "-fimplicit-module-maps"\n' - ) - - if clear_source_map: - out.write('settings clear target.source-map\n') - return 0 - - if self.normalized_prefix_map: - source_map = ('./', workspace_root) - out.write('# This maps the normalized root to that used by ' - '%r.\n' % project_basename) - else: - # NOTE: settings target.source-map is different from - # DBGSourcePathRemapping; the former is an LLDB target-level - # remapping API that rewrites breakpoints, the latter is an LLDB - # module-level remapping API that changes DWARF debug info in memory. - # - # If we had multiple remappings, it would not make sense for the - # two APIs to share the same mappings. They have very different - # side-effects in how they individually handle debug information. - source_map = self._ExtractTargetSourceMap() - out.write('# This maps Bazel\'s execution root to that used by ' - '%r.\n' % project_basename) - - out.write('settings set target.source-map "%s" "%s"\n' % source_map) - - return 0 - - def _DWARFdSYMBinaries(self, dsym_bundle_path): - """Returns an array of abs paths to DWARF binaries in the dSYM bundle. - - Args: - dsym_bundle_path: absolute path to the dSYM bundle. - - Returns: - str[]: a list of strings representing the absolute paths to each binary - found within the dSYM bundle. - """ - dwarf_dir = os.path.join(dsym_bundle_path, - 'Contents', - 'Resources', - 'DWARF') - - dsym_binaries = [] - - for f in os.listdir(dwarf_dir): - # Ignore hidden files, such as .DS_Store files. - if not f.startswith('.'): - # Append full path info. - dsym_binary = os.path.join(dwarf_dir, f) - dsym_binaries.append(dsym_binary) - - return dsym_binaries - - def _UUIDInfoForBinary(self, source_binary_path): - """Returns exit code of dwarfdump along with every UUID + arch found. - - Args: - source_binary_path: absolute path to the binary file. - - Returns: - (Int, str[(str, str)]): a tuple containing the return code of dwarfdump - as its first element, and a list of strings - representing each UUID found for each given - binary slice found within the binary with its - given architecture, if no error has occcured. - """ - - returncode, output = self._RunSubprocess( - ['xcrun', 'dwarfdump', '--uuid', source_binary_path]) - if returncode: - _PrintXcodeWarning('dwarfdump returned %d while finding the UUID for %s' - % (returncode, source_binary_path)) - return (returncode, []) - - # All UUIDs for binary slices will be returned as the second from left, - # from output; "UUID: D4DE5AA2-79EE-36FE-980C-755AED318308 (x86_64) - # /Applications/Calendar.app/Contents/MacOS/Calendar" - - uuids_found = [] - for dwarfdump_output in output.split('\n'): - if not dwarfdump_output: - continue - found_output = re.match(r'^(?:UUID: )([^ ]+) \(([^)]+)', dwarfdump_output) - if not found_output: - continue - found_uuid = found_output.group(1) - if not found_uuid: - continue - found_arch = found_output.group(2) - if not found_arch: - continue - uuids_found.append((found_uuid, found_arch)) - - return (0, uuids_found) - - def _CreateUUIDPlist(self, dsym_bundle_path, uuid, arch, source_maps): - """Creates a UUID.plist in a dSYM bundle to redirect sources. - - Args: - dsym_bundle_path: absolute path to the dSYM bundle. - uuid: string representing the UUID of the binary slice with paths to - remap in the dSYM bundle. - arch: the architecture of the binary slice. - source_maps: list of tuples representing all absolute paths to source - files compiled by Bazel as strings ($0) associated with the - paths to Xcode-visible sources used for the purposes of - Tulsi debugging as strings ($1). - - Returns: - Bool: True if no error was found, or False, representing a failure to - write when creating the plist. - """ - - # Create a UUID plist at (dsym_bundle_path)/Contents/Resources/. - remap_plist = os.path.join(dsym_bundle_path, - 'Contents', - 'Resources', - '%s.plist' % uuid) - - # Via an XML plist, add the mappings from _ExtractTargetSourceMap(). - try: - with open(remap_plist, 'w') as out: - out.write('\n' - '\n' - '\n' - '\n' - 'DBGSourcePathRemapping\n' - '\n') - for source_map in source_maps: - # Add the mapping as a DBGSourcePathRemapping to the UUID plist here. - out.write('%s\n%s\n' % source_map) - - # Make sure that we also set DBGVersion to 3. - out.write('\n' - 'DBGVersion\n' - '3\n' - '\n' - '\n') - except OSError as e: - _PrintXcodeError('Failed to write %s, received error %s' % - (remap_plist, e)) - return False - - # Update the dSYM symbol cache with a reference to this dSYM bundle. - if self.update_symbol_cache is not None: - err_msg = self.update_symbol_cache.UpdateUUID(uuid, - dsym_bundle_path, - arch) - if err_msg: - _PrintXcodeWarning('Attempted to save (uuid, dsym_bundle_path, arch) ' - 'to DBGShellCommands\' dSYM cache, but got error ' - '\"%s\".' % err_msg) - - return True - - def _CleanExistingDSYMs(self): - """Clean dSYM bundles that were left over from a previous build.""" - - output_dir = self.built_products_dir - output_dir_list = os.listdir(output_dir) - for item in output_dir_list: - if item.endswith('.dSYM'): - shutil.rmtree(os.path.join(output_dir, item)) - - def _PlistdSYMPaths(self, dsym_bundle_path): - """Adds Plists to a given dSYM bundle to redirect DWARF data.""" - - # Retrieve the paths that we are expected to remap. - - # Always include a direct path from the execroot to Xcode-visible sources. - source_maps = [self._ExtractTargetSourceMap()] - - # Remap relative paths from the workspace root. - if self.normalized_prefix_map: - # Take the normalized path and map that to Xcode-visible sources. - source_maps.append(('./', self._NormalizePath(self.workspace_root))) - - # Find the binaries within the dSYM bundle. UUIDs will match that of the - # binary it was based on. - dsym_binaries = self._DWARFdSYMBinaries(dsym_bundle_path) - - if not dsym_binaries: - _PrintXcodeWarning('Could not find the binaries that the dSYM %s was ' - 'based on to determine DWARF binary slices to patch. ' - 'Debugging will probably fail.' % (dsym_bundle_path)) - return 404 - - # Find the binary slice UUIDs with dwarfdump from each binary. - for source_binary_path in dsym_binaries: - - returncode, uuid_info_found = self._UUIDInfoForBinary(source_binary_path) - if returncode: - return returncode - - # Create a plist per UUID, each indicating a binary slice to remap paths. - for uuid, arch in uuid_info_found: - plist_created = self._CreateUUIDPlist(dsym_bundle_path, - uuid, - arch, - source_maps) - if not plist_created: - return 405 - - return 0 - - def _NormalizePath(self, path): - """Returns paths with a common form, normalized with a trailing slash. - - Args: - path: a file system path given in the form of a string. - - Returns: - str: a normalized string with a trailing slash, based on |path|. - """ - return os.path.normpath(path) + os.sep - - def _ExtractTargetSourceMap(self, normalize=True): - """Extracts the source path as a tuple associated with the WORKSPACE path. - - Args: - normalize: Defines if all paths should be normalized. Preferred for APIs - like DBGSourcePathRemapping and target.source-map but won't - work for the purposes of -fdebug-prefix-map. - - Returns: - None: if an error occurred. - (str, str): a single tuple representing all absolute paths to source - files compiled by Bazel as strings ($0) associated with - the paths to Xcode-visible sources used for the purposes - of Tulsi debugging as strings ($1). - """ - # All paths route to the "workspace root" for sources visible from Xcode. - sm_destpath = self.workspace_root - if normalize: - sm_destpath = self._NormalizePath(sm_destpath) - - # Add a redirection for the Bazel execution root, the path where sources - # are referenced by Bazel. - sm_execroot = self.bazel_exec_root - if normalize: - sm_execroot = self._NormalizePath(sm_execroot) - return (sm_execroot, sm_destpath) - - def _LinkTulsiToBazel(self, symlink_name, destination): - """Links symlink_name (in project/.tulsi) to the specified destination.""" - symlink_path = os.path.join(self.project_file_path, - '.tulsi', - symlink_name) - if os.path.islink(symlink_path): - os.unlink(symlink_path) - os.symlink(destination, symlink_path) - if not os.path.exists(symlink_path): - _PrintXcodeError( - 'Linking %s to %s failed.' % (symlink_path, destination)) - return -1 - - @staticmethod - def _SplitPathComponents(path): - """Splits the given path into an array of all of its components.""" - components = path.split(os.sep) - # Patch up the first component if path started with an os.sep - if not components[0]: - components[0] = os.sep - return components - - def _RunSubprocess(self, cmd): - """Runs the given command as a subprocess, returning (exit_code, output).""" - self._PrintVerbose('%r' % cmd, 1) - process = subprocess.Popen( - cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, encoding='utf-8') - output, _ = process.communicate() - return (process.returncode, output) - - def _PrintVerbose(self, msg, level=0): - if self.verbose > level: - _PrintUnbuffered(msg) - - -def main(argv): - build_settings = bazel_build_settings.BUILD_SETTINGS - if build_settings is None: - _Fatal('Unable to resolve build settings. Please report a Tulsi bug.') - return 1 - return BazelBuildBridge(build_settings).Run(argv) - - -if __name__ == '__main__': - # Register the interrupt handler immediately in case we receive SIGINT while - # trying to acquire the lock. - signal.signal(signal.SIGINT, _InterruptHandler) - _LockFileAcquire(_LockFileCreate()) - _logger = tulsi_logging.Logger() - logger_warning = tulsi_logging.validity_check() - if logger_warning: - _PrintXcodeWarning(logger_warning) - _timer = Timer('Everything', 'complete_build').Start() - _exit_code = main(sys.argv) - _timer.End() - sys.exit(_exit_code) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_events.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_events.py deleted file mode 100755 index cc6e3c543..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_events.py +++ /dev/null @@ -1,136 +0,0 @@ -# Copyright 2017 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the 'License'); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an 'AS IS' BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Parses a stream of JSON build event protocol messages from a file.""" - -import json - - -class _FileLineReader(object): - """Reads lines from a streaming file. - - This will repeatedly check the file for an entire line to read. It will - buffer partial lines until they are completed. - This is meant for files that are being modified by an long-living external - program. - """ - - def __init__(self, file_obj): - """Creates a new FileLineReader object. - - Args: - file_obj: The file object to watch. - - Returns: - A FileLineReader instance. - """ - self._file_obj = file_obj - self._buffer = [] - - def check_for_changes(self): - """Checks the file for any changes, returning the line read if any.""" - line = self._file_obj.readline() - self._buffer.append(line) - - # Only parse complete lines. - if not line.endswith('\n'): - return None - full_line = ''.join(self._buffer) - del self._buffer[:] - return full_line - - -class BazelBuildEvent(object): - """Represents a Bazel Build Event. - - Public Properties: - event_dict: the source dictionary for this event. - stdout: stdout string, if any. - stderr: stderr string, if any. - files: list of file URIs. - """ - - def __init__(self, event_dict): - """Creates a new BazelBuildEvent object. - - Args: - event_dict: Dictionary representing a build event - - Returns: - A BazelBuildEvent instance. - """ - self.event_dict = event_dict - self.stdout = None - self.stderr = None - self.files = [] - if 'progress' in event_dict: - self._update_fields_for_progress(event_dict['progress']) - if 'namedSetOfFiles' in event_dict: - self._update_fields_for_named_set_of_files(event_dict['namedSetOfFiles']) - - def _update_fields_for_progress(self, progress_dict): - self.stdout = progress_dict.get('stdout') - self.stderr = progress_dict.get('stderr') - - def _update_fields_for_named_set_of_files(self, named_set): - files = named_set.get('files', []) - for file_obj in files: - uri = file_obj.get('uri', '') - if uri.startswith('file://'): - self.files.append(uri[7:]) - - -class BazelBuildEventsWatcher(object): - """Watches a build events JSON file.""" - - def __init__(self, json_file, warning_handler=None): - """Creates a new BazelBuildEventsWatcher object. - - Args: - json_file: The JSON file object to watch. - warning_handler: Handler function for warnings accepting a single string. - - Returns: - A BazelBuildEventsWatcher instance. - """ - self.file_reader = _FileLineReader(json_file) - self.warning_handler = warning_handler - self._read_any_events = False - - def has_read_events(self): - return self._read_any_events - - def check_for_new_events(self): - """Checks the file for new BazelBuildEvents. - - Returns: - A list of all new BazelBuildEvents. - """ - new_events = [] - while True: - line = self.file_reader.check_for_changes() - if not line: - break - try: - build_event_dict = json.loads(line) - except (UnicodeDecodeError, ValueError) as e: - handler = self.warning_handler - if handler: - handler('Could not decode BEP event "%s"\n' % line) - handler('Received error of %s, "%s"\n' % (type(e), e)) - break - self._read_any_events = True - build_event = BazelBuildEvent(build_event_dict) - new_events.append(build_event) - return new_events diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py deleted file mode 100644 index 00d14e37e..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_build_settings.py +++ /dev/null @@ -1,274 +0,0 @@ -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# -# Generated by Tulsi to resolve flags during builds. - - -import sys - - -def _StandardizeTargetLabel(label): - """Convert labels of form //dir/target to //dir/target:target.""" - if label is None: - return label - if not label.startswith('//') and not label.startswith('@'): - sys.stderr.write('[WARNING] Target label "{0}" is not fully qualified. ' - 'Labels should start with "@" or "//".\n\n'.format(label)) - sys.stderr.flush() - tokens = label.rsplit('/', 1) - if len(tokens) <= 1: - return label - - target_base = tokens[0] - target = tokens[1] - - if '...' in target or ':' in target: - return label - return label + ':' + target - - -class BazelFlags(object): - """Represents Bazel flags.""" - - def __init__(self, startup = [], build = []): - self.startup = startup - self.build = build - - -class BazelFlagsSet(object): - """Represents a set of Bazel flags which can vary by compilation mode.""" - - def __init__(self, debug = None, release = None, flags = None): - if debug is None: - debug = flags or BazelFlags() - if release is None: - release = flags or BazelFlags() - - self.debug = debug - self.release = release - - def flags(self, is_debug): - """Returns the proper flags (either debug or release).""" - return self.debug if is_debug else self.release - - -class BazelBuildSettings(object): - """Represents a Tulsi project's Bazel settings.""" - - def __init__(self, bazel, bazelExecRoot, bazelOutputBase, - defaultPlatformConfigId, platformConfigFlags, - swiftTargets, - cacheAffecting, cacheSafe, - swiftOnly, nonSwiftOnly, - swiftFeatures, nonSwiftFeatures, - projDefault, projTargetMap): - self.bazel = bazel - self.bazelExecRoot = bazelExecRoot - self.bazelOutputBase = bazelOutputBase - self.defaultPlatformConfigId = defaultPlatformConfigId - self.platformConfigFlags = platformConfigFlags - self.swiftTargets = swiftTargets - self.cacheAffecting = cacheAffecting - self.cacheSafe = cacheSafe - self.swiftOnly = swiftOnly - self.nonSwiftOnly = nonSwiftOnly - self.swiftFeatures = swiftFeatures - self.nonSwiftFeatures = nonSwiftFeatures - self.projDefault = projDefault - self.projTargetMap = projTargetMap - - def features_for_target(self, target, is_swift_override=None): - """Returns an array of enabled features for the given target.""" - - target = _StandardizeTargetLabel(target) - is_swift = target in self.swiftTargets - if is_swift_override is not None: - is_swift = is_swift_override - - return self.swiftFeatures if is_swift else self.nonSwiftFeatures - - def flags_for_target(self, target, is_debug, - config, is_swift_override=None): - """Returns (bazel, startup flags, build flags) for the given target.""" - - target = _StandardizeTargetLabel(target) - target_flag_set = self.projTargetMap.get(target) - if not target_flag_set: - target_flag_set = self.projDefault - - is_swift = target in self.swiftTargets - if is_swift_override is not None: - is_swift = is_swift_override - lang = self.swiftOnly if is_swift else self.nonSwiftOnly - - config_flags = self.platformConfigFlags[config] - cache_affecting = self.cacheAffecting.flags(is_debug) - cache_safe = self.cacheSafe.flags(is_debug) - target = target_flag_set.flags(is_debug) - lang = lang.flags(is_debug) - - startupFlags = [] - startupFlags.extend(target.startup) - startupFlags.extend(cache_safe.startup) - startupFlags.extend(cache_affecting.startup) - startupFlags.extend(lang.startup) - - buildFlags = [] - buildFlags.extend(target.build) - buildFlags.extend(config_flags) - buildFlags.extend(cache_safe.build) - buildFlags.extend(cache_affecting.build) - buildFlags.extend(lang.build) - - return (self.bazel, startupFlags, buildFlags) - -# Default value in case the template does not behave as expected. -BUILD_SETTINGS = None - -# Generated by Tulsi. DO NOT EDIT. -BUILD_SETTINGS = BazelBuildSettings( - '/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk', - '/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc/execroot/mediapipe', - '/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc', - 'ios_arm64', - { - 'watchos_i386': [ - '--apple_platform_type=watchos', - '--watchos_cpus=i386', - ], - 'tvos_x86_64': [ - '--apple_platform_type=tvos', - '--tvos_cpus=x86_64', - ], - 'watchos_arm64_32': [ - '--apple_platform_type=watchos', - '--watchos_cpus=armv7k,arm64_32', - ], - 'macos_arm64': [ - '--apple_platform_type=macos', - '--cpu=darwin_arm64', - ], - 'ios_x86_64': [ - '--apple_platform_type=ios', - '--cpu=ios_x86_64', - '--watchos_cpus=i386', - ], - 'macos_x86_64': [ - '--apple_platform_type=macos', - '--cpu=darwin_x86_64', - ], - 'ios_armv7': [ - '--apple_platform_type=ios', - '--cpu=ios_armv7', - '--watchos_cpus=armv7k', - ], - 'watchos_x86_64': [ - '--apple_platform_type=watchos', - '--watchos_cpus=i386', - ], - 'macos_arm64e': [ - '--apple_platform_type=macos', - '--cpu=darwin_arm64e', - ], - 'ios_arm64': [ - '--apple_platform_type=ios', - '--cpu=ios_arm64', - '--watchos_cpus=armv7k,arm64_32', - ], - 'ios_sim_arm64': [ - '--apple_platform_type=ios', - '--cpu=ios_sim_arm64', - '--watchos_cpus=armv7k', - ], - 'ios_arm64e': [ - '--apple_platform_type=ios', - '--cpu=ios_arm64e', - '--watchos_cpus=armv7k,arm64_32', - ], - 'tvos_arm64': [ - '--apple_platform_type=tvos', - '--tvos_cpus=arm64', - ], - 'ios_i386': [ - '--apple_platform_type=ios', - '--cpu=ios_i386', - '--watchos_cpus=i386', - ], - 'watchos_armv7k': [ - '--apple_platform_type=watchos', - '--watchos_cpus=armv7k,arm64_32', - ], - }, - set(), - BazelFlagsSet( - debug = BazelFlags( - startup = [], - build = [ - '--override_repository=tulsi=/Users/wangrenzhu/Library/Application Support/Tulsi/0.20220209.88/Bazel', - '--compilation_mode=dbg', - '--define=apple.add_debugger_entitlement=1', - '--define=apple.propagate_embedded_extra_outputs=1', - ], - ), - release = BazelFlags( - startup = [], - build = [ - '--override_repository=tulsi=/Users/wangrenzhu/Library/Application Support/Tulsi/0.20220209.88/Bazel', - '--compilation_mode=opt', - '--strip=always', - '--apple_generate_dsym', - '--define=apple.add_debugger_entitlement=1', - '--define=apple.propagate_embedded_extra_outputs=1', - ], - ), - ), - BazelFlagsSet( - flags = BazelFlags( - startup = [], - build = [ - '--announce_rc', - ], - ), - ), - BazelFlagsSet( - flags = BazelFlags( - startup = [], - build = [ - '--define=apple.experimental.tree_artifact_outputs=1', - '--features=debug_prefix_map_pwd_is_dot', - ], - ), - ), - BazelFlagsSet( - flags = BazelFlags( - startup = [], - build = [ - '--define=apple.experimental.tree_artifact_outputs=1', - '--features=debug_prefix_map_pwd_is_dot', - ], - ), - ), - [ - 'TreeArtifactOutputs', - 'DebugPathNormalization', - ], - [ - 'TreeArtifactOutputs', - 'DebugPathNormalization', - ], - BazelFlagsSet(), - {}, -) - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_clean.sh b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_clean.sh deleted file mode 100755 index 7bd3291e2..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_clean.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/bash -# Copyright 2016 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# -# Bridge between Xcode and Bazel for the "clean" action. -# -# Usage: bazel_clean.sh -# Note that the ACTION environment variable is expected to be set to "clean". - -set -eu - -readonly bazel_executable="$1"; shift -readonly bazel_bin_dir="$1"; shift - -if [ -z $# ]; then - readonly arguments=(clean) -else - readonly arguments=("$@" clean) -fi - -if [[ "${ACTION}" != "clean" ]]; then - exit 0 -fi - -# Removes a directory if it exists and is not a symlink. -function remove_dir() { - directory="$1" - - if [[ -d "${directory}" && ! -L "${directory}" ]]; then - rm -r "${directory}" - fi -} - -# Xcode may have generated a bazel-bin directory after a previous clean. -# Remove it to prevent a useless warning. -remove_dir "${bazel_bin_dir}" - -( - set -x - "${bazel_executable}" "${arguments[@]}" -) - diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_options.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_options.py deleted file mode 100755 index dc05b0554..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bazel_options.py +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 2017 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the 'License'); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an 'AS IS' BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Logic to translate Xcode options to Bazel options.""" - - -class BazelOptions(object): - """Converts Xcode features into Bazel command line flags.""" - - def __init__(self, xcode_env): - """Creates a new BazelOptions object. - - Args: - xcode_env: A dictionary of Xcode environment variables. - - Returns: - A BazelOptions instance. - """ - self.xcode_env = xcode_env - - def bazel_feature_flags(self): - """Returns a list of bazel flags for the current Xcode env configuration.""" - flags = [] - if self.xcode_env.get('ENABLE_ADDRESS_SANITIZER') == 'YES': - flags.append('--features=asan') - if self.xcode_env.get('ENABLE_THREAD_SANITIZER') == 'YES': - flags.append('--features=tsan') - if self.xcode_env.get('ENABLE_UNDEFINED_BEHAVIOR_SANITIZER') == 'YES': - flags.append('--features=ubsan') - - return flags diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bootstrap_lldbinit.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bootstrap_lldbinit.py deleted file mode 100755 index e474cd6b4..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/bootstrap_lldbinit.py +++ /dev/null @@ -1,187 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Bootstraps the presence and setup of ~/.lldbinit-tulsiproj.""" - -import io -import os -import shutil -import sys - - -TULSI_LLDBINIT_FILE = os.path.expanduser('~/.lldbinit-tulsiproj') - -CHANGE_NEEDED = 0 -NO_CHANGE = 1 -NOT_FOUND = 2 - - -class BootstrapLLDBInit(object): - """Bootstrap Xcode's preferred lldbinit for Bazel debugging.""" - - def _ExtractLLDBInitContent(self, lldbinit_path, source_string, - add_source_string): - """Extracts non-Tulsi content in a given lldbinit if needed. - - Args: - lldbinit_path: Absolute path to the lldbinit we are writing to. - source_string: String that we wish to write or remove from the lldbinit. - add_source_string: Boolean indicating whether we intend to write or remove - the source string. - - Returns: - (int, [string]): A tuple featuring the status code along with the list - of strings representing content to write to lldbinit - that does not account for the Tulsi-generated strings. - Status code will be 0 if Tulsi-generated strings are - not all there. Status code will be 1 if we intend to - write Tulsi strings and all strings were accounted for. - Alternatively, if we intend to remove the Tulsi strings, - the status code will be 1 if none of the strings were - found. Status code will be 2 if the lldbinit file could - not be found. - """ - if not os.path.isfile(lldbinit_path): - return (NOT_FOUND, []) - content = [] - with open(lldbinit_path) as f: - ignoring = False - - # Split on the newline. This works as long as the last string isn't - # suffixed with \n. - source_lines = source_string.split('\n') - - source_idx = 0 - - # If the last line was suffixed with \n, last elements would be length - # minus 2, accounting for the extra \n. - source_last = len(source_lines) - 1 - - for line in f: - - # For each line found matching source_string, increment the iterator - # and do not append that line to the list. - if source_idx <= source_last and source_lines[source_idx] in line: - - # If we intend to write the source string and all lines were found, - # return an error code with empty content. - if add_source_string and source_idx == source_last: - return (NO_CHANGE, []) - - # Increment for each matching line found. - source_idx += 1 - ignoring = True - - if ignoring: - - # If the last line was found... - if source_lines[source_last] in line: - # Stop ignoring lines and continue appending to content. - ignoring = False - continue - - # If the line could not be found within source_string, append to the - # content array. - content.append(line) - - # If we intend to remove the source string and none of the lines to remove - # were found, return an error code with empty content. - if not add_source_string and source_idx == 0: - return (NO_CHANGE, []) - - return (CHANGE_NEEDED, content) - - def _LinkTulsiLLDBInit(self, add_source_string): - """Adds or removes a reference to ~/.lldbinit-tulsiproj to the primary lldbinit file. - - Xcode 8+ executes the contents of the first available lldbinit on startup. - To help work around this, an external reference to ~/.lldbinit-tulsiproj is - added to that lldbinit. This causes Xcode's lldb-rpc-server to load the - possibly modified contents between Debug runs of any given app. Note that - this only happens after a Debug session terminates; the cache is only fully - invalidated after Xcode is relaunched. - - Args: - add_source_string: Boolean indicating whether we intend to write or remove - the source string. - """ - - # ~/.lldbinit-Xcode is the only lldbinit file that Xcode will read if it is - # present, therefore it has priority. - lldbinit_path = os.path.expanduser('~/.lldbinit-Xcode') - if not os.path.isfile(lldbinit_path): - # If ~/.lldbinit-Xcode does not exist, write the reference to - # ~/.lldbinit-tulsiproj to ~/.lldbinit, the second lldbinit file that - # Xcode will attempt to read if ~/.lldbinit-Xcode isn't present. - lldbinit_path = os.path.expanduser('~/.lldbinit') - - # String that we plan to inject or remove from this lldbinit. - source_string = ('# LLDB bridge [:\n' - '# This was autogenerated by Tulsi in order to modify ' - 'LLDB source-maps at build time.\n' - 'command source %s\n' % TULSI_LLDBINIT_FILE + - '# ]: LLDB bridge') - - # Retrieve the contents of lldbinit if applicable along with a return code. - return_code, content = self._ExtractLLDBInitContent(lldbinit_path, - source_string, - add_source_string) - - out = io.StringIO() - - if add_source_string: - if return_code == CHANGE_NEEDED: - # Print the existing contents of this ~/.lldbinit without any malformed - # tulsi lldbinit block, and add the correct tulsi lldbinit block to the - # end of it. - for line in content: - out.write(line) - elif return_code == NO_CHANGE: - # If we should ignore the contents of this lldbinit, and it has the - # association with ~/.lldbinit-tulsiproj that we want, do not modify it. - return - - # Add a newline after the source_string for protection from other elements - # within the lldbinit file. - out.write(source_string + '\n') - else: - if return_code != CHANGE_NEEDED: - # The source string was not found in the lldbinit so do not modify it. - return - - # Print the existing contents of this ~/.lldbinit without the tulsi - # lldbinit block. - for line in content: - out.write(line) - - out.seek(0, os.SEEK_END) - if out.tell() == 0: - # The file did not contain any content other than the source string so - # remove the file altogether. - os.remove(lldbinit_path) - return - - with open(lldbinit_path, 'w') as outfile: - out.seek(0) - # Negative length to make copyfileobj write the whole file at once. - shutil.copyfileobj(out, outfile, -1) - - def __init__(self, do_inject_link=True): - self._LinkTulsiLLDBInit(do_inject_link) - - -if __name__ == '__main__': - BootstrapLLDBInit() - sys.exit(0) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/clang_stub.sh b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/clang_stub.sh deleted file mode 100755 index ca7548d25..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/clang_stub.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -# Copyright 2022 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# Stub for Xcode's clang invocations to avoid compilation but still create the -# expected compiler outputs. - -set -eu - -while test $# -gt 0 -do - case $1 in - -MF|--serialize-diagnostics) - # TODO: See if we can create a valid diagnostics file (it appear to be - # LLVM bitcode), currently we get warnings like: - # file.dia:1:1: Could not read serialized diagnostics file: error("Invalid diagnostics signature") - shift - touch $1 - ;; - *.o) - break - ;; - esac - - shift -done diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/install_genfiles.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/install_genfiles.py deleted file mode 100755 index 2bf32c9c0..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/install_genfiles.py +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Symlinks files generated by Bazel into bazel-tulsi-includes for indexing.""" - - -import json -import os -import shutil -import sys - - -class Installer(object): - """Symlinks generated files into bazel-tulsi-includes.""" - - def __init__(self, bazel_exec_root, preserve_tulsi_includes=True, - output_root=None): - """Initializes the installer with the proper Bazel paths.""" - - self.bazel_exec_root = bazel_exec_root - self.preserve_tulsi_includes = preserve_tulsi_includes - # The folder must begin with an underscore as otherwise Bazel will delete - # it whenever it builds. See tulsi_aspects.bzl for futher explanation. - if not output_root: - output_root = bazel_exec_root - self.tulsi_root = os.path.join(output_root, 'bazel-tulsi-includes') - - def PrepareTulsiIncludes(self): - """Creates tulsi includes, possibly removing the old folder.""" - - tulsi_root = self.tulsi_root - if not self.preserve_tulsi_includes and os.path.exists(tulsi_root): - shutil.rmtree(tulsi_root) - if not os.path.exists(tulsi_root): - os.mkdir(tulsi_root) - - def InstallForTulsiouts(self, tulsiouts): - """Creates tulsi includes and symlinks generated sources.""" - self.PrepareTulsiIncludes() - - for file_path in tulsiouts: - try: - output_data = json.load(open(file_path)) - self.InstallForData(output_data) - except (ValueError, IOError) as e: - print('Failed to load output data file "%s". %s' % (file_path, e)) - - def InstallForData(self, output_data): - """Symlinks generated sources present in the output_data.""" - bazel_exec_root = self.bazel_exec_root - tulsi_root = self.tulsi_root - - for gs in output_data['generated_sources']: - real_path, link_path = gs - src = os.path.join(bazel_exec_root, real_path) - - # Bazel outputs are not guaranteed to be created if nothing references - # them. This check skips the processing if an output was declared - # but not created. - if not os.path.exists(src): - continue - - # The /x/x/ part is here to match the number of directory components - # between tulsi root and bazel root. See tulsi_aspects.bzl for futher - # explanation. - dst = os.path.join(tulsi_root, 'x/x/', link_path) - - dst_dir = os.path.dirname(dst) - if not os.path.exists(dst_dir): - os.makedirs(dst_dir) - - # It's important to use lexists() here in case dst is a broken symlink - # (in which case exists() would return False). - if os.path.lexists(dst): - # Don't need to do anything if the link hasn't changed. - if os.readlink(dst) == src: - continue - - # Link changed; must remove it otherwise os.symlink will fail. - os.unlink(dst) - - os.symlink(src, dst) - - -if __name__ == '__main__': - if len(sys.argv) < 3: - sys.stderr.write('usage: %s ' - '<.tulsiouts JSON files>\n' % sys.argv[0]) - exit(1) - - Installer(sys.argv[1]).InstallForTulsiouts(sys.argv[2:]) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/ld_stub.sh b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/ld_stub.sh deleted file mode 100755 index 1fd6bc6be..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/ld_stub.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash -# Copyright 2022 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# Stub for Xcode's ld invocations to avoid linking but still create the expected -# linker outputs. - -set -eu - -while test $# -gt 0 -do - case $1 in - *.dat) - # Create an empty .dat file containing just a simple header. - echo -n -e '\x00lld\0' > $1 - ;; - *) - ;; - esac - - shift -done diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/swiftc_stub.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/swiftc_stub.py deleted file mode 100755 index 2988460c2..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/swiftc_stub.py +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2022 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Stub to avoid swiftc but create the expected swiftc outputs.""" - -import json -import os -import pathlib -import subprocess -import sys - - -def _TouchFile(filepath): - """Touch the given file: create if necessary and update its mtime.""" - pathlib.Path(filepath).touch() - - -def _HandleOutputMapFile(filepath): - # Touch all output files referenced in the map. See the documentation here: - # https://github.com/apple/swift/blob/main/docs/Driver.md#output-file-maps - with open(filepath, 'rb') as file: - output_map = json.load(file) - for single_file_outputs in output_map.values(): - for output in single_file_outputs.values(): - _TouchFile(output) - - -def _CreateModuleFiles(module_path): - _TouchFile(module_path) - filename_no_ext = os.path.splitext(module_path)[0] - _TouchFile(filename_no_ext + '.swiftdoc') - _TouchFile(filename_no_ext + '.swiftsourceinfo') - - -def main(args): - # Xcode may call `swiftc -v` which we need to pass through. - if args == ['-v'] or args == ['--version']: - return subprocess.call(['swiftc', '-v']) - - index = 0 - num_args = len(args) - # Compare against length - 1 since we only care about arguments which come in - # pairs. - while index < num_args - 1: - cur_arg = args[index] - - if cur_arg == '-output-file-map': - index += 1 - output_file_map = args[index] - _HandleOutputMapFile(output_file_map) - elif cur_arg == '-emit-module-path': - index += 1 - module_path = args[index] - _CreateModuleFiles(module_path) - elif cur_arg == '-emit-objc-header-path': - index += 1 - header_path = args[index] - _TouchFile(header_path) - index += 1 - return 0 - - -if __name__ == '__main__': - sys.exit(main(sys.argv[1:])) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/symbol_cache_schema.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/symbol_cache_schema.py deleted file mode 100755 index 48101d75e..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/symbol_cache_schema.py +++ /dev/null @@ -1,119 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Manages our dSYM SQLite database schema.""" - -import errno -import os -import sqlite3 - - -SQLITE_SYMBOL_CACHE_PATH = os.path.expanduser('~/Library/Application Support/' - 'Tulsi/Scripts/symbol_cache.db') - - -class SymbolCacheSchema(object): - """Defines and updates the SQLite database used for DBGShellCommands.""" - - current_version = 1 - - def UpdateSchemaV1(self, connection): - """Updates the database to the v1 schema. - - Args: - connection: Connection to the database that needs to be updated. - - Returns: - True if the database reported that it was updated to v1. - False if not. - """ - # Create the table (schema version 1). - cursor = connection.cursor() - cursor.execute('CREATE TABLE symbol_cache(' - 'uuid TEXT PRIMARY KEY, ' - 'dsym_path TEXT, ' - 'architecture TEXT' - ');') - # NOTE: symbol_cache (uuid) already has an index, as the PRIMARY KEY. - # Create a unique index to keep dSYM paths and architectures unique. - cursor.execute('CREATE UNIQUE INDEX idx_dsym_arch ' - 'ON ' - 'symbol_cache(' - 'dsym_path, ' - 'architecture' - ');') - cursor.execute('PRAGMA user_version = 1;') - - # Verify the updated user_version, as confirmation of the update. - cursor.execute('PRAGMA user_version;') - return cursor.fetchone()[0] == 1 - - def VerifySchema(self, connection): - """Updates the database to the latest schema. - - Args: - connection: Connection to the database that needs to be updated. - - Returns: - True if the database reported that it was updated to the latest schema. - False if not. - """ - cursor = connection.cursor() - cursor.execute('PRAGMA user_version;') # Default is 0 - db_version = cursor.fetchone()[0] - - # Update to the latest schema in the given database, if necessary. - if db_version < self.current_version: - # Future schema updates will build on this. - if self.UpdateSchemaV1(connection): - db_version = 1 - - # Return if the database has been updated to the latest schema. - return db_version == self.current_version - - def InitDB(self, db_path): - """Initializes a new connection to a SQLite database. - - Args: - db_path: String representing a reference to the SQLite database. - - Returns: - A sqlite3.connection object representing an active connection to - the database referenced by db_path. - """ - # If this is not an in-memory SQLite database... - if ':memory:' not in db_path: - # Create all subdirs before we create a new db or connect to existing. - if not os.path.isfile(db_path): - try: - os.makedirs(os.path.dirname(db_path)) - except OSError as e: - if e.errno != errno.EEXIST: - raise - - connection = sqlite3.connect(db_path) - - # Update to the latest schema and return the db connection. - if self.VerifySchema(connection): - return connection - else: - return None - - def __init__(self, db_path=SQLITE_SYMBOL_CACHE_PATH): - self.connection = self.InitDB(db_path) - - def __del__(self): - if self.connection: - self.connection.close() diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/tulsi_logging.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/tulsi_logging.py deleted file mode 100755 index 9b72cb299..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/tulsi_logging.py +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 2017 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the 'License'); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an 'AS IS' BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Logging routines used by Tulsi scripts.""" - -import logging -import logging.handlers -import os -import sys - - -def validity_check(): - """Returns a warning message from logger initialization, if applicable.""" - return None - - -class Logger(object): - """Tulsi specific logging.""" - - def __init__(self): - logging_dir = os.path.expanduser('~/Library/Application Support/Tulsi') - if not os.path.exists(logging_dir): - os.mkdir(logging_dir) - - logfile = os.path.join(logging_dir, 'build_log.txt') - - # Currently only creates a single logger called 'tulsi_logging'. If - # additional loggers are needed, consider adding a name attribute to the - # Logger. - self._logger = logging.getLogger('tulsi_logging') - self._logger.setLevel(logging.INFO) - - try: - file_handler = logging.handlers.RotatingFileHandler(logfile, - backupCount=20) - file_handler.setLevel(logging.INFO) - # Create a new log file for each build. - file_handler.doRollover() - self._logger.addHandler(file_handler) - except (IOError, OSError) as err: - filename = 'none' - if hasattr(err, 'filename'): - filename = err.filename - sys.stderr.write('Failed to set up logging to file: %s (%s).\n' % - (os.strerror(err.errno), filename)) - sys.stderr.flush() - - console = logging.StreamHandler() - console.setLevel(logging.INFO) - self._logger.addHandler(console) - - def log_bazel_message(self, message): - self._logger.info(message) - - def log_action(self, action_name, action_id, seconds, start=None, end=None): - """Logs the start, duration, and end of an action.""" - del action_id # Unused by this logger. - if start: - self._logger.info('<**> %s start: %f', action_name, start) - - # Log to file and print to stdout for display in the Xcode log. - self._logger.info('<*> %s completed in %0.3f ms', - action_name, seconds * 1000) - - if end: - self._logger.info('<**> %s end: %f', action_name, end) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/update_symbol_cache.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/update_symbol_cache.py deleted file mode 100644 index b1acd779c..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/update_symbol_cache.py +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Update the Tulsi dSYM symbol cache.""" - -import sqlite3 -from symbol_cache_schema import SQLITE_SYMBOL_CACHE_PATH -from symbol_cache_schema import SymbolCacheSchema - - -class UpdateSymbolCache(object): - """Provides a common interface to update a UUID referencing a dSYM.""" - - def UpdateUUID(self, uuid, dsym_path, arch): - """Updates a given UUID entry in the database. - - Args: - uuid: A UUID representing a binary slice in the dSYM bundle. - dsym_path: An absolute path to the dSYM bundle. - arch: The binary slice's architecture. - - Returns: - None: If no error occurred in inserting the new set of values. - String: If a sqlite3.error was raised upon attempting to store new - values into the dSYM cache. - """ - con = self.cache_schema.connection - cur = con.cursor() - # Relies on the UNIQUE constraint between dsym_path + architecture to - # update the UUID if dsym_path and arch match an existing pair, or - # create a new row if this combination of dsym_path and arch is unique. - try: - cur.execute('INSERT OR REPLACE INTO symbol_cache ' - '(uuid, dsym_path, architecture) ' - 'VALUES("%s", "%s", "%s");' % (uuid, dsym_path, arch)) - con.commit() - except sqlite3.Error as e: - return e.message - return None - - def __init__(self, db_path=SQLITE_SYMBOL_CACHE_PATH): - self.cache_schema = SymbolCacheSchema(db_path) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/user_build.py b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/user_build.py deleted file mode 100755 index 6e4fba0d6..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Scripts/user_build.py +++ /dev/null @@ -1,111 +0,0 @@ -#!/usr/bin/python3 -# Copyright 2018 The Tulsi Authors. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""Invokes Bazel builds for the given target using Tulsi specific flags.""" - - -import argparse -import pipes -import subprocess -import sys -from bazel_build_settings import BUILD_SETTINGS - - -def _FatalError(msg, exit_code=1): - """Prints a fatal error message to stderr and exits.""" - sys.stderr.write(msg) - sys.exit(exit_code) - - -def _BuildSettingsTargetForTargets(targets): - """Returns the singular target to use when fetching build settings.""" - return targets[0] if len(targets) == 1 else None - - -def _CreateCommand(targets, build_settings, test, release, - config, xcode_version, force_swift): - """Creates a Bazel command for targets with the specified settings.""" - target = _BuildSettingsTargetForTargets(targets) - bazel, startup, flags = build_settings.flags_for_target( - target, not release, config, is_swift_override=force_swift) - bazel_action = 'test' if test else 'build' - - command = [bazel] - command.extend(startup) - command.append(bazel_action) - command.extend(flags) - if xcode_version: - command.append('--xcode_version=%s' % xcode_version) - command.append('--tool_tag=tulsi:user_build') - command.extend(targets) - - return command - - -def _QuoteCommandForShell(cmd): - cmd = [pipes.quote(x) for x in cmd] - return ' '.join(cmd) - - -def _InterruptSafeCall(cmd): - p = subprocess.Popen(cmd) - try: - return p.wait() - except KeyboardInterrupt: - return p.wait() - - -def main(): - if not BUILD_SETTINGS: - _FatalError('Unable to fetch build settings. Please report a Tulsi bug.') - - default_config = BUILD_SETTINGS.defaultPlatformConfigId - config_options = BUILD_SETTINGS.platformConfigFlags - config_help = ( - 'Bazel apple config (used for flags). Default: {}').format(default_config) - - parser = argparse.ArgumentParser(description='Invoke a Bazel build or test ' - 'with the same flags as Tulsi.') - parser.add_argument('--test', dest='test', action='store_true', default=False) - parser.add_argument('--release', dest='release', action='store_true', - default=False) - parser.add_argument('--noprint_cmd', dest='print_cmd', action='store_false', - default=True) - parser.add_argument('--norun', dest='run', action='store_false', default=True) - parser.add_argument('--config', help=config_help, default=default_config, - choices=config_options) - parser.add_argument('--xcode_version', help='Bazel --xcode_version flag.') - parser.add_argument('--force_swift', dest='swift', action='store_true', - default=None, help='Forcibly treat the given targets ' - 'as containing Swift.') - parser.add_argument('--force_noswift', dest='swift', action='store_false', - default=None, help='Forcibly treat the given targets ' - 'as not containing Swift.') - parser.add_argument('targets', nargs='+') - - args = parser.parse_args() - command = _CreateCommand(args.targets, BUILD_SETTINGS, args.test, - args.release, args.config, args.xcode_version, - args.swift) - if args.print_cmd: - print(_QuoteCommandForShell(command)) - - if args.run: - return _InterruptSafeCall(command) - return 0 - - -if __name__ == '__main__': - sys.exit(main()) diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit deleted file mode 100644 index 8d8c9be87..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/Utils/lldbinit +++ /dev/null @@ -1,6 +0,0 @@ -# This file is autogenerated by Tulsi and should not be edited. -# This sets lldb's working directory to the Bazel workspace root used by 'OlaFaceUnity.xcodeproj'. -platform settings -w "/Users/wangrenzhu/Documents/github/mediapipe-render/" -# This enables implicitly loading Clang modules which can be disabled when a Swift module was built with explicit modules enabled. -settings set -- target.swift-extra-clang-flags "-fimplicit-module-maps" -settings clear target.source-map diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root deleted file mode 120000 index 7d0bceaaa..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root +++ /dev/null @@ -1 +0,0 @@ -/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc/execroot/mediapipe \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-output-base b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-output-base deleted file mode 120000 index 5da447eee..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-output-base +++ /dev/null @@ -1 +0,0 @@ -/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-workspace b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-workspace deleted file mode 120000 index 7d0bceaaa..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/.tulsi/tulsi-workspace +++ /dev/null @@ -1 +0,0 @@ -/private/var/tmp/_bazel_wangrenzhu/b244be861f40c753b454f38ce4e943dc/execroot/mediapipe \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme deleted file mode 100644 index 098a6116e..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme deleted file mode 100644 index 220903477..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme deleted file mode 100644 index 1c64bfe82..000000000 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.xcscheme +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj new file mode 100644 index 000000000..f4e91d482 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj @@ -0,0 +1,2243 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 55; + objects = { + +/* Begin PBXBuildFile section */ + 36B2393B288934B100A41D9E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B2393A288934B100A41D9E /* AppDelegate.m */; }; + 36B2393E288934B100A41D9E /* SceneDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B2393D288934B100A41D9E /* SceneDelegate.m */; }; + 36B23941288934B100A41D9E /* ViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36B23940288934B100A41D9E /* ViewController.mm */; }; + 36B23944288934B100A41D9E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 36B23942288934B100A41D9E /* Main.storyboard */; }; + 36B23946288934B200A41D9E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 36B23945288934B200A41D9E /* Assets.xcassets */; }; + 36B23949288934B200A41D9E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 36B23947288934B200A41D9E /* LaunchScreen.storyboard */; }; + 36B2394C288934B200A41D9E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B2394B288934B200A41D9E /* main.m */; }; + 36B239BB28893D0000A41D9E /* OlaCameraFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */; }; + 36B239BC28893D0000A41D9E /* OlaCameraFramework.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 36B239BF28893FCE00A41D9E /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239BE28893FCE00A41D9E /* AVFoundation.framework */; }; + 36B239C128893FD200A41D9E /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C028893FD200A41D9E /* CoreVideo.framework */; }; + 36B239C328893FD700A41D9E /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C228893FD700A41D9E /* AssetsLibrary.framework */; }; + 36B239C528893FDD00A41D9E /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C428893FDD00A41D9E /* OpenGLES.framework */; }; + 36B239C728893FE200A41D9E /* Metal.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C628893FE200A41D9E /* Metal.framework */; }; + 36B239C828893FED00A41D9E /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C028893FD200A41D9E /* CoreVideo.framework */; }; + 36B239CA28893FF700A41D9E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239C928893FF700A41D9E /* QuartzCore.framework */; }; + 36B239CC2889400700A41D9E /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B239CB2889400700A41D9E /* CoreMedia.framework */; }; + 36B23F22288A83FB00A41D9E /* OlaFaceUnityFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */; }; + 36B23F23288A83FB00A41D9E /* OlaFaceUnityFramework.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 36B239A428893CEE00A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = AED7A97F9878980200000000; + remoteInfo = OlaCameraFramework; + }; + 36B239A628893CEE00A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = AED7A97F7683FBD400000000; + remoteInfo = _idx_OlaCamera_D4C1E04C_ios_min11.0; + }; + 36B239A828893CEE00A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = AED7A97F1037468800000000; + remoteInfo = _idx_OlaCamera_D4C1E04C_ios_min15.5; + }; + 36B239AA28893CEE00A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = AED7A97FB5F5C90C00000000; + remoteInfo = "mediapipe-render-ios-camera-OlaCamera"; + }; + 36B239B428893CF500A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = D807E5015522F68E00000000; + remoteInfo = OlaCameraFramework; + }; + 36B23CCF288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BC2D4982400000000; + remoteInfo = OlaFaceUnityFramework; + }; + 36B23CD1288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B1505E2FA00000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0; + }; + 36B23CD3288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B6FA0708400000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5; + }; + 36B23CD5288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF5C4F8A200000000; + remoteInfo = _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0; + }; + 36B23CD7288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B856E889200000000; + remoteInfo = _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5; + }; + 36B23CD9288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B23DC8F5000000000; + remoteInfo = _idx_begin_loop_calculator_A45991B3_ios_min11.0; + }; + 36B23CDB288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B68F79D3600000000; + remoteInfo = _idx_begin_loop_calculator_A45991B3_ios_min15.5; + }; + 36B23CDD288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B72426CA600000000; + remoteInfo = _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0; + }; + 36B23CDF288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BFA091E5200000000; + remoteInfo = _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5; + }; + 36B23CE1288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B234C0F6C00000000; + remoteInfo = "_idx_core_core-ios_B15523BE_ios_min11.0"; + }; + 36B23CE3288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA33D624200000000; + remoteInfo = "_idx_core_core-ios_B15523BE_ios_min15.5"; + }; + 36B23CE5288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B78D51A7E00000000; + remoteInfo = _idx_detection_projection_calculator_C563E307_ios_min11.0; + }; + 36B23CE7288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BB84C5CCE00000000; + remoteInfo = _idx_detection_projection_calculator_C563E307_ios_min15.5; + }; + 36B23CED288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B2748771000000000; + remoteInfo = _idx_file_path_740566D4_ios_min11.0; + }; + 36B23CEF288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BD4F269EE00000000; + remoteInfo = _idx_file_path_740566D4_ios_min15.5; + }; + 36B23CF5288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B54A66D1C00000000; + remoteInfo = _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0; + }; + 36B23CF7288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B629012EE00000000; + remoteInfo = _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5; + }; + 36B23CF9288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B729B09E400000000; + remoteInfo = _idx_image_opencv_0CCDA0DE_ios_min11.0; + }; + 36B23CFB288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BD0FA2A8400000000; + remoteInfo = _idx_image_opencv_0CCDA0DE_ios_min15.5; + }; + 36B23D01288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA0CAC80600000000; + remoteInfo = _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0; + }; + 36B23D03288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B099B45E200000000; + remoteInfo = _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5; + }; + 36B23D05288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B5762E32800000000; + remoteInfo = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0; + }; + 36B23D07288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B132FBD2C00000000; + remoteInfo = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5; + }; + 36B23D09288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BBBC10FE200000000; + remoteInfo = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0; + }; + 36B23D0B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B2D873AE800000000; + remoteInfo = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5; + }; + 36B23D0D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B28C3D43800000000; + remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0; + }; + 36B23D0F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B7A752E9000000000; + remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5; + }; + 36B23D11288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B6919418400000000; + remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0; + }; + 36B23D13288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B55851C0600000000; + remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5; + }; + 36B23D15288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B85ADE62E00000000; + remoteInfo = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0; + }; + 36B23D17288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BAA9B127200000000; + remoteInfo = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5; + }; + 36B23D19288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA6E657AE00000000; + remoteInfo = _idx_inference_calculator_metal_1F21F8B4_ios_min11.0; + }; + 36B23D1B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B0F8DACCE00000000; + remoteInfo = _idx_inference_calculator_metal_1F21F8B4_ios_min15.5; + }; + 36B23D1D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B2255DF3600000000; + remoteInfo = _idx_location_image_frame_opencv_31458695_ios_min11.0; + }; + 36B23D1F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B68726D3200000000; + remoteInfo = _idx_location_image_frame_opencv_31458695_ios_min15.5; + }; + 36B23D21288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B577ED22A00000000; + remoteInfo = _idx_math_8C8F00BB_ios_min11.0; + }; + 36B23D23288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B5D88C1C400000000; + remoteInfo = _idx_math_8C8F00BB_ios_min15.5; + }; + 36B23D25288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA6892EDC00000000; + remoteInfo = _idx_matrix_A43B592D_ios_min11.0; + }; + 36B23D27288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B1CE1D39200000000; + remoteInfo = _idx_matrix_A43B592D_ios_min15.5; + }; + 36B23D29288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BD7539B8400000000; + remoteInfo = _idx_non_max_suppression_calculator_6019C843_ios_min11.0; + }; + 36B23D2B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BB9A2F8CA00000000; + remoteInfo = _idx_non_max_suppression_calculator_6019C843_ios_min15.5; + }; + 36B23D2D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B7CF3974400000000; + remoteInfo = _idx_olamodule_common_library_511040E9_ios_min11.0; + }; + 36B23D2F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B83FAA32800000000; + remoteInfo = _idx_olamodule_common_library_511040E9_ios_min15.5; + }; + 36B23D39288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BE8AA1C7C00000000; + remoteInfo = _idx_profiler_resource_util_09647121_ios_min11.0; + }; + 36B23D3B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B3318179600000000; + remoteInfo = _idx_profiler_resource_util_09647121_ios_min15.5; + }; + 36B23D3D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF4C6B57E00000000; + remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0; + }; + 36B23D3F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BDAE1885C00000000; + remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5; + }; + 36B23D41288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA6F9610E00000000; + remoteInfo = _idx_split_vector_calculator_7B6F598A_ios_min11.0; + }; + 36B23D43288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BB9EC9D4800000000; + remoteInfo = _idx_split_vector_calculator_7B6F598A_ios_min15.5; + }; + 36B23D45288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF506777200000000; + remoteInfo = _idx_tensor_3731EC48_ios_min11.0; + }; + 36B23D47288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B8A51A90C00000000; + remoteInfo = _idx_tensor_3731EC48_ios_min15.5; + }; + 36B23D49288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B879D222200000000; + remoteInfo = _idx_tensors_to_detections_calculator_714B0603_ios_min11.0; + }; + 36B23D4B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B7C73EE9A00000000; + remoteInfo = _idx_tensors_to_detections_calculator_714B0603_ios_min15.5; + }; + 36B23D4D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B1BA8AC3A00000000; + remoteInfo = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0; + }; + 36B23D4F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B3B1F172200000000; + remoteInfo = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5; + }; + 36B23D51288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BAFDA2DAC00000000; + remoteInfo = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0; + }; + 36B23D53288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B29F009D000000000; + remoteInfo = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5; + }; + 36B23D55288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B699CC77A00000000; + remoteInfo = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0; + }; + 36B23D57288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B29E5D2BC00000000; + remoteInfo = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5; + }; + 36B23D59288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA4EA8B5400000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0; + }; + 36B23D5B288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA952909800000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5; + }; + 36B23D5D288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF381D01A00000000; + remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0; + }; + 36B23D5F288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B01385DD800000000; + remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5; + }; + 36B23D65288A7FB600A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B2D84D71E00000000; + remoteInfo = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; + }; + 36B23E4B288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 87427C8CCEDD951E00000000; + remoteInfo = OlaFaceUnityFramework; + }; + 36B23EBE288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B4C65DBEC00000000; + remoteInfo = _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0; + }; + 36B23EC0288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B195209B400000000; + remoteInfo = _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5; + }; + 36B23EC2288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B163FFCB200000000; + remoteInfo = _idx_MPPMetalHelper_D2A62E10_ios_min11.0; + }; + 36B23EC4288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B434A7C7E00000000; + remoteInfo = _idx_MPPMetalHelper_D2A62E10_ios_min15.5; + }; + 36B23EC6288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B33EF04E800000000; + remoteInfo = _idx_MPPMetalUtil_B3671FB1_ios_min11.0; + }; + 36B23EC8288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BBCA54A3A00000000; + remoteInfo = _idx_MPPMetalUtil_B3671FB1_ios_min15.5; + }; + 36B23ECA288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B831FD45C00000000; + remoteInfo = _idx_annotation_renderer_FA9E6EC1_ios_min11.0; + }; + 36B23ECC288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B6D584F4C00000000; + remoteInfo = _idx_annotation_renderer_FA9E6EC1_ios_min15.5; + }; + 36B23ECE288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA679284000000000; + remoteInfo = _idx_cpu_op_resolver_6A07387A_ios_min11.0; + }; + 36B23ED0288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA568C51600000000; + remoteInfo = _idx_cpu_op_resolver_6A07387A_ios_min15.5; + }; + 36B23ED2288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF7CED4EA00000000; + remoteInfo = _idx_file_helpers_cpu_util_D61E8025_ios_min11.0; + }; + 36B23ED4288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BFB4ACA3400000000; + remoteInfo = _idx_file_helpers_cpu_util_D61E8025_ios_min15.5; + }; + 36B23ED6288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B420B582E00000000; + remoteInfo = _idx_gl_calculator_helper_E72AAA43_ios_min11.0; + }; + 36B23ED8288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B1302D6E800000000; + remoteInfo = _idx_gl_calculator_helper_E72AAA43_ios_min15.5; + }; + 36B23EDA288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B8B6DC24E00000000; + remoteInfo = _idx_gl_simple_shaders_BB6C8515_ios_min11.0; + }; + 36B23EDC288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B49F24B8A00000000; + remoteInfo = _idx_gl_simple_shaders_BB6C8515_ios_min15.5; + }; + 36B23EDE288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B3B18B64A00000000; + remoteInfo = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0; + }; + 36B23EE0288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B226657AA00000000; + remoteInfo = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5; + }; + 36B23EE2288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B76BC0CD600000000; + remoteInfo = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0; + }; + 36B23EE4288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA629C1E800000000; + remoteInfo = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5; + }; + 36B23EE6288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BA0E750B200000000; + remoteInfo = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0; + }; + 36B23EE8288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B2D64C76200000000; + remoteInfo = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5; + }; + 36B23EEA288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BBAF897E200000000; + remoteInfo = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0; + }; + 36B23EEC288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B39AFE7EC00000000; + remoteInfo = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5; + }; + 36B23EEE288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF0ED19A200000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0; + }; + 36B23EF0288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF010336C00000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5; + }; + 36B23EF2288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B8FA98B6200000000; + remoteInfo = _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0; + }; + 36B23EF4288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B65A317A000000000; + remoteInfo = _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5; + }; + 36B23EF6288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B21F5DD7400000000; + remoteInfo = _idx_op_resolver_72040923_ios_min11.0; + }; + 36B23EF8288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BFE962B8A00000000; + remoteInfo = _idx_op_resolver_72040923_ios_min15.5; + }; + 36B23EFA288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BC697AAFA00000000; + remoteInfo = _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0; + }; + 36B23EFC288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B0C2B90A200000000; + remoteInfo = _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5; + }; + 36B23EFE288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BD6BF7A0C00000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0; + }; + 36B23F00288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B0708921600000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5; + }; + 36B23F02288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BF74A8D4000000000; + remoteInfo = _idx_resource_util_DF96AF63_ios_min11.0; + }; + 36B23F04288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BD32E42E600000000; + remoteInfo = _idx_resource_util_DF96AF63_ios_min15.5; + }; + 36B23F06288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BBE50ED1A00000000; + remoteInfo = _idx_shader_util_6E7BE0E8_ios_min11.0; + }; + 36B23F08288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B67CBA0C400000000; + remoteInfo = _idx_shader_util_6E7BE0E8_ios_min15.5; + }; + 36B23F0A288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BFCAD13AA00000000; + remoteInfo = _idx_tflite_model_loader_689F8605_ios_min11.0; + }; + 36B23F0C288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B099C3AEC00000000; + remoteInfo = _idx_tflite_model_loader_689F8605_ios_min15.5; + }; + 36B23F0E288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BE91AE08600000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0; + }; + 36B23F10288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B323D0BEE00000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5; + }; + 36B23F12288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B26507A8400000000; + remoteInfo = _idx_transpose_conv_bias_EED10535_ios_min11.0; + }; + 36B23F14288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B9983007000000000; + remoteInfo = _idx_transpose_conv_bias_EED10535_ios_min15.5; + }; + 36B23F16288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38BDD48277C00000000; + remoteInfo = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0; + }; + 36B23F18288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B1D65549A00000000; + remoteInfo = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5; + }; + 36B23F1A288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B3799B02A00000000; + remoteInfo = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0; + }; + 36B23F1C288A83E900A41D9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = C9EBA38B7E0C41A600000000; + remoteInfo = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 36B239BD28893D0000A41D9E /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 36B239BC28893D0000A41D9E /* OlaCameraFramework.framework in Embed Frameworks */, + 36B23F23288A83FB00A41D9E /* OlaFaceUnityFramework.framework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 36B23936288934B100A41D9E /* OpipeBeautyModuleExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OpipeBeautyModuleExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 36B23939288934B100A41D9E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 36B2393A288934B100A41D9E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 36B2393C288934B100A41D9E /* SceneDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SceneDelegate.h; sourceTree = ""; }; + 36B2393D288934B100A41D9E /* SceneDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SceneDelegate.m; sourceTree = ""; }; + 36B2393F288934B100A41D9E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; + 36B23940288934B100A41D9E /* ViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = ViewController.mm; sourceTree = ""; }; + 36B23943288934B100A41D9E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 36B23945288934B200A41D9E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 36B23948288934B200A41D9E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 36B2394A288934B200A41D9E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 36B2394B288934B200A41D9E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = OlaVideo.xcodeproj; path = ../../../../../ios/camera/OlaVideo.xcodeproj; sourceTree = ""; }; + 36B239BE28893FCE00A41D9E /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; + 36B239C028893FD200A41D9E /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; }; + 36B239C228893FD700A41D9E /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; }; + 36B239C428893FDD00A41D9E /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + 36B239C628893FE200A41D9E /* Metal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Metal.framework; path = System/Library/Frameworks/Metal.framework; sourceTree = SDKROOT; }; + 36B239C928893FF700A41D9E /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + 36B239CB2889400700A41D9E /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; }; + 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = FaceUnityFramework.xcodeproj; path = ../../framework/FaceUnityFramework.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 36B23933288934B100A41D9E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 36B239BB28893D0000A41D9E /* OlaCameraFramework.framework in Frameworks */, + 36B239C728893FE200A41D9E /* Metal.framework in Frameworks */, + 36B239BF28893FCE00A41D9E /* AVFoundation.framework in Frameworks */, + 36B23F22288A83FB00A41D9E /* OlaFaceUnityFramework.framework in Frameworks */, + 36B239CC2889400700A41D9E /* CoreMedia.framework in Frameworks */, + 36B239C128893FD200A41D9E /* CoreVideo.framework in Frameworks */, + 36B239C328893FD700A41D9E /* AssetsLibrary.framework in Frameworks */, + 36B239C528893FDD00A41D9E /* OpenGLES.framework in Frameworks */, + 36B239C828893FED00A41D9E /* CoreVideo.framework in Frameworks */, + 36B239CA28893FF700A41D9E /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 36B2392D288934B100A41D9E = { + isa = PBXGroup; + children = ( + 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */, + 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */, + 36B23938288934B100A41D9E /* OpipeBeautyModuleExample */, + 36B23937288934B100A41D9E /* Products */, + 36B239B828893D0000A41D9E /* Frameworks */, + ); + sourceTree = ""; + }; + 36B23937288934B100A41D9E /* Products */ = { + isa = PBXGroup; + children = ( + 36B23936288934B100A41D9E /* OpipeBeautyModuleExample.app */, + ); + name = Products; + sourceTree = ""; + }; + 36B23938288934B100A41D9E /* OpipeBeautyModuleExample */ = { + isa = PBXGroup; + children = ( + 36B23939288934B100A41D9E /* AppDelegate.h */, + 36B2393A288934B100A41D9E /* AppDelegate.m */, + 36B2393C288934B100A41D9E /* SceneDelegate.h */, + 36B2393D288934B100A41D9E /* SceneDelegate.m */, + 36B2393F288934B100A41D9E /* ViewController.h */, + 36B23940288934B100A41D9E /* ViewController.mm */, + 36B23942288934B100A41D9E /* Main.storyboard */, + 36B23945288934B200A41D9E /* Assets.xcassets */, + 36B23947288934B200A41D9E /* LaunchScreen.storyboard */, + 36B2394A288934B200A41D9E /* Info.plist */, + 36B2394B288934B200A41D9E /* main.m */, + ); + path = OpipeBeautyModuleExample; + sourceTree = ""; + }; + 36B2399D28893CED00A41D9E /* Products */ = { + isa = PBXGroup; + children = ( + 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */, + 36B239A728893CEE00A41D9E /* lib_idx_OlaCamera_D4C1E04C_ios_min11.0.a */, + 36B239A928893CEE00A41D9E /* lib_idx_OlaCamera_D4C1E04C_ios_min15.5.a */, + 36B239AB28893CEE00A41D9E /* libmediapipe-render-ios-camera-OlaCamera.a */, + ); + name = Products; + sourceTree = ""; + }; + 36B239B828893D0000A41D9E /* Frameworks */ = { + isa = PBXGroup; + children = ( + 36B239CB2889400700A41D9E /* CoreMedia.framework */, + 36B239C928893FF700A41D9E /* QuartzCore.framework */, + 36B239C628893FE200A41D9E /* Metal.framework */, + 36B239C428893FDD00A41D9E /* OpenGLES.framework */, + 36B239C228893FD700A41D9E /* AssetsLibrary.framework */, + 36B239C028893FD200A41D9E /* CoreVideo.framework */, + 36B239BE28893FCE00A41D9E /* AVFoundation.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 36B23C80288A7FB600A41D9E /* Products */ = { + isa = PBXGroup; + children = ( + 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */, + 36B23EBF288A83E900A41D9E /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a */, + 36B23EC1288A83E900A41D9E /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a */, + 36B23EC3288A83E900A41D9E /* lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a */, + 36B23EC5288A83E900A41D9E /* lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a */, + 36B23EC7288A83E900A41D9E /* lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a */, + 36B23EC9288A83E900A41D9E /* lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a */, + 36B23CD2288A7FB600A41D9E /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a */, + 36B23CD4288A7FB600A41D9E /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a */, + 36B23CD6288A7FB600A41D9E /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a */, + 36B23CD8288A7FB600A41D9E /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a */, + 36B23ECB288A83E900A41D9E /* lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a */, + 36B23ECD288A83E900A41D9E /* lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a */, + 36B23CDA288A7FB600A41D9E /* lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a */, + 36B23CDC288A7FB600A41D9E /* lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a */, + 36B23CDE288A7FB600A41D9E /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a */, + 36B23CE0288A7FB600A41D9E /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a */, + 36B23CE2288A7FB600A41D9E /* lib_idx_core_core-ios_B15523BE_ios_min11.0.a */, + 36B23CE4288A7FB600A41D9E /* lib_idx_core_core-ios_B15523BE_ios_min15.5.a */, + 36B23ECF288A83E900A41D9E /* lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a */, + 36B23ED1288A83E900A41D9E /* lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a */, + 36B23CE6288A7FB600A41D9E /* lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a */, + 36B23CE8288A7FB600A41D9E /* lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a */, + 36B23ED3288A83E900A41D9E /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a */, + 36B23ED5288A83E900A41D9E /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a */, + 36B23CEE288A7FB600A41D9E /* lib_idx_file_path_740566D4_ios_min11.0.a */, + 36B23CF0288A7FB600A41D9E /* lib_idx_file_path_740566D4_ios_min15.5.a */, + 36B23ED7288A83E900A41D9E /* lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a */, + 36B23ED9288A83E900A41D9E /* lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a */, + 36B23EDB288A83E900A41D9E /* lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a */, + 36B23EDD288A83E900A41D9E /* lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a */, + 36B23EDF288A83E900A41D9E /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a */, + 36B23EE1288A83E900A41D9E /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a */, + 36B23EE3288A83E900A41D9E /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a */, + 36B23EE5288A83E900A41D9E /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a */, + 36B23CF6288A7FB600A41D9E /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a */, + 36B23CF8288A7FB600A41D9E /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a */, + 36B23EE7288A83E900A41D9E /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a */, + 36B23EE9288A83E900A41D9E /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a */, + 36B23CFA288A7FB600A41D9E /* lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a */, + 36B23CFC288A7FB600A41D9E /* lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a */, + 36B23EEB288A83E900A41D9E /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a */, + 36B23EED288A83E900A41D9E /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a */, + 36B23D02288A7FB600A41D9E /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a */, + 36B23D04288A7FB600A41D9E /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a */, + 36B23D06288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a */, + 36B23D08288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a */, + 36B23D0A288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a */, + 36B23D0C288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a */, + 36B23D0E288A7FB600A41D9E /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a */, + 36B23D10288A7FB600A41D9E /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a */, + 36B23D12288A7FB600A41D9E /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a */, + 36B23D14288A7FB600A41D9E /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a */, + 36B23D16288A7FB600A41D9E /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a */, + 36B23D18288A7FB600A41D9E /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a */, + 36B23D1A288A7FB600A41D9E /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a */, + 36B23D1C288A7FB600A41D9E /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a */, + 36B23D1E288A7FB600A41D9E /* lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a */, + 36B23D20288A7FB600A41D9E /* lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a */, + 36B23D22288A7FB600A41D9E /* lib_idx_math_8C8F00BB_ios_min11.0.a */, + 36B23D24288A7FB600A41D9E /* lib_idx_math_8C8F00BB_ios_min15.5.a */, + 36B23D26288A7FB600A41D9E /* lib_idx_matrix_A43B592D_ios_min11.0.a */, + 36B23D28288A7FB600A41D9E /* lib_idx_matrix_A43B592D_ios_min15.5.a */, + 36B23EEF288A83E900A41D9E /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a */, + 36B23EF1288A83E900A41D9E /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a */, + 36B23EF3288A83E900A41D9E /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a */, + 36B23EF5288A83E900A41D9E /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a */, + 36B23D2A288A7FB600A41D9E /* lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a */, + 36B23D2C288A7FB600A41D9E /* lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a */, + 36B23D2E288A7FB600A41D9E /* lib_idx_olamodule_common_library_511040E9_ios_min11.0.a */, + 36B23D30288A7FB600A41D9E /* lib_idx_olamodule_common_library_511040E9_ios_min15.5.a */, + 36B23EF7288A83E900A41D9E /* lib_idx_op_resolver_72040923_ios_min11.0.a */, + 36B23EF9288A83E900A41D9E /* lib_idx_op_resolver_72040923_ios_min15.5.a */, + 36B23EFB288A83E900A41D9E /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a */, + 36B23EFD288A83E900A41D9E /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a */, + 36B23EFF288A83E900A41D9E /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a */, + 36B23F01288A83E900A41D9E /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a */, + 36B23D3A288A7FB600A41D9E /* lib_idx_profiler_resource_util_09647121_ios_min11.0.a */, + 36B23D3C288A7FB600A41D9E /* lib_idx_profiler_resource_util_09647121_ios_min15.5.a */, + 36B23D3E288A7FB600A41D9E /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a */, + 36B23D40288A7FB600A41D9E /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a */, + 36B23F03288A83E900A41D9E /* lib_idx_resource_util_DF96AF63_ios_min11.0.a */, + 36B23F05288A83E900A41D9E /* lib_idx_resource_util_DF96AF63_ios_min15.5.a */, + 36B23F07288A83E900A41D9E /* lib_idx_shader_util_6E7BE0E8_ios_min11.0.a */, + 36B23F09288A83E900A41D9E /* lib_idx_shader_util_6E7BE0E8_ios_min15.5.a */, + 36B23D42288A7FB600A41D9E /* lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a */, + 36B23D44288A7FB600A41D9E /* lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a */, + 36B23D46288A7FB600A41D9E /* lib_idx_tensor_3731EC48_ios_min11.0.a */, + 36B23D48288A7FB600A41D9E /* lib_idx_tensor_3731EC48_ios_min15.5.a */, + 36B23D4A288A7FB600A41D9E /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a */, + 36B23D4C288A7FB600A41D9E /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a */, + 36B23D4E288A7FB600A41D9E /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a */, + 36B23D50288A7FB600A41D9E /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a */, + 36B23D52288A7FB600A41D9E /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a */, + 36B23D54288A7FB600A41D9E /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a */, + 36B23D56288A7FB600A41D9E /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a */, + 36B23D58288A7FB600A41D9E /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a */, + 36B23F0B288A83E900A41D9E /* lib_idx_tflite_model_loader_689F8605_ios_min11.0.a */, + 36B23F0D288A83E900A41D9E /* lib_idx_tflite_model_loader_689F8605_ios_min15.5.a */, + 36B23D5A288A7FB600A41D9E /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a */, + 36B23D5C288A7FB600A41D9E /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a */, + 36B23D5E288A7FB600A41D9E /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a */, + 36B23D60288A7FB600A41D9E /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a */, + 36B23F0F288A83E900A41D9E /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a */, + 36B23F11288A83E900A41D9E /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a */, + 36B23F13288A83E900A41D9E /* lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a */, + 36B23F15288A83E900A41D9E /* lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a */, + 36B23F17288A83E900A41D9E /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a */, + 36B23F19288A83E900A41D9E /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a */, + 36B23F1B288A83E900A41D9E /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a */, + 36B23F1D288A83E900A41D9E /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a */, + 36B23D66288A7FB600A41D9E /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 36B23935288934B100A41D9E /* OpipeBeautyModuleExample */ = { + isa = PBXNativeTarget; + buildConfigurationList = 36B2394F288934B200A41D9E /* Build configuration list for PBXNativeTarget "OpipeBeautyModuleExample" */; + buildPhases = ( + 36B23932288934B100A41D9E /* Sources */, + 36B23933288934B100A41D9E /* Frameworks */, + 36B23934288934B100A41D9E /* Resources */, + 36B239BD28893D0000A41D9E /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 36B23E4C288A83E900A41D9E /* PBXTargetDependency */, + 36B239B528893CF500A41D9E /* PBXTargetDependency */, + ); + name = OpipeBeautyModuleExample; + productName = OpipeBeautyModuleExample; + productReference = 36B23936288934B100A41D9E /* OpipeBeautyModuleExample.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 36B2392E288934B100A41D9E /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastUpgradeCheck = 1340; + TargetAttributes = { + 36B23935288934B100A41D9E = { + CreatedOnToolsVersion = 13.4.1; + }; + }; + }; + buildConfigurationList = 36B23931288934B100A41D9E /* Build configuration list for PBXProject "OpipeBeautyModuleExample" */; + compatibilityVersion = "Xcode 13.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 36B2392D288934B100A41D9E; + productRefGroup = 36B23937288934B100A41D9E /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 36B23C80288A7FB600A41D9E /* Products */; + ProjectRef = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + }, + { + ProductGroup = 36B2399D28893CED00A41D9E /* Products */; + ProjectRef = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 36B23935288934B100A41D9E /* OpipeBeautyModuleExample */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = OlaCameraFramework.framework; + remoteRef = 36B239A428893CEE00A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B239A728893CEE00A41D9E /* lib_idx_OlaCamera_D4C1E04C_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaCamera_D4C1E04C_ios_min11.0.a; + remoteRef = 36B239A628893CEE00A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B239A928893CEE00A41D9E /* lib_idx_OlaCamera_D4C1E04C_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaCamera_D4C1E04C_ios_min15.5.a; + remoteRef = 36B239A828893CEE00A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B239AB28893CEE00A41D9E /* libmediapipe-render-ios-camera-OlaCamera.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libmediapipe-render-ios-camera-OlaCamera.a"; + remoteRef = 36B239AA28893CEE00A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = OlaFaceUnityFramework.framework; + remoteRef = 36B23CCF288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CD2288A7FB600A41D9E /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a; + remoteRef = 36B23CD1288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CD4288A7FB600A41D9E /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a; + remoteRef = 36B23CD3288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CD6288A7FB600A41D9E /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a; + remoteRef = 36B23CD5288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CD8288A7FB600A41D9E /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a; + remoteRef = 36B23CD7288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CDA288A7FB600A41D9E /* lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a; + remoteRef = 36B23CD9288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CDC288A7FB600A41D9E /* lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a; + remoteRef = 36B23CDB288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CDE288A7FB600A41D9E /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a; + remoteRef = 36B23CDD288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CE0288A7FB600A41D9E /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a; + remoteRef = 36B23CDF288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CE2288A7FB600A41D9E /* lib_idx_core_core-ios_B15523BE_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_core-ios_B15523BE_ios_min11.0.a"; + remoteRef = 36B23CE1288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CE4288A7FB600A41D9E /* lib_idx_core_core-ios_B15523BE_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_core-ios_B15523BE_ios_min15.5.a"; + remoteRef = 36B23CE3288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CE6288A7FB600A41D9E /* lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a; + remoteRef = 36B23CE5288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CE8288A7FB600A41D9E /* lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a; + remoteRef = 36B23CE7288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CEE288A7FB600A41D9E /* lib_idx_file_path_740566D4_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_path_740566D4_ios_min11.0.a; + remoteRef = 36B23CED288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CF0288A7FB600A41D9E /* lib_idx_file_path_740566D4_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_path_740566D4_ios_min15.5.a; + remoteRef = 36B23CEF288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CF6288A7FB600A41D9E /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a; + remoteRef = 36B23CF5288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CF8288A7FB600A41D9E /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a; + remoteRef = 36B23CF7288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CFA288A7FB600A41D9E /* lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a; + remoteRef = 36B23CF9288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23CFC288A7FB600A41D9E /* lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a; + remoteRef = 36B23CFB288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D02288A7FB600A41D9E /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a; + remoteRef = 36B23D01288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D04288A7FB600A41D9E /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a; + remoteRef = 36B23D03288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D06288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a; + remoteRef = 36B23D05288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D08288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a; + remoteRef = 36B23D07288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D0A288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a; + remoteRef = 36B23D09288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D0C288A7FB600A41D9E /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a; + remoteRef = 36B23D0B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D0E288A7FB600A41D9E /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a; + remoteRef = 36B23D0D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D10288A7FB600A41D9E /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a; + remoteRef = 36B23D0F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D12288A7FB600A41D9E /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a; + remoteRef = 36B23D11288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D14288A7FB600A41D9E /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a; + remoteRef = 36B23D13288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D16288A7FB600A41D9E /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a; + remoteRef = 36B23D15288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D18288A7FB600A41D9E /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a; + remoteRef = 36B23D17288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D1A288A7FB600A41D9E /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a; + remoteRef = 36B23D19288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D1C288A7FB600A41D9E /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a; + remoteRef = 36B23D1B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D1E288A7FB600A41D9E /* lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a; + remoteRef = 36B23D1D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D20288A7FB600A41D9E /* lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a; + remoteRef = 36B23D1F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D22288A7FB600A41D9E /* lib_idx_math_8C8F00BB_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_math_8C8F00BB_ios_min11.0.a; + remoteRef = 36B23D21288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D24288A7FB600A41D9E /* lib_idx_math_8C8F00BB_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_math_8C8F00BB_ios_min15.5.a; + remoteRef = 36B23D23288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D26288A7FB600A41D9E /* lib_idx_matrix_A43B592D_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_matrix_A43B592D_ios_min11.0.a; + remoteRef = 36B23D25288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D28288A7FB600A41D9E /* lib_idx_matrix_A43B592D_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_matrix_A43B592D_ios_min15.5.a; + remoteRef = 36B23D27288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D2A288A7FB600A41D9E /* lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a; + remoteRef = 36B23D29288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D2C288A7FB600A41D9E /* lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a; + remoteRef = 36B23D2B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D2E288A7FB600A41D9E /* lib_idx_olamodule_common_library_511040E9_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_olamodule_common_library_511040E9_ios_min11.0.a; + remoteRef = 36B23D2D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D30288A7FB600A41D9E /* lib_idx_olamodule_common_library_511040E9_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_olamodule_common_library_511040E9_ios_min15.5.a; + remoteRef = 36B23D2F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D3A288A7FB600A41D9E /* lib_idx_profiler_resource_util_09647121_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_profiler_resource_util_09647121_ios_min11.0.a; + remoteRef = 36B23D39288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D3C288A7FB600A41D9E /* lib_idx_profiler_resource_util_09647121_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_profiler_resource_util_09647121_ios_min15.5.a; + remoteRef = 36B23D3B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D3E288A7FB600A41D9E /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a; + remoteRef = 36B23D3D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D40288A7FB600A41D9E /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a; + remoteRef = 36B23D3F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D42288A7FB600A41D9E /* lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a; + remoteRef = 36B23D41288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D44288A7FB600A41D9E /* lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a; + remoteRef = 36B23D43288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D46288A7FB600A41D9E /* lib_idx_tensor_3731EC48_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensor_3731EC48_ios_min11.0.a; + remoteRef = 36B23D45288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D48288A7FB600A41D9E /* lib_idx_tensor_3731EC48_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensor_3731EC48_ios_min15.5.a; + remoteRef = 36B23D47288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D4A288A7FB600A41D9E /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a; + remoteRef = 36B23D49288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D4C288A7FB600A41D9E /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a; + remoteRef = 36B23D4B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D4E288A7FB600A41D9E /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a; + remoteRef = 36B23D4D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D50288A7FB600A41D9E /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a; + remoteRef = 36B23D4F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D52288A7FB600A41D9E /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a; + remoteRef = 36B23D51288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D54288A7FB600A41D9E /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a; + remoteRef = 36B23D53288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D56288A7FB600A41D9E /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a; + remoteRef = 36B23D55288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D58288A7FB600A41D9E /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a; + remoteRef = 36B23D57288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D5A288A7FB600A41D9E /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a; + remoteRef = 36B23D59288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D5C288A7FB600A41D9E /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a; + remoteRef = 36B23D5B288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D5E288A7FB600A41D9E /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a; + remoteRef = 36B23D5D288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D60288A7FB600A41D9E /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a; + remoteRef = 36B23D5F288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23D66288A7FB600A41D9E /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; + remoteRef = 36B23D65288A7FB600A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EBF288A83E900A41D9E /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a; + remoteRef = 36B23EBE288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EC1288A83E900A41D9E /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a; + remoteRef = 36B23EC0288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EC3288A83E900A41D9E /* lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a; + remoteRef = 36B23EC2288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EC5288A83E900A41D9E /* lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a; + remoteRef = 36B23EC4288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EC7288A83E900A41D9E /* lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a; + remoteRef = 36B23EC6288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EC9288A83E900A41D9E /* lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a; + remoteRef = 36B23EC8288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ECB288A83E900A41D9E /* lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a; + remoteRef = 36B23ECA288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ECD288A83E900A41D9E /* lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a; + remoteRef = 36B23ECC288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ECF288A83E900A41D9E /* lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a; + remoteRef = 36B23ECE288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ED1288A83E900A41D9E /* lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a; + remoteRef = 36B23ED0288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ED3288A83E900A41D9E /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a; + remoteRef = 36B23ED2288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ED5288A83E900A41D9E /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a; + remoteRef = 36B23ED4288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ED7288A83E900A41D9E /* lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a; + remoteRef = 36B23ED6288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23ED9288A83E900A41D9E /* lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a; + remoteRef = 36B23ED8288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EDB288A83E900A41D9E /* lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a; + remoteRef = 36B23EDA288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EDD288A83E900A41D9E /* lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a; + remoteRef = 36B23EDC288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EDF288A83E900A41D9E /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a; + remoteRef = 36B23EDE288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EE1288A83E900A41D9E /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a; + remoteRef = 36B23EE0288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EE3288A83E900A41D9E /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a; + remoteRef = 36B23EE2288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EE5288A83E900A41D9E /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a; + remoteRef = 36B23EE4288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EE7288A83E900A41D9E /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a; + remoteRef = 36B23EE6288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EE9288A83E900A41D9E /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a; + remoteRef = 36B23EE8288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EEB288A83E900A41D9E /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a; + remoteRef = 36B23EEA288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EED288A83E900A41D9E /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a; + remoteRef = 36B23EEC288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EEF288A83E900A41D9E /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a; + remoteRef = 36B23EEE288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EF1288A83E900A41D9E /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a; + remoteRef = 36B23EF0288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EF3288A83E900A41D9E /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a; + remoteRef = 36B23EF2288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EF5288A83E900A41D9E /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a; + remoteRef = 36B23EF4288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EF7288A83E900A41D9E /* lib_idx_op_resolver_72040923_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_op_resolver_72040923_ios_min11.0.a; + remoteRef = 36B23EF6288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EF9288A83E900A41D9E /* lib_idx_op_resolver_72040923_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_op_resolver_72040923_ios_min15.5.a; + remoteRef = 36B23EF8288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EFB288A83E900A41D9E /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a; + remoteRef = 36B23EFA288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EFD288A83E900A41D9E /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a; + remoteRef = 36B23EFC288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23EFF288A83E900A41D9E /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a; + remoteRef = 36B23EFE288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F01288A83E900A41D9E /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a; + remoteRef = 36B23F00288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F03288A83E900A41D9E /* lib_idx_resource_util_DF96AF63_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_resource_util_DF96AF63_ios_min11.0.a; + remoteRef = 36B23F02288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F05288A83E900A41D9E /* lib_idx_resource_util_DF96AF63_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_resource_util_DF96AF63_ios_min15.5.a; + remoteRef = 36B23F04288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F07288A83E900A41D9E /* lib_idx_shader_util_6E7BE0E8_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_shader_util_6E7BE0E8_ios_min11.0.a; + remoteRef = 36B23F06288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F09288A83E900A41D9E /* lib_idx_shader_util_6E7BE0E8_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_shader_util_6E7BE0E8_ios_min15.5.a; + remoteRef = 36B23F08288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F0B288A83E900A41D9E /* lib_idx_tflite_model_loader_689F8605_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_loader_689F8605_ios_min11.0.a; + remoteRef = 36B23F0A288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F0D288A83E900A41D9E /* lib_idx_tflite_model_loader_689F8605_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_loader_689F8605_ios_min15.5.a; + remoteRef = 36B23F0C288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F0F288A83E900A41D9E /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a; + remoteRef = 36B23F0E288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F11288A83E900A41D9E /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a; + remoteRef = 36B23F10288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F13288A83E900A41D9E /* lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a; + remoteRef = 36B23F12288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F15288A83E900A41D9E /* lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a; + remoteRef = 36B23F14288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F17288A83E900A41D9E /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a; + remoteRef = 36B23F16288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F19288A83E900A41D9E /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a; + remoteRef = 36B23F18288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F1B288A83E900A41D9E /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a; + remoteRef = 36B23F1A288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 36B23F1D288A83E900A41D9E /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a; + remoteRef = 36B23F1C288A83E900A41D9E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 36B23934288934B100A41D9E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 36B23949288934B200A41D9E /* LaunchScreen.storyboard in Resources */, + 36B23946288934B200A41D9E /* Assets.xcassets in Resources */, + 36B23944288934B100A41D9E /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 36B23932288934B100A41D9E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 36B23941288934B100A41D9E /* ViewController.mm in Sources */, + 36B2393B288934B100A41D9E /* AppDelegate.m in Sources */, + 36B2394C288934B200A41D9E /* main.m in Sources */, + 36B2393E288934B100A41D9E /* SceneDelegate.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 36B239B528893CF500A41D9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OlaCameraFramework; + targetProxy = 36B239B428893CF500A41D9E /* PBXContainerItemProxy */; + }; + 36B23E4C288A83E900A41D9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = OlaFaceUnityFramework; + targetProxy = 36B23E4B288A83E900A41D9E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 36B23942288934B100A41D9E /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 36B23943288934B100A41D9E /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 36B23947288934B200A41D9E /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 36B23948288934B200A41D9E /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 36B2394D288934B200A41D9E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_BITCODE = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + }; + name = Debug; + }; + 36B2394E288934B200A41D9E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_BITCODE = NO; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 36B23950288934B200A41D9E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = C3LTWQ77D5; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/OpipeBeautyModuleExample", + ); + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = OpipeBeautyModuleExample/Info.plist; + INFOPLIST_KEY_NSCameraUsageDescription = ""; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.ola.OpipeBeautyModuleExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + TARGETED_DEVICE_FAMILY = 1; + }; + name = Debug; + }; + 36B23951288934B200A41D9E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = C3LTWQ77D5; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/OpipeBeautyModuleExample", + ); + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = OpipeBeautyModuleExample/Info.plist; + INFOPLIST_KEY_NSCameraUsageDescription = ""; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.ola.OpipeBeautyModuleExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + TARGETED_DEVICE_FAMILY = 1; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 36B23931288934B100A41D9E /* Build configuration list for PBXProject "OpipeBeautyModuleExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 36B2394D288934B200A41D9E /* Debug */, + 36B2394E288934B200A41D9E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 36B2394F288934B200A41D9E /* Build configuration list for PBXNativeTarget "OpipeBeautyModuleExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 36B23950288934B200A41D9E /* Debug */, + 36B23951288934B200A41D9E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 36B2392E288934B100A41D9E /* Project object */; +} diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..919434a62 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..21594d3fe2a216b859692effca12009dba0a8e11 GIT binary patch literal 165833 zcmeFa2YeJo8~DGwvv=FB_ufkaq+EJXq$9nB-p)&Mfk2WADO7~f3@BRHgA70;0$ldHd&&+)1nPIm8nw92+jGsa9e5>_tI^ymvv5 z@Z@lD`*@;vF&bkA7Sx1l!aV-0Qql$EFbSr|444s1!_u(;mVsqrSy(ofgXLm*SU%PR z>xuQkdSiXCzF0r3KQ;`z1q)%Lv2j=#R)f`I6R^qHtr(9%Y!-Ge_8|5+HXnNudm3Ag zJ%g>l>ajK0I&35MBK8~h7xp&}a1y6+2AAS8T!pJ~J#N4)xD|KeF5HLv@s@ZiJRJ|< z*?11#8ovQ=i?_o&;hphrcz3)v-Ulzh2jD~Sq4-FA6kdoI;iK^}co|-fkH@R<3HU^O zDt;@@;}D;P&&KEAcjNct58#jBkK(KGHTbjmT6`V89^Zg(#Gk{T$6vr-!MEbu@Hg?@ z__*eL0{CE5h{7?KZ{BHsyaDpHJK@uW@Aryp?&=Us2K{yE) z;U-!Vt%y!UXQB&nGtrgkMsz275Iu=rL~o)$F_aia+(LwiQerGIj;JPThiN}a}L>;l1c!pR(tRvPF8;DnkSBVdZ4~dV6kBLu+Pl^4+0pcL> z8F7gCia0@>B+e1v62B6^5x)ZfNMHe0U;}pG08ZcnZr}l4-~%l{0AzqXkPq5}4xl6G z0eXUB5C$b+G#CR)!B{X3l!0_+w_2a$uxAbATJB1_4!K29zm7m`nt%gJZRwd6YTO>#H+7P*JqOTJCML+&HrCEp|8 zCqE_+kw?g*W#Ez*dzBArMtGKh>KtH>j2A!;eg6lICBMQubk zi3W)Vi-w4XiiU}Xi$;h>ibjcoqFY48qH&_}qAJl8(Nxi`qM4#uq6MObqNhZQM0KLY zq9vlGqGh6|MaxAiMe9W`ie3_J5p5Oi7QH1pEIJ}ODmo_mT6A1=LUdAeN_1LuM)a-d z7tvp$zr~c87AwR`ak99DxTUz2I7OT)P7|k#1L6#ErZ`u8lem+(v$&VIw|J0vus9;F z6pt5IiL1pm;#%6Y=2dD?Bhp30CN2o`s$EbN!9krNxhFU?bqt;U!s8^_0sSl_RsgJ0SsZXd+sr}Re z>LB$Qb%^?kIzgSJ&Qae|zf!+ZzteywX$x(oZM2rd2~Cv zJ>8A&P8ZTebTJ*KOX$(`7`l`mOOK<==t_DbJ&m4D&!+F7@24N2pP^UK_4G=56}_5X zLqAKerPtBx>F4R!=xy|NdJnyq{*eBNK1+W?pQFE}zoWmWf1rP)f1-b;f1&?i0K+gW zqhi#InXxcgOg59lxkPce&_I%Wk^&unG3G259P%uZ$(^9J)KvzvK~*~9E( zK4v~+4l&1=ubFR{b1cm=EX#7Ngq5-~R?aF|C97g}td(`M9<~*m!e+BM?2T+YwmsX2 z?aTIK`?Ce?0Cp4`WN%?ZY$031R?(FOyM}$1eUW{QeVyIHZfAF}Z?JE&d)U3~KK5Pq1NKAqBX&P~ zfIY~5#U5slut&LR9OQ1}W^;FNcXRh}4{#51k8+Q3^SJrkQ`{nMDYuMU!PRqXxM#Ty z+(zz2?j`Ou?saY}w~gDyy}|9__HyrX?{Ob-A9Dw|gWMO~m)ueA7lBwZ4aWJ_`+ttB@| z+Dh6*g5*WXtCH6w zTO?a0J0-g$Z%Ot@_DSBAd?@)yvR`sQ^10*-$q~s>$qC6x$yv!aQc6lo87V8}q!OuA zDwE2k3aL`6m0F}$sZDB^dZj*Tsx(cSE)7UCq^+elNDHI`qywdcq=ThHq(h~{q{F2n zq$8yv=@@CLG$O5(PLfWRPLWQP-Y%UfeNwtWx={L*bdj`9x>&kIx>UMM`n0rOx=y-Y z`l9qD=@#i$={D(h=?>{$>D$s{(yyh*r6;5(rKhB)rDvpPrQb-;Nq><3F8xFLrwqtQ znM5X)$z*bwUS^P`%L1|tS*9#YmMzPX<;wD8`Lfosn`E73U1T@QddYgr2FV7?hRBA> zhRF(LMY5@~TV>N^(`7ScybQ{2lieC9;*WRkEG3 zU9vZ1Z_0Md-jeN+?UlVPdq=iU_JQnx?4ay3*^K*D$kbZ$aCd+@_cz~`3>?LaV zIWLFu+vK;)XUb>EXUp%9-z|Sg{)Bw4yiUGYzC^xMzDmAYzC*rKzDxdw{7w08`CIZm z^1br6!M;s;R15Rnt_{RWnq)3aV~X-LASrb)V`H)uXBfs)eejREt#4 zs8*=9sJ5!MskWMlktLD@a zwNx!r%hd|CQms;})q1r}ZC88MK6R=(O`Wa|sPomW)&124>H+G3>Otzk>LKc(>S5~P z>JjQ&)T7m7)D`N8dZK!gda`iOy?)eF=M)laDxsq55>)l1Y%)yvc?)N9r2 z)Gw%CRBu*qQEydmQ*T%AQSVhBRUcD-tv;?kp+2cTr9Q1bqdu$tM*Y3|H}&u8KQx2} zXgG~TBh_d%I!&r3O_Qz(XfiaJnk-GWCP$O2$8R8|OoDbNhpjL_6*YBduy z6E%}GlQmN`Q#H40rfH^YZqwYQnWK3?^Ppy~W}arg=1I*`%`(kvn%6a(G@CVBG+Q;> zG}|>hG&?oBG;e9%)4Z?wK(k+SKyz4gL~~SgTyswIt(MWUT23p`O0_brT&vJ3wJNPz ztJm7JcCAJ74>xc7b-G_9^WmZJl{tuDZUue!Bj;VY=bEYF&-4RyRR6Q8!69SvN&DRd=gy znhxsj)ZL}KU-y9S3Ef=XJl%ZV65UeWtGd^8uj@AHHtV+Nw(7R&w(EB2cItNP-qpRQ z`$YGt?n~WQy2H97y3@KddXZkNr}VU*(X)C^FVRc&GQC`{)|>QZy+!ZRyY(>@J7S zY<-Ttx4w_QufCtYzrH{}KtE7FNIzIVL_b1bq%YQw)sNFx>udD2`U(2!`WgDi^-t*M z>gVa_>z~vw&@a?KrC+44(=XGn(y!NV(7&R8RsWiPhkmF2kp6T17y2*tU+E9)kLZu; zkLkbGAJ?DOf3N>R|C|1I12B*VkwI*b8RQ1PA<2+zXkln+Xk|z-q#Du;>4tzI+i;_y zjiIBVlcA@fm!Y?zk72N3h@sLj-cV(zHq;nu4HFC#4U-I$4O0x$4YLe)8}2bYVtCZ> zm|>yeDZ>kf7Y#2NUN*d9c-8Ql;dR3%!)C)4!w$n9!(PMth7Sw}4WAhf8IBpgHvDbG zjJT070wZY@8O27*NE;cW)Tl9Pjb@|8=rMYYK4Ype&3Lo1tFfE0yRnC{r?Ho@x3Q10 zud$zTpmBt;&{$*~XDl<88*7adjQ1JuH$Gr|(D;z?VdEplM~#meA2&W>eA2kYxYW4J zxYD@FxY78W@pq4JAB}$+ z|1$n(^}Iy(|Xee(?-*CrsqvB zm|ir!WO~{3x@m`Lr)iIAujxb6N2ZTWpP0TdeQEmD^qc8-(;uckO@EpGHe+VoOqhY0 zGRw?zv(~IL+st;e!|XICn_HMWm^+#~nLC@im~S?BHFq<2H}^32H1{NofcbOtG4t2vGv>4ApUgj-e=+}R!7YTvWHDPT7OTZ( zv0EG#r^RJ)TRfH|OPVF!l4HrWw6(Oew6}DybhPxa^t2RP!j=-tXv-K&sb#EXoTbcC zZmF8wyd*8YguPmZ`okkXnD@^l4Y}Hi)EMP z4a+{uyO#GX`z;47-&=mL{Al^f^0Va^%deK-EWca+u>5Jot+bV~%B>2k!D_UctS+nD zdV}>wYa8oL*0$Dm*7nv8){fRr*3Q;$*1pz$*1^^x)?2J0YoWEsI?h^VooStAoo&6t zdZ+a+>m2Ld)_bh?TJN(yWSwiBXI*5iv#zk#TUT0FSvOjrv+lLNZGFeO&-$+QJ?s0{ z53CZ;Uj5d?aY_r&`Hk-|EbK6?j z(rp1-zOA+G23tp4C))_yNZTk|&~}S0WGl24*@|spTZwI~ZMTW)*Cw!&6#TWMQmTWwood)Btrw$b*AZHsNIZMW?$+xxZ;Y=>-L*-qL{*?zYD zVprIec9mUi*Vwgoon3D?*o}6R-DdaNefC!N6nnNk$DV7?v$wOiw-2=svk$kAu#dEl zvIp(A*hBV0dy###y~18&ueDFJPq)vo-(kPgzQ|r@Uu<7uUus`wf7-s>{)~Nvz23gY z{+#`J`>XcX>^tl`?Yr#n*!S6w+fUd}+E3X}+t1j~+P|@%vwv&<&i<4APX}<24v9nR zkU4Y?y(7($?g%(C9GQ+RN46u!k?Y8F*fMmk10CO9TKCOIZM zrZ}cLZgos^On1z1@Q#^|yB+s99&$YFnD2PfvB0s=@w8*PW0PaEV~b;}W1C~UV~1m> zW0&I%$D5A5jt?9kIu1AvI*vGwI*vKMc6{SF=cJvClXY@ViBsy7Ipt1;Q|VMWbxy0( z=JYtd&J<^=GtHUn%yag2_H*`k7B~ku2Ra8i2Rny2hdPHjM>)gJ5@(sS+*#|K;GF23 zuIoCPQIp6uDbAfZA^C{;dXPtAgbBS}gbB*&^=X1{Iov%ALIX64saK7pM()pG1 zu=9xXsPmZfYv*z23Fk@YDd#uNpPWBC|8)N461ylD?NYduu4GpWS4&qbSBfjumF7x! z1zZ`fOjoY!CRZm{XIC#*Z&x4JVAl{=p{v9-+BMEq=Bjj!cTICmcg=9|F6g?=b-U{h z*Zr;sTo1bDy5_m&yPk9{a4mK{?ON+v=UVUD;CjLJs_Qk^>#m)yU9LA=Z@TunK6ZWL zI_Ub+^_Ay+!X>x}EH>pM5;rrnHN>Xx}xZnazQHn=TrtJ~>zxqWWGJH?&q&T?nF zZ*bq}?%?j??(Hsc4|b1m7rKkwrS7rr3U`frihH_yrhB&g9{0WO``k~vm%E>FuW;A9 zSGrfZSG(7^pLMTwuXC?=Z*XsPKj(hl{epX&d%Jswd#8Js`wjP-?%nQv?)~lq?t|{n z+=tx9-6z~<+~0a|58(kG(%sJ^@-QBWN9s{}^d7Uv=4t6k^Q3#SJlURnPixOjp0=Kj zo=%>wo^GCAp5C7Ro&wKc&k)a8&p1z+r`%KFiFhhK<2_ZLTF>2{dp!4g?(^L5dBF3a z=ONF-o<}^-cvg7oJu5w{JgYrxJkNU8de(Wic(!`BdA56Ycy@YrdEW56>Dldh%k!yc zzvqDGpyxBsA~(qFUXR!7^?Ci?ByX~}g}0@* zl{dwk>P_=zc(c8^-nQO$-uB*J-rn9m-oD;`-u~VKZ_r!f9qX;|R(Y$vHQq_ynci96 z+1@+6cY5#f-s^qX`-t}m?_BRf?;7v3-nHI!-u2!M-i_WDyf1oR@xJBV8N4!V9$Gj)JC%vb}rT9{PX})w{z?bXG^R@Ba?Ca|5=Iie3;p^!eF#&o$m$Ti@sNVn|)h+JA6BRyM1r_-t)ch z``CBDchL8l?~v~+-zndBzQ6p0ANVOh?U(qaex+aK*ZK8+v)|%(_?>>Q-{)`PZ|P6- zck_4m_we`h_wx7l_wo1j_w)Dn7x)MGhxmj3Tl^*d(f)|P(m%yN)qkshnjiY_^3U-< z=6~G(gnzDoo`1f7iGQhonSYJ{Isfbat^RHPUH&)xd;EL-@A^OVf9l`wKji=1f7pM- zf7E~0|D*r!B#=ZV(MggdMUp1TkYr49(ZXlV&E}oAgN1!lcDXOOlo+J(IL5 zX>HQRq!*K3O?oY9OVZY)x02pV`ZVdYq(ezxB^^%sI_Xr>>7;W>-zI&R^i$Gr$sn0c z)+8H}Ey<2#PjXUntK{_LKyr3+ujJmzeUkeo_e<`dT#!5I;Yz*=gm4&LS7h_6H#S=VOjA<|}PeQhipB+?ax^?P2I8rsPx-wK0?i4Ai zEe}`J1Qni6odX@ZbjZm{$;{7dpOTfGlbMp2o!>DfD<>n6*C9PCHzy}2A=!j^u+$Zp z8M9zk%!b)92j;|Fn41^zVxHn@p5a-Z<0ZUw1?I(km>)~RlCc(8ORN=^!pqRS0y_+{ zBOx1s>>SA64cU7kdmryX+I6T3hsIS#N-Jur+ZWZ8PC)B0#X*IsQ@A8lTUOJ#xU?ox z6gQ*uQ7>h-k8KLD86Sc^Ew)_GkavicaC`n$n6;4O#;VD$;v~s%tt%$}7vl z=z)EOrJ?E?l=0YY9YWP;1xOHAS~IzSxH3|ON<^M0oWZ3P#gU2CNQ>CN+E-PDDn=t| z6*Zm0g|(x*Rg^?f@`7*~T2~4e|C8L%KU{>;#B@$POi-Cllw)hG1D3iRy8*iqYlGc{ zwZ+Sp(<3hDGlyy zSXiljV`48NDSB6C->QhPm{(9+Db!hGF%8oEOHuTUj7}6wqIL?fL0IZyYydWpH}K}g z*kEi3Z{@wb=Y4EAYJMZIk=Q6KC^W!A#LsZ_yDD6Uc$*OBG2X-*gNkV-sIXe6rKJt5 zM#QB}MA%e?E2fO8O-snCP8(fXGp4pMtvp;@8mcU<45y$JsL0NLkX9Zkt}P2!rwIib zEJpkyP$LzM{tQ-+5vYxlnOaj)R$3E&4=coquwpDcEM^cYLgnEhv44iE2lg&NC@w}{ zmkjA$&?mYkdSSlCM)P0^DyBDo9?C)$#pR)@aj`5U{t8Y+B@qnO2+b1ZFP@1+Wt3x; zLSagj&n|CU(Si0M=+k*;q?}A>nHKD??aHrB}4TP#DFTrlZ zW@05HdKaAkETQpi?5;){-;Ff(@t&BJ`~H!VxZxq}5iGS1dzeqE!ye^ZG~{evv_6u9 zip9-R9|_2!Xr&c~L$x)N(@G=NY2isB!APd{5m@XH{k&H+QRjdALNJ4=(dGC=h8AFT zSn3jNA@&ruh;PZa;!~EOdRu}mMdgsnrwMguLxw5Xw`aG40m06lx((>lKUmPYXXlOs zy7lQD?9q8>P~m8jU{JS$ZXJ4d?vGN%k~Dor=OKOD_b&M78Jek6(_1;xr?qlS&CAJY z<;cy-pEfO43oEhJb=WFCozIB<{VcY25g&-v`g&}`sDJ7_3ds^|eGC(!VLgXEkLo>+ zL_xS_3Hsy(tOPYI^hcryUcx@bQlC}Wv6rz|uvf9yu-CCo*k)`CwiVlkZO3+CJF#8Z z8`zuJZtN{=54IP38+!-ahrNrydmsA%`w;sG`xyI#&*F3VJiax5BYzX$j_<&C;=Ax& z`R;sAzBk{O@6Qk52k}GrVf+Yw6n_g}$QSb^{1|>LU&dGPm4f*F*a7Sy_8E2v`yBfM z`x5&KJB%H{j$+5Kud(CU3G5_x3OkLR!OmjeVCS%JvG1_&u^+G>v7fM?v0wNq{vLiY z{{p{<|C0X+;ta%{5YK{mSBQ^*cm(3NL;P`w*F*d@i0^~=VTk_(2@VoYNaR4G2P8&8 zVmu^fLgH~q)I(wuB;ISt_n%R|vxACBlTs!LT~F}Q*F|7Gc&R?vNF=MGBR?r zva`ZiJXXK&k$jxkAQyE2};_R%F z;s)9%quR6yDkfeHH(41a8QFonCfekp8ca{m&ky8e=41!5ax>C18Wl}uc443>tE6E? z>7vTCy}F{wOwS633kyq{C=b$ibAzHWN405x zmD>D=CWR_FE0CF4)Ib|YRGW@L#e}P=sB~2IC0WH6<~!QJGjs9-*|{0{xmlS31aMwn ze&c#d&k3NyYlyHns!QjqE18UNVJ^yHpouPlrVT2qkv6D#hcojsGaHmli>Nj?U!69Y zmqIv@k(rs7mz|ZDo}H5$$j(a7$ZBkCGBb12i*hp>HmJ0yHr=jH8&o!Vx#{^uP0J=b zD?bDAo0p3!D?cNUo}JrRn~b8uKyiLyc7w9XifYs2YPBiOMo-LWs!dZv+{E;S3-gPL zLJb+tk80EF>a;r%s_5tR(f7Wenv)mdR}f$gET_>&IpI{LV0<44a(-G zs5X6?+4N;+=jP>Srst=pXQgK$ZUPNJj~bh-%=DbXjQj@5bc`y~@Be(!pt37OrPolK zu2F3Yu1=dvH}EEXR7PHt2A&_v2_s+QLT{p1RGWcUtIgFzoQXQItn{Lc2HNzGYBTsM zwJ9nrEJQs~Q;3_CO=h4;*&wou3LBc6!BK6HqklDiA8HnXJk&EZ)uyT6cVU`nle(C1 zGa{dDpce%W;e7oB~e|1S6NLZxrId~=@)T9oAwHg{j7|lqO7cp+}s8TkBe#( zy2_FX=LWK}15F1Dx%rv7dD+?NXeg15raQB;8Y7dLQH(mb^qdB|R7Q0vy1J72F9VlA zMqzqRP9tqlMTSF6p{8@|l+lB~i&X2bSpl2mIGRqY#~;U^z~|!g@cH{VJ(S{|wlDx4SnT38n77(s8{pqba8!hX>--6|%O zR+pj)RkXI!^eJVb$&uQc&Xdr5urSYq(zu&GrKl=WRu)|kN{y71REN>JP17e;Uy!P- zv;ygK@hr8ktwEFMNKn(Sg&Cv4Vx}p{0vm^!sS#X)`9Tt_)bh$hwtEF9lnddO<1NwD_&(ap;%?~Y*-TU zxkdaf{B2CP7~g~M9#tG);_Df%7+o_)30lP_ zH)rA>Ef%J(-J8x~(f=i$`YC=;cwGgc!j|Q2Y~dI0+WPNpRS7;o|3_f)_5QB2lx1iqIf92{k{z zj?nT?UKyN(k+2|)2ot`CU%=nKn6P5w`GpA2*^Pme_IAer#L$d))X)(g!XHJD@F4{2 z5Q2mi-MO&Iy@~WGL>^*~NF~yUbRs}x5Sc_4kxk?fx%?7-DZh+=nqSU8!>{1$`IY>t zdLlo@9?>So9?>4Lw>r+=+Bkd9U1#qau-8XmuP?tQ!CryD-T=fNy7*@icf#dVh!QnB zoERyvH-cYRM~vdvUm<&iL|9<22(h<8V6OzRxA9`^(d`m~%7{n|xeA2b^8#`u=!T7# zM6MRC5Fq3x5EF?>#AIR$F_pNLm_|$|X7DfaFYzz)ukf$(uko+*oA}NAmU;rlk((7q z?khj3j@&gs?r{ORC-`j%Ay%Qj_zi)dXAwVdHsMF9T$T{Dk$547-17*zw=R84BK>Q`8v=5# z6Pt+5#1>*Jv5nYH>>zd$yZF8Q+x$EHKK@<)J^p?E1O7w)qk7`aIC6XA$i0h@`#6r= z{y1`O3FHn7$Q?n*p^N_%;U-*8g(Ok4r-(BGa;NzNb;Mcz;1weG z9r2@J<-SK&?lZy4{e-OCp^I5LgES%N5903_a(^M@z7UZ63Egn038nG$Km-&BIUoiU zpaBC|zyS%60vV9=U-5_eBm7bR82>eYoIk;zjUfk&2)Wa7&=MgBT4B?Li$9BS6E3HMO4Mv7$VSM4EdE>_$l<@eGUPyO&?ai- zz>UbteTVn~Z4p1;H{nOgWhDf40yjsI16>euKVJHlMEYJ}h=5#g&;(0jeO{W^iyfWYSj0-uMtHbLM^ zg5`S|ydqo>*Fjt#`-!Yy4@E`-kgZ_5K;kxt8|%Ohh?}mE#5chn1Qyth?}4}(^}1j$ zHXh=Zi*>uYU)}9Iv7xOZG0p%Vf=^;#ek_3L5bWVz-XT1p@xVBt=^=1JAoFwZ1^5zt z1rCEF;3zl-z6Qr3?t-`*;vR^5A?|~?AL2<6Plk94h_|cA)XEK9Ej&a zJP+de5N{3f8z6oo#M?mprg}0x#vhp#(`4e>q@ z?+fvM5bs}4PK-l1HRc|YGXw|=5)ckdxQD~8LwF4!yjOtmK8O!UK=`0w1e=V66Se#V zIZuFaF2o1bk@F!w_zEF>id-Cnuugz*h`lAs&W!Nj>>` z9Kx+}OSn^jaC8E~(u5@}zYgIwfbatW!Ve)nCIR6m0)$N#JQB71Ir*gk;TI4eTStBc z@o`rO;W6?=48r3Agk^}Q%dc9H-;m$M0Q^<}u;Slu_(cQ+{(dEYBY!9VApa!)BL5a) zB3wj39F4({A6fZYIv3$SXpNUv(nn&QGfoA$NZImGLKPB}$9(CrTCgn}Ki= z1q36=U&IKGObE*nqO}No`+!Qh9jbh!tnT!iw%#7 zeF>zdiTD_VGXw}96Cj)@ko!mzauavV7Ck6Hc!%gt(OsfBqPs=+i0&2LC%Rws0K}hw zIC3E7K^!>{PeL5c-zW;S0WUoxp2A;8}sdZy^4Bg23+(flXI~6I}c% z`duLKH;BJjC;9{8FI^ddVoVGKp7w|dp)YYAhmdD{hbY6Ssr-TXo_N5UuoH z(au0|7jd^3e_aLs_6j&%b_bQXkGOw~zkULL@BI4>L&QY_e?!H?#KXlS#3RL{#6j^b z;*c2m81F*-J&3;#@ed%5#$CuFehl$XApR-D_t%Sy z;BSh+-&BYnOz=1Ta`sO=OMHjGAM)rA)rpZu|M?a2caQjfgp>GQp$Gm#n3aAO?M-;| z(jBn)QSlQo{vH?j`|98A-$L;UfxoB3i^O%}#o{I6rQ&7cr^U;~&p`YL#E(M!7{tGZ z_;HAzfcQy>pMv;lh@Yt!*T?x=6Y~JY>jnPKCipv-@BpuGQ%GzCZ^pf+;>`kos9X9b z!QXbo-zA43;^68jYhGR_~tT(^JCZ~rJ^?=wX~f{61+37elO)c*<> zBmnP@{y=NR;<#%@sVHIlGo^-vsE*P?LVRTmQbtPH08OC{&=BpmzI`!;c0fadz6gX$ zqBtSUP5Gi6QeMO%!6FVR)Nu>9U1E8dYDMKD5UCU@l}e-1sQ{HhWl~vGHigdJkU&BT z2^l2hkWfHE2?-S>P)0P6(AHCVF+)h*NVO3*E>P_R5Or}wNSGjDi)~yWu5Vnp2Bwhe zEuh#368Z#+{RI>Yr~$$S2?HdIv7ZRWL5j=-A;T$QM>I7866QJzovMO14qVC0B2*z2 zU31$*6(g6Bup+W9wei5+&K29WkPul$#r8&1Xm2zmu3*msRf|q6K~PShCQ_5A$zH{_>u5{}+epQBOjBsbG$gVG>$pa+j+vLVj;~R|o@wfJ zY7@1Y+Cpumwo%)u9n?;07bJ2akq3!<2niIKjp#>Wl#5 zX-IUgqs~I2%N2t79rdFCBHBd_iJJuw(Kc#GbiEjeV0S{;A5?4~HHG$3L!!F?BHBnT z+;)j>nikQ*PHI|AQ#4I8G)r@|gqG4W8g*#Dq47)N2>3sS|!R^~a-yn3(!d`^S4?pM*bmyp_NOuwd9Qp4z^q|pMmi2T`x) z?nC#b`_cXB0(t;F5E4O1+yaRZBnlx>1c_ougdtG^iP4Z4Q%?_$xry}f*nABg6!pNIxm?_YnOs{RsUi{TTf?{RBOio=4AzL=_~eAyET~ zT1ZTQ#6(C;f&|LL6i7_1rx(QetBdouOyKX<1b@>L{M~k)ziYtX27$kgkeHU>?}f|q z_d2~<;BONoX4KJJAc6KCT*=^s-a)^CaH4k#oiIZ1(r*jLJ7D^4`rR0R`vm@O|9AdA zroR&S`-J|K-cKK(57M8}hv?7gFX%5JF$)s2A#n#J?t}z-+8jvS4T*aoaW5q9tEUgg z`TIJ~-zkB=`xE>m_@wSSCMuz!#ID^84t(MS1XbOL|EmW9jPKgP-=A^sQ}V`m(UlW{R_#>03SALEAv z8gU_)b{-^G*55hUvBndBIMOiIlEV*&zyi5&~*HPz@j9+0@cW8oU` z$FxQKG3_9+B+ehx@pAqj)1B!l@Ye$p%jy{9(_i6^1*RV}AjV&Tz~6F&)8+j?W*CEJ zfzXBpW`w|>uwmg}ZYW|Z1pbPdFjK;eX2vk3%vfd|Q^u4-0`as8600Gx1`^LgVl5=r zL1H~5Hb7!yJrjxZR~@r|%tV2|#C`?h#f1HP?Rx*){QWO8OW+T6PKo^r%w32-W)3!8 zxFGR@Fe8J0pcxr?ylZ40WF8h6dgG#VioUw68W9 z(<;dm31N#FH2ouRxK!Zq^~>CpxML;rya3`VW;L^hd6rqrtYg+Q8<>sEbCB2!3FI_v zg~T>UY=^`SNbH2fE=arqi8t$+7vdnk5(jaU0OIaMN4zHi;=b!3UIP&K3Lw4>iMJAl z@ZC#*n5gGZnEe8VpF(199diH@Z(kvXpEF+}qL?oPSMVL=3Nj0X`IuKPG9QzWbeuUA zWALQF;Ja7A;J3^l0)yW%-!nfjKQcctKQq5DzcRluzeD1ENPGZ^4>ze9I|LHnK;j%EzFoo&V~4Y7S?)VXd=CN6dq#EZ5LdaNC{%_Hom2et0SXL+qH7=> zZU1~E#3w@0b;un7Qz-Sz(kwuY;lG4$&Rq;?rMwGiqQ6w}VQd=}8u3=1}L``aKbEqS*vae^b}A(Pgv4Kv_!|NY2`Vivjg${6Ms-yb z9u}&s42Mu4nxgRVNL4AyN>uQu(mn;L=LMe+$J3!x^tOW9!kWpI;Zz}6Y2PuCif~Ra zP>SL_1Qp5AKt8G6;wjtz^ZW~*m)f&*^cZydpQ~ZoKIauk?TZ5BRE0`w+->*87C2+2 zdWTS|cR~Po=dj9N1u4Y^DWe04^DEeU*!xiw7xrHEJ_tk*h!?XDAe#^3$4Myq)Yb@x z?Fpa^E-gm!YZRIbKI&FofOgNIGXvf2D!+)zOce3s>{BT66Z-@^mz~GXXP;yjunQqz zAYdWjAdo;Hg+K;@d^x*_tz#FnOW36>TBV0T0f7wyI|L30oDjHB=Yv{|JQiz8&_jrX zR6R_OcGRQ3!{2$#hhUMB>zB36+dLREue$2!K!cP%#QX?7jE zp54H1WS?W7hd>E|1_B)f1_(?LSP;(aOPHK}nSF(Qm8ug$nN^`6M-xJ2!au7kQELg6 zL7;*_9aIdOIyD8IrJSFdk(Zw@9Gae&m64U(%8?R4hk&Q%=kMruxGetI^F#*vkkotc{>go8mbUD!?RW)u);P^hdn zyqMjDl_d1qD(D4)_8$%M^Yc>k^D;8B(3#HYINCr?RD(cPUTPpGJFY~2Zd3!LS6=Er zx~8KupqpxtlQnHxLe|chEd8Zq#XdI^P=94i85a*Tk#^y4&Nn3{s(&!pyNpuD7`WBv2fGjan+bbelDYGzJ)epU`TYdRa9 zI-41bN5p=HOxEr}P+)Z3tt{vB&>%ev7I&q!3F5Jyr zSFRh^o$JB%N*E8qrj1Gz!mU~ULElpDqk=SFZNxlvq@yM+sJgTqQT2tKzD;8m^X`z)j>Pag(_z9Ln=65PSf^Nr=v( zAPtaAhh!H>7DI9}B=3Xd5=d@>Q>G$mXXydcyd3fGWT7|zQHl%P-$D7aK1I^Dh`Gp{I&LI!1J78jwAZ((#ma-`;h zkb}{Oq@d%Mg_v+Dp{jBe7qq;zA`nPTPeJZoS-7yYA}D-?u3+rz;=<7>1p`tt@^f+v zi?ee=c{#ahDAffIjRxpmKs!yPGs#r1y8K4 zDJ@Hj#Y2q$3Zi(5sD#QQAt5qlQPG9cABjm%Z>}0WpXHiJq)Z56R#RIY6m)7Ncy3H^ zMo>}IEZIIUxJVe(MB^0(k>6GxEG=$W;0t4tvx15h%_8|4L>6o~3`;F9zp%=d#PrVz zD&D@N{yj?zt5CGYG~}R$%OaI1x@L5gfc~yR(K?Geg=#{V40xDQQdKdjysD~XOli@i z$XGOfD65!QGrDw4C{$CN77cKkh6b3$Xee2Y9*E+>rj%9+!xt1xu}@j3BML=V73v~H zq!Z9jJzp_h!vcWOM7;*|jHT-zjr}R)w_znc6U$^?P*HrzOeUgVUP(yN^I8;#E2|S+ z7RIBsHfWHmW1?FJ72*E_q8m2H^)cBuqDTPEBKwkTo-YqnWoXzG9$0}Q0XHJ;g_t%s z1r?!Y(dN9+^Y$=Ufs9il+wf{kZoB5Hfrh0}6e%x9(PSfKp0)52Jk(`Xo7p+gVGJ_yEAHPqy-m?m96G1lXiR*Y+u$Ne#hJ+Emq z5_;Nj!<>E|liNF}K+|E(5SDp#Wo;U|f`zpuC1}=Am;x1IT@+0SR+dge4o2+rMwven zQ=;!R&HP2$@rjt+{z1i*X36|{i&dQ_1n7uVrJ-mbDEl>$VC?T8ns!9tKhVTcusmE7 zYV7cwjVUys`5m5Uk0xX?I3`?%`ugfdRq%aG@}Qt1*epeHQ6tl2tnf=r>X4w~nQJHY zzXfn^>}Fl)WktjDLNM$aRae|GE)SuBNOgl|D~X2UgW-1$Bs7HmCOT3*=@ z8%Z<>F9f54iUG}{N2G9UQCi0?T~SaKGz_`W<&s1r>_Tu$P*Kt>q8bv~q{DCEb4j8B zbs;EhE>|;QCacGUs=~#=V&rQF(L}N^$=t{$NTT6$At(+i%93Q86c$^J5aKvl|T2y!_p$uC4C@YOe zw~q~CQjs5#CahkeNqS)bk{IFiMdRy|NL6`tT5L51Evr<BNuq&tA*cu{Zc7x(f10F;HJLQje1oGSk=QHHtRtp_+85;FBG%s1P+CnQnk%VIZX^Q2-;z;-c704wDqZPp5`7ayU z(`YPR2+;D>h-T5^e1nROEP~P1#0Kpt8ZZ|Ew1_pZSwtpGTinxYAgg1nkS7EcLz+ca z999h}g3 z@<filh3-lOB%P(?)~w#Xk8BL1PkeV4ACXi!@SZVM`QUlNl4$ENEVTGwc# zTokY%sHnMQ2LJy|)%^>84d*Z#x^mGlxe%atFq(V9s=8=QxVTo>EHl0~T-#{EN)io; z3&EYuHF=agi!03M{@YZoBpUM;f_s{O z3E_gw$42-KYdad=7J~bNiX92?{*%r5-!2L@%-hUZZ~8!UtqPqd3T-keMPm{)GKrR{ zFg!q;r5b`24UP-JL(SzsHf+-I@mS*-14%RrE(DJR6=M?h`Jc@8MR6_=Mr8xgcnEES zOTBPiMG}pB3&CT}H4Z#q$5eQxxz^z>ZxI`IfIDKc>w}76 z%~BOj*P|LWpWQKmtAdJMmlXIv^wYZ})@Zw2er5fibPcQWomlSH1Qib?a`!))S-YTz zK~1pX-VDhHF*VmVmkV&7xVZHk9j-vT6NF8|7xO4Tjfr0$RE$cL(tqk#&Wn$(4c3H4 zqgmL-^X!LWLN{KEUL;C=Sp?ak=+aMYE*MRlUV6BCIHt|>&0hnTa6B6}`{Ob3FE(?} z{_jJY277EIXJTr++*}J1=Rqi~sI09)J!w@qRNi1pJ{k#Ja!&F)dQ(gCt>in&_mUqZ zKT3X*{4DuJ@~h-G2wsKYH3(jZU=swJA=m=JR)_++f$b3NsF(Z^ds9n_NpUHGd8MSV zYkz0_O)c;i1p6R(mq$D7-@E>UR~{=P%HfLEzDAf)P>&Kk~$&SQzvypbVwbVzA$wPm(_$~Z~pWQO-B0?J5Lg3 zn$epJiTnK07SXr1q{-;5E$}va2}{}vy}k5q%p2Q{*J>&y?mwU*eKx zqnEhA`3UsZ^UL_fz8hoYh=m#RRZKAHnO3MT)$3bwoPKvgdAGty*$4hHsR8|XA9u=sXAW(U%DV3^G ziWUiRw@PQkV4N<%c;Yg*CGMCdeL#S5w)76^ozlCcbEJ1m?~&dsy-$iZwx5FFGz4cL zI19ly5S)YHTL`{`;Cl#usFyw%hw)MAW75YFjB^DTe@wvm3j}{c@RtDN-`8Qh1~4uc zV0;FGpAs;x6kuG1U_=)LKMOFTAG}j3(9bUuXR%NKGknmNaM>=AutBM zNBXKj4(yfq#sK^k$wtE0+IldBqT+U6ho4NBn?Rhk}M>-dg*~UnV(Z_q+cR3 z4aLS{4aodfAoDv&N)u%MD3JM+^k;OLAPQ1S%7vdm=)&y^ zQ=-2Al3@aze?wAPCqpltsICl7nMg(>vSecP;y*@ z$kb6FWhwzkJpxk3Ag0lcmpF=1W|VmlkTR3ZEVIb0GMmgUbI6=Bm&^@GBP3DQ%#gG| z(h5lgm>rVnX--JG>Sf*-kg{Z13t3CdD@zf8bSHrHL$VblQv@JWuLIfqK+0}FK+0}} zq$duf44uxiRBDp7M^{J0Atb%gpFRX+YenY-AzfwN5shMg#ARxtt{;*;B2f7- zB-_@>9))DPE2MI+>`B2)&J)aJd%;W!=cAAvE@mdR_b3uaC(D+~md9XxT7a>$0Hbia z54!PEW^%RcB`kHNY>n($*;?5;*?QRq*+$uOvgg^3vKJwWEKGKVBx+OLA&J^lPe}HH zWN%2KBWzDVvhPaS%W)!Kmu-@5mTf^yZWEa7mtb-rB!@wAI7H!s5tgI=Kla`OJc=r6 zz@FXg)Rdj=z3++$frOTT1yTq`s)Q~OL$W|5BrydD2zW~>BCwW_KlK5?D)6eyKDMp3{2VI0m5Q7pzKi(@coeSGD82JX=l%V-1L zL>0?72+KD!cF+a762Oz5<97sek33jK^Zkqu3C#~cHzk&_3v@{y!<+GG#uvoc=8Vrt zVA3(X8D9}&ogBj()P+X$Rs^P+>JJ$|D}??;gwE_Hv^-A@vnS)9PIuzaGkOi}#Gxw% zU3qgjUK)BlfIX&1Mf2qL-81xpJ{8m4Z}$v+nm!$LWuTiw&GDc+W#|oh>wnuRqkV07 z;uZ8>eQ%WcdY|5}59ovXkUp%B=#S9%(jN)BDCp*bZXW37gRT;Er+{t&=&C@s5Ome8 z`lFN`d`l%%I z(U8zVcpHQ!HL+RxljH44UrOz13AQKwRBDZjIs{Tf%+;StD9+Q**H`LK(J#oh&@BbsGSHm{y5*q59_@6{HG>X7cLwOrY}MB#P+XL*(Jx^l`lW>8St^Pv~=&vFWuLRvWG5yt`J2y!X zuhZX1Ol{WRKob5uVrn%pb$$n?43;L!>P;toA3AFcX3^>^v- z*59MQSAU=We*FXb2lc3WTmrgFL3bJGE(aZ|Pxun3KH*DT1G;Nl^$ER0|Ac-Moob_h znowM&qIf;%)+ndi=wdx69tIR&Clt4W?m87kJbis#$|L-zbb-c-M>i<`&R#h!sPeFWD7C* z8KJzoLufU`Z?YB@V*T&>-TFWDd-Q+m|I+`h|3|-9Dv&jxTL-$ELAM@sw}5T~=xzmF zE9ekC+*$QY(A~aKPEll}%=5>}B5vOqk<$pxJ5)4r!&NWn9;E#|QBXeoe~-?Cbh(G1 zQ$JX*Ez?o#GFo@;OwcLQQS4~E^3w&nyFhoha>rgfDC4GlaWACYOYV(?%BYdu8j!0Mzzy$G;+ymyNN&zk#87_Tp9`tg@%!aBEu-d@rGi<35L;zF~I78 zWr5{@<$)D|6@it2O$9a$*z{HdPJf~Q3=5tm4|`K3ZgO! ztX`#ZK2pi7Q2s+2mH*Veh7C1_QwhjgU=1-t9k5Ayb`6URO$v}p5J=X9JY~=%7<5Q= z;d?NgZit^pwbKAZpe2bA=Nhgc0?#v?Z@9p4q2VIK#fD1^ml`fJTn?-aSUa!|V4c9a zfOP}w0oDtw4_JSz;mQPo*BVx(JCVd2h`@kKU8 z4Y-qLUtlwV?FVdsV6%YD26h0j1A!d`?BG_zy9pvcOxGAbLLxsQB8R9%4kc?UdmIrt zyobocK;%zE;#fISJ=nZV8hb~do3z@7|jS*x*Hk&MPVV?FiN z#zh3<92Le2U@H@S^(j3t9tIfCA{fsGwp@h~9ZxuMTK3ZgDL7unJ+bND-dh_lF$|{qs#`}rMjmF!Iw;S&;-f6tcc(?H$m<7&7?;F}YY}vMD~YUO@u#^d2S;1CyJH$yb40qB4mds7?i> zTGKm>ZxfMk0lPG2L|trIl0?35+(krwKt!HKM1Dj>F7J#;$7J~`HMuX1-zX@4O(-@K ziXRb*%ezGJC*$9Q;?KrkjK3OxGyZPeZT!Qy$M~o5FJR9A7G?8Uz+x+03G6w*o(n9- zdp@uiv>N|WP&8?c^(Gw?F>!?Ag(`}dka%RTBouoND@{zv`qzA_|ChFKlNnJoS%AGL zfuhNdD4HD13c7&3nEGnGHKUQ|+XNmazloMRnF7FG8Z+VVmnBD|sh3Gv?qs6nPVD7~ zm5G)+v3TO??24N5#)Y^W+?Z(fyoULP+Gh=#x773omEP0?!l@ySHWeX` zrejRUnvOFKH;pjmnet5qra}{{i`N3X3fSv_y&l*bfV~men}A&n>>6NWt)@{497ksy zWg3e(jwc+|lS^6jmf|p|m2lkHBN-39WHikp98r5(tKwKjIL<*F@d9=o;fOcFQC;U` zsx&Pi98UpueawXF*eyxoSZk^$tTvnK2*(YCRU_eeYeyV&ml`zcR72A;(+UO0<%HvH z-GozdJj;aVF}0e`Hmx+BV>;J#p6Ptk1*Qv47nv>w_6}h01okdq?*{fBVDAMMd++;! zMO(pxt)@#8I9_SG%5*j2crD@hkSZM?1@=i`pCTNe?!oae;JBV}yam{YRUFasv(B`U zzkx1b9|3JY<&I;S%hlSx$8;a@h&B0G%!D-=cSs+6HK^%f(__e$=@IIz(caTydYn4z zO`Ubto^L}V1Vw$6&r{QV&h(AOt7;k6srmjSyqes4o8E%G?Ey8kxqB{2U1 zc6-ds0Q*LAg3_!r^9YuiB{1JaFwFvixuY{MSyd{VGt7oKjb@o>d>d&r3q<3Nu4pvd z%t55lY&Sd1PP5DGHhauov(M}|qoVN+uE3jx0uHeh+iRy=oLl~nNC1VAa9;zo~lqdg(&<6 zDKx~5m3aQ+0V<~&VwQP6Q8?RNYChRqW}ag%H&>XW=DFs1z~FyS-fFH)P`EH%W3FK$=2MBn-71BDk_nt6cQx1Ju09MS8T0AHVKcCQs2rY& z9GcH!R?r3P9#S3gh9dDbwXQEPUql>U2<%@m^Tojaog{~sn{hHwi}?!T@E;P0R}+VO zJK@mKYo7dwn%s@%H42QY5k`)D)aI*6B<}4J#`WgA3C3H@8_c(wTg@BIx0!D@-(kMf zd>3#!;8@@|;CSE!;6≫8KB011`PQd`|+#2NWN*`4NPXQ+?E&G2x@;>^&m!Fo?t# z3B{LyQ+?ECH2ADDziQq>7jQCg2IY=08f2@=#~bDygyWmQnPTR*fWzg$Nr}aG%^whs z?;(zyg>d}PybCxhaJCL$8H^BLSY-Z;S+ZuIK>pIK7<|lR@ZlUS=3V9wF*rujAqF+G zKbgtmWB%Fvi}_dcZ|2|4yUl-?_n7}Q{{@^2I5%(};Jm>3fb#5Me<>glNPf0SS-NdisLv67P9zQ(Aq;6aJ^7Y z(hbp^kf>{m-$Di-3sz$9m<4}6DmgGMy)0z#u^dTY_CYW$eNawvX!Genl_Bj{xkycJ zfJL$QSjgVP(IR9^AC!|Au!~OHa^+?=LRQ(BZ#jiftOV}3m}LQQ!;?g@#!^Rp?`F%XXzbz0{cLFw1zZUUNW7tdyi%>}dn{z~vD^#X_g7F97=BvH+&jjNy2qRv=RT7MNLl_6Cb^WL1Z-No^ zumv&8KfqNb2cuPMWsxdt3iZ|tvA4Ez)LU0~)?4c@N+f1Yv+Cn0S~Cd6T13&x5y90R z2v$Q_tbRn%YPH&|cB{kcw7RTrtHH52)M<-Edj0xxTU}?YqbUx z6s-|uOk?d$D4wRGxI!J%oY@27p$E~LgCJT_ZCaiH(TcNtx}JAy&9@dJgw_J!PLEkp z3u{gi!eZ-~xJ0y$CW#2d(>UVkj1D{*G^)aAEwR#CbInfcWPtC@(k zmLR-Tg%H>F;^^gCl838$Fgy$xt{@Cg2ktTz!!r;=>zT|7x`4Z!}}RJ2*>TfwZ^Py?Ae$kjytWm=A3YRmvAJ%v-JbQ@%9cl8X4_;pFw}D zn&PL{_)4#x*3SvZySfRfhWO6<2LbuL^#|*Z)}O3DTYs_sYW>anyLC5k_W*~A?tQ?a zqWb`F4+8fPa1R6b2ylbOHASaGR7n>Wh9kJ5k#1fL$7@zMZkQyS#mX9#na&1Fx!)!;}j9YAaA+w2d;>+lrZpZ8X8yro#9JO)lehl5~8h z2gk#J<8;Dt25{R{9MRmf&NiD_K^Jh_Njl<x{bZd8u*lxGoNi5z0+}AN1 zy4=1=lEwRMxZDeSYTE;NE4IzHS8ZEtui0L=Z3XTp;C=?~7vO#c?l<6m2M&AgKY-f<+@GzsZ3z%}WE^Ef z1CQ+;0`V^u#Jx1jk=G%JJlg}}VF2+<0`V*0{#HT!mgM4hC>QYp?jMqic*9P5wp!P} z+I}Y#e*>P0*>(f3NfO1sY&hqKP((j9@Z@v0YY;^~r6Y>HACXT;BxmRCQXEFRh%oY8 zH^I~pvfYI++6{K2-DEf0Eq1HjX1CiNb|>%x@FMUM@TtJ30iO;$qNN932HwzWcPlX3 z{RYt&qX`%*4XZMCAdCwM#v@f2kBXbSY3U%}zX!&{0OK-(@igFjt1#lM zp6+%9w6C)lDE3#5MMf1Y*qIVqa@tXTRCL-hPXHgZ)-}EARt=$7VMO_`$#r0X_%#T;PWS zKMeSzTkW?cK)efQNuXoeejkB&j0)oLxSf$4(|nI(`Y<@A?N1Yk&j5d{3gYu56<fuf9Ps0TpU`UmC4u5@!z%0(BKE%sMb#h8Pa>I!Jp`gSy+arluchnG6&sn|g~ z0@OiI>#Tzg->oLr%MoAJwbRj?P@I7%Is(LRM<=!#BFk|!qUgwW3~&r|3~~&13~}T* zaveh*DEejsKMVNTz?TAlGVo=<&jG$1_zK{ot&U?96dfZJ7oek%P@Jnu#rX*rAiuB& z#KQpML;|q{_<0GL=$L{acDePAW0s?oAjGPyj5)9>Pf1Q5Iw~A!0cvqX3Bm;g;e3Ly zsxt^Rvs9$29jC_Sp`(@{tR@I?;WY*8V$PUjvEvMaaEYVIvDC55ahhYfV};{%N3#Qf zuLT~HtOLFt_y*t`fnNmtV&Inm-_+_jGXdc_`c01Wn26&7f^ew{A#RPe2KX~c9-h^M z;bFjV6=8TC@XJ&TZzOqmlVdeqz@zrKT)Cq}JXTf>eU9~x4TR$@z@Hv-+zNb>9%;wz zj=PAg&5k>%dnS*x;~pZb6OZ(aKji)@kPkT?Re*eifIPdKU}}h`9GeNqryb8Yo^?Fu zc;4}X<3-0yj+Y&;0FV0ZxxiyY=L3HM@D~Dq5%3oSe+lrHwmM!-0J+s5I?%M^c!Pkv zOa&76tlSGcZYK@=bv-~H1|UBsAU^^AauvwW3CJ(7gT@Q^E2x9U8=1M)ZS@`BJANb@ ze*pffm;*JitCJLtzd8OO;rKfV$7@J9?jhlLZD+!9md2n-NxgPxRU898ExyPr9qnYKV!>Sp;N>bCPqibBc4SbDDFybB6OIC#sD10Dmv=_W^%D z@DBk0An*?X|1j{60RL#Kb9MsAIf~ZkoJ&BeK5705Rcm~vhsVRfV*~Ms8kFjjb}s2o zYjmFO1fsDS_)RhA8Nff8oM3dWbe^ZscrMZS6!CNc(TKk616KOU5tXP*omVJA@p5AD z*>1w9Ayzrp5rfw`uXo!qDroLdnq=WEnQ(|T!V8}-qhu9xn0gF%y_ zruVk2CRkAVLecvMtAZFPQ^!0{)<5$!w9-w4OgR2;vIT_UrBF5tf)9Px%Dn0FI(?UG$aq|s#n{;QbF1pL>@2}YOA}8HD0= z;P=K{CxO5uiDId14xxB5q9|w(#jei;Qz@M9!o7WPX1D7Uq)A zg@QgI5(OiPM8QTB_AHt{93t@wqVP%(WK|?yLn8576p46&U_c7#hCOu31{IIht{8#1 z1_V>g)dE72E2drRUGYOTHoG>UvMA7A-L8!&+=PzHoekU54JkLM>D}$ZbzX$yy@aEq zn{aA~M_kVlj*q$?b3N{Q!nMiur0Xfy)2?S+&w}6r!3}~31TP3a5HS4!2tg3=MZ>MG z=My--oUUgj_NXL0cVQ64gxKc7J8OR9}XPfB^=)aL0u;8`jBwkg*f5`0xgrK z8{(LzE)sQp;rfbj{1SxTG1u21B)Lx7^}UM@)o}ela*@_ayMD$lTIg(@G|ue4aEl>T zJ&wb*$AxRX2*|$(NLniG`k6pRH+bhNqdUc&fk3)-Zr07YdAHye-I6=io#sX%m<_@J z5C(!U2!z2P3;`hrgj^7Yf-tPrtyh3_o7`r%g^9Rr1f;rDS~w1b0uTxb$dNt0^r7#i z-4O)ReFO;VQfYT@1Tv$*-G?qbD-ncal{+ep>JY}A?H-6ky0KP=$J|(}Ba-W>-MQ}g zfnJ;4!$?5pAy@8WiL3k$Tp3269~zOBST5ZsA@5!1NQ~)ixmhjA_&Pb-BlnJ!YkdY3Bs$~SG%uqU+Z4w zzRrEU`v&)o?wdfE3BoK8W`j@)!pR_%fiMSzau6y&h_<@dBp_VJA4@9@+#3i&)iEtp z(m9Fol?Fm}k8nH;!tnvZ@Ieq%*R=Z)#L)ey<2<@Rn2!!w1C+Wjoi_zVcA z#N5w;upmk4_>y}wg5`dh`s*s}uidXwf4#7?A$6|0M}T{q`%Q($H;Bd>qVZKicwq;T zs%Gz9_vb|8d+zt$AGkks?{a_S{@DGA`&0L4AYgiRAk>4<074@Oi$GWm!V(agKv>%9 z{vtu+H|ZKYk|g5(foNQ&ibNdKy-o*|U{~FC9R$;1x3#w!z#}ZCgRB@6xH?8!WHpRHLaHxde%!H1{6I-h@xi{20ar^u2?DK_ z7J6LMhXck-2*yi6P*+QP(B`wwbEW2Sx3<2kSLS z@3g1Ib2HJnmT0_&=>(3? zDuqmliguBbR4;RK`QEGJ4)37~cj#^-Fuu;id$8Uaa&@FgwV5}_hFEWUO%GfMcZ#%LSOWT5ydVC(cV7Z zOoY(e7liFGZ$A){^htC@`)h7{BW#m>S|D?<%I>M(@SmOT3qQFY{jRy~2B?_bTtzQi1nc z5PksRM-YAj;b#zj0pV8=egolm5O#z1OA!9p=)EpMEaPe|i7*{^Q;2V|*H))`wXaL6ksD1u+f8bP%yc=s}c0G=OMq^|4Az@`;93zEmdS zOUHI3niB0uw2~b_bWt;M_sI4`FWY@C#L4Fd(VS>TJ|8wCpPyMl7l;GL*OYwyeA(16Hv6(rwu|H>_YK5`Av!xW3`6EU@)K%uLw(1@ z+mnw@a2Gw@1XDxg`{)FBUxBaCH_}(+8|6FRSL{2%H`+G_L?4KlWB|k^oC|@C<@5yPH62i1U0`5`^db zF7RFGyU2I3?-JjozRP@<`>p_SAc%uN91P+R5OYAx1#u{d!$3S5#A8~0S0x}^m9D`J zXd=EF3BqGl2uF~S9=D@GiP+;$SG9}zHH-5a8|K&4)pw>?l%pO}R8v(^Sv?Q?{DUYK zzKw+8Z6F?}Vt6M>#Jf-;;sxSxl8AUiiFmSF*AMz0CKMk6F)!wO1Vr?PC!<{Wp71?| zRQWccav>I=a^ZU#l?$=36Xn8SzgbP}Mc*q5iZ2t2;<>4#e>wP5|-5R^NLG6nEh!&pQys zPYFfUg)YWdc;op!h+>Zu{cxa&dpgH_zksMZ(S5%oin!bM3c3Kd*AB&R?V6zPA3vSl z?%NCE-YKn{(v7lo&mKdgZ0 zKTp7q^_0Ym>V#L$m@lj=nGABPzFho|qN3&i`0phgZ}qqOH~Me$-|oM|f2aR0|K0w3KwJqTT9VEM z5#u@^#0x;Y5X6f>#Mil`)qh_C$A?nZ`B7E$KSnsJPIU1K(0D*3C%V|OosN&3eML>4yM;}pV&@58Z`@;XV0_0Z&BstRky9mfG9qIlb{eKaVKly+5|Kk7E z|C|4J|8D;u{yqLbLA(LP8$rAY#ML0K0Wk(*3y5n$TnFOKt^U6iAOo6ojp27D5?~2P z)sZgVN@Eu`mw>#ZX9#`hhtL5N0vRxas5;UEHUu(YXI9V!;s%nBc*B1B;{+W6Um$=q z29Sr=SOE2~B>m`tBLZjzLTgUoNKzSTm3M#+;}Sdi!wrEa)x@#_IPDl!#=rnV@y>1n zsUe023K7M?u)xuQV*CvDmOGFd9)DODI074x^ulch%1jial=h!yp?2ClQLM)IXLOMh8j>#gh?5yg+=M zP{bReIA5*nd4WnoaXyHfVu4dYd@{M7I#3-zOAw)0ODNJ3??64F*l~%sA>#>orkY$+ zAnt408CXUzk{i9NU}}gn0v8dCX9ms+oE=yhI45v!;Jm>3feQlIC%*vViy*!P;>#dn zmw+<*RS>s;_!@|>w+1dwz<4=Yx$(55z|{n!>P8p0$6>S(jBoeI#ls*M*Aa|2gQz;v z0~-j&TMlre9_0w`nNOcKTi1CJ;$K1?v~AgUfC7~krk z{uv&Nsfj%mzzN4B7oQ;%cXks<4e@f|4MOpiz~;cKfh~d80_OQK>QFy9HM;$;>RF<0^+Bwfj1KZ{s^`^3tC!Ai>|a<@-ncMY-B90uUS-4l#yR~LMk^}IYSDY1 ziBD8S>-K%oU;Uz{qOmI4e@?Wlv7xDdWleqm=#sL9wfNO|3YQ=Mer)`qkq7yq-x8|S z+Pa!k_RsezO1_0sx$;ovn{rxSwlG>()_;6e*_6tPXiewo*C^>rrSe&aGW~@e%582P zW@m9t-Gcr_W#!Sy)s+oRMe0}kXDvPnGguc~%=B9qtPeH>8-t5LN&_h!qzsVs>w-&y zO~IwXWgy8Q89*|Ef>&l6^1dPC*HXnh0HdQwFK{K*r? zfMf;90+Jad*Z&{dN+|Eyk@+RleyUex!{x!Nn0_t6D}q;oWCO|G61+Ni4M+}4y@m`!8O4cGxuPRmCB~VDU%KitiH(F zAnr4@W(|okh51{8xRLnU;D+F>!B&vGAo)P@uMOT7yghgaNCA+J1gSTX-Wj>wpxD{t zYQxx{#RTX{lB=M2AE9_ZNWuM4d?@&E@R8ufAVok5gA|IR_WzxDBV>lZcG2e*YQb&_ zK79Z(&jgxqo@T7koeX0hMt!tD<9{(QR#fAN=9pwefTCPp023!C!*E z27e3w9^4)LBe(~oAt2>~Gz_F;KspYj5g_H?68tOpckrL!-VhVggtQZ?3@gSW5 z(gctuf;8n{nn#FNdeEFwdBBp)CDaFHR@KZy1!QD?R#E<-q1l;32N&jM4k{Rsmzg)D zASbhM$dJJ!2Mj7K8j_W>pDGYaQz9DLA)@Tutbw_MvI;T>#3LG>|ujQEp*oer{nwW`1FIQQ_bLxq}7_ z8M=Q&RwbfiJ494aI3y2WAS*L3d*Fb~K|_XQW#(t)6lRVbl9e~OD61eZZ}5QqBXTJb z4et=qki6`o{Gqvnv1D?JG6xMBoSm6FG&d`=FlP|uXGng|;DP%`kv`F;G98u zg?UApL$Rnb2jvbLn36rcl^e zNBxITLqfR}DhH(E{}Aff(D3#ghLG>kiMgkt0u&@6WP40AS|9Ym^FpJ7=ZB6D6{9kp z8?uJRmdbK;No`qm#iY8j>iY7!%G!qMm8c^xnNZd+AEfcki~!QHAdTG?8Xua#=tC!_ zdqNXSWy83VV)d~x(du~(^D(CVzME23)fkmEAdQRnwxLO($tUgib4zFnGk5QYxy z7o>Tu zq3c68XmFRz(CW~dP%P9EqFMJ6qE(5ustk}$0cin9SX>K1q74;RPH%`S!()Mp|c~8^XkgyS2m!Y-&lw7CcacsE-G7CS=Cf3TlP;3M}yI-0=#v|L_tk;d0n(2 zIrapUczrj-$mX+7kFPWx(S1Jc97By7F-wZpF^0KPT@|uOUjSbPdVeyai zYw8;&m(?vCGHAl=v1R4?H8l%xc$1ymS3T=9^ib$=96W^{4m}cjH1rrqwIH1eQXNS3 z>q1Y2Hie!HJq1z&NR5Cq#HGc=F14M!@`lPqI4qkOt*xnRm{i$7ARS+lD z)zmaJYwnaCsc9y&+tcgFez`-31&iFUlMxQu&%8Xf)!_|#dRol`t^s>P?ZCpv> zwZi2zhMqaDB(DJl#TV`MGK7Sx17z#&@z;8+_mqszAxkXiF^C*eJsM7t^)ZvdLn?fUw zP*yA$&Xt?_X0F+W{PxSMMZQX!>Kmd9Cl^z!`8Z8^bsqT3 zey?OTHfu0`f!?M6K-b!=>;cVUv(%ircF^D<&1uc)&6Z{p_Ag2ll=1e!rLuoqNx>w_ zNKv$mWJgJ~p#f!T{eF+w)kh{5Pp&VUw=Z;?HRG7$Vl+|MOlglOaJA&+H|v|_mco(E zhGrwB>cZI7n8^%LQ&(Jp#w{FYMG;S1`>&IlYNPvpkr|n58#8v?_!&waR%3xqQ~r#` zOS=-KKut9^(3Wu%uo}k4A;J(7OJdG6wJDdq!XkjFSm7 zy_o?_4pYpGVNPU9m>Q;$IgL4+xsX}KT+iIdtY&Uy?qVKdo?)J2USM8gUSVEkwlg0v zpE2Jve`!)QX&Su-=l^IdntqzWn(>+{O|_<8)2KO3)2ul|bCzbM=6ubCnu|4;YA)Ao z(7dAgO!KwoTg~^HA2qu*e`@~L?A2QqCV#!PfkL+ zR{Y7fFvsY_d{`hML)I=FZjN%!{pD{|8P1ItR#*zBD&-Pw2}{h}*^_E2%9{LT4gTz` zVc9wHZYGRpEyWmPb4t5;JZub`QR|}bVqvtEU6@e1!gl5^<;iR%q?@^GO>^RJTx`=C z_J;%EU^o;Gha=%5!o9*r27d$T5|Azf=?ajp0tqcus2E)j(v2Xk#-S&rd6H_x4);?A zC6|`Uryf3I>|8XzmZD{FeyL)lEv;Nw+poNQ|9lKo@^N{oJohl<1J#*@HP!uVs>({| z;X=Uq2PB@WBz|S7yy%c5jv7>XBdUnFqM(0cLuFO}vg+y@T)jv-ObvE~Rb@@3`<^)< zGsh~Kxw=$dd`L3WrCVX2d3=9sN56#&_pg_HB{$cW%C{cg-29K79Q~)@ibT|N8)%Ja zwC;fXk5ck~U8($%YAUImgX%4=Xl$SrjhVH|lEz{G+k7|u^ULaSwJSMq`j0KEtnOEj zI5o|wDXT*xZ*` zm)be|SIQLST~GxsKP2z6uce|luf9LUSvo&jRf}49TzJHd`C-(?(cl=K5k4tAGdwFi zJ6syZfp7~*Ye8BE(#;^P2k91&Hr&EQP~ne+qxi%;%|;sf-by!g0pQOYm5CcP3Y&`N zmzu?s%I4&k)fLxIsjR1g?(Fs-;$~`Pw6p({Q_Ivxr=riZ1QpP#D8^ALA4wt69amqA z{ecpqbX>_q^cdCDk&YK%;7tlesq9mG?r3`ejACCaFO`qmKeB)SHYhJYXCzucGe-{0 z9*BmyoE)^LI;=wsT3nCgGE`C~ z7Z(?z!d+ZX0!Go1E9>eTFrwNTa!#XFEbgJ9ArSuDp3<1Irkcivdi*)A6pbybUx4M= z{xgQhamlD?HTr_%eI5;0lsvZAW^tjCrBQXY@jPJeiYu0&zOOttu5sa8;&YA;xH12TK)RtAnDkG!jYrLPdIV1DX*9}Ul~TC zzbp&u(NC2auS0(p{+IZaGt@sBGd(P~MjpV7XKI;ByrN7#US+7oH!w}iSk&h$@b4=8 zZX~k=zh8*Y&?mp&%=nqP_)R%}D#h=kOg%F{{@1=Rr5GoL=!Z|0<1k`>Xq7j`!G#6C zRZWch5Z^WsM|?w%Aw~0m(d-mu@YIr%+blGvwG2BNhiRr}>$c;D4<3=1k5&?_7qt3B ztCf11Jh`|~8Op@RG5h~S<40w9St^GMN9N=XDaad~SvX*1ekLY9I5Rg74db~Z2aX(A zI5=zY;GqL%E*mg-2sVxEL4&fEw-w>2y|Y0bR^$Guv>bmz`>>8OIc97=j$<>LQ!&wj zIfc2o1JO@00DTmhSpy34GV_NPg z=Tm7>-gEyX6Qarc?G<~pN|nR|HydOYN4+vG30;;*KXc%Kfg};sBFG-ReEC6s z#v+WNI0X=8etft_2R78RDWSYkx_UGZZCJ(WvNLGF9vwJV#GB zDQn4q^0J&E0|pMsLU9|%oHFgF9Alkj4_44W;JXeZ*=iiYp2b|t+{Qe}Y+{~gUSmFD zzSC%MT7GZMaLoyt63rY)Vf5o6i2Qr;$zpFH0w0aYF^f6 zYm2m_w58g)+G=f+wpn|o_H6ArI4->qN2Zr*uhHJ4eL?$@_7&}`+Fw#MDO`#n#hKDO zrEkjMlw(qkOBs=ppHi8!DCP8&Sjy8W@27m2@=?ksDWB~k*)3}9N8uYt>H!CW~Se*;l<%4;imA?@Urk};pO2K z;nP974W!#ax&x#;LAnd1yFt1Kq;8&Azuu$1h8LgjM zSrK<*;CIE<^|f(Z%f83jL&hJQNeXabbWY>Ec_jQzW1|aEQyfL(oPFP_d1z08%DgE_`zs^@}G!+62)Ko~d(6HX1da2rTk0zW^bv2E($`3d= zLR)#C_$-Kin7PrF4gK05?U#?4Tu@t6iBqYRFHv7mCqs06y12f+F^aLdx`?d^6&o~{ zb@6L^C)ITX=oG@}-CaZwFZP4wPA&3#!Vja>Bz$l9zVQ9w2f`1Av6Rs)g7)&KL3#$H zXF+;yJr?w%;m5*{W36EEVj({d(hDHH7_XC;;#QN+^Aa!MerkCHx_c;*>qvLcU_a8B za7%PidP;&y`Sj{8s{LxT%c@W!Q)=rVh22GV`XybN-Laz9)n?pAr{B%tSHoMvuZ3R^ zZw2WUkT!$#DoE%sc_2JLLIER8J4&i(3>yHKv8PL~1G;84U z31OE9&+kWKZfz3_*fV{4sXW7zksxZB0HF`FT6XvheG`U(p$0cpCG+W zp-lU1C;ORmltIwmhz0{h7?5_xB3h8%p#b>>?FN~+SR6JCm1A_P;JyxZ6C10Kj4o-Y zD=V$XDT}2zG+7XBsPF5qZ$OE&5QkZ1s0i2ho{)Ht2p>U1-E9#eB1WW0Y9uX^9?6L4 zBXYzLF-A-vy$90!AbkK5mh3K&uw*|5=@XDX1?e-8J_qTG+ai{THDZh4Nf!|t6VYr8 z{mDe=Ge|fu*QDVra)-XskD~uCAs|!45}k37V9j+9UdRC>lT^W9R_r7|e~oQI|(PxH@!# zM$wp#B^%eQ>gg@$$NKyx#h6REO?-jXL1tA&Rc=o>E(Z>LElibOYkwdI4(aR99Wn&f zBPN5ms(f9Pf4FOH{MWjh5~+Htwxt08HL`^NI|49GBQ#G(vKh^_dkR5 z3+}%dDUO^F8IAL!rC&ipTkY>esFg~ITq)J_O3G_$qXqM8YH%(wb}{JnY8Y8o-!!SF z7$>k+qRIM1%1nG*c2YcFSKA zWKv{uWJ+XeWEz&$^vDb*mzfor6`4J~thyX`L&3aEk4HHvTDNfeLW-mSZBjGHe^U|9 z<&5~x@vMOKH%PmMW^8zWf%MOIjPc}1S!7P69H)0QN3cRIIJu*$vb?gPu(H0ksx0A+ zordMMkSLhcfSCj7Pm1A>HVi&5GCxu|9Y;Ud5-}?v?ZF{vL0NUL20!Hs!mYjAA< z&TFGCZ320pae{!-K;i}kNR=Q}9B;4`x7%PC4WngJ7#+iEvNYM6-03)fVqrY@NDZ~2 zJaiJ193rRB?E3hIf)i@$u|?HX&#F&MsxGE}`A+!+hGUG3jd3wPCdeGY^kuS`LD)Es zVMZ`T%n8gmW+F2ku`a_QeX=2$GTg@T3}z*BK65d1Idc^bo^D`b%+2WhyB*zs z_n`yuQ5;G=gD${Vm@P~j^Cq*Cc^`*WpD|xC-!eZkzcRa-KbgH6t%lVIai^e3W7Rk{ zUQJLF(HyDi+s5!XP7@i!q*|N~rA&-E9@XJn7>P+`(v-{C&gbez+;Zyx;g z_N56^6qmu2h4C5nQW^2Y?aNwtj$p&J(urc5^KfaWMA>RwEr z^~{mz0anWYsBRKDNa;^eTvW2Ajmbo7QUCvtnQ(=YnQW%dT69GZWYW6L22C?QV0A_t zGng5IKI}fp7JzHXvr3vnDa~Qb(FaMhTkzVLW0~U^+z&X})B|b9Dyid&qIGDlD_{zl zk=?#?x9LyAxl9!}s;Qq^Ow$OXb#2Tj=6H1ICtVzUJ{zuNXfz={hQXX_F{fSGa&sCSwv@tW#A%&+jBwK&3CGRO&p3PV{puzOyLz7iSwW~-zAA!L6Njpg;{`ao&+dLLJJw|%}h1gl+(~Ad}_DJb&Kpt`$jlH;Qa_E%{8z)?%j5&1l?i!fZ`rmj2JPHI?Q>mNnoWyQeYBlgo*cfzugi zVVar3ZjzQ$+L$xZDtY#QsNc+x5F7F~c9cZCiSF5O zvy#A#%$jw~O*mT#rA9YdKZx{_xi(y(xt3Y?A97$mM#;f?#=4%lh1ozkpwZj^JQrZ6(?q{rPnFnwf+8y>d ztm~}5ewcX#(@dhJD@i>@Nj=Uyage0Cl{sz9lgv}h)5*VRfZM2~{w(wSI-LC$@0q$O zNm<**yofX8UQXt{6ny)9*{CFeC#S8$iFI+o+D#H|=*oDV+4>(6`2K7qfo&v0wkJg7 z8{H%^iCpw;%ns%)=I!LuaW&bMblzbuYhm7H-s>iX8F4GhVsfOn;Y7j@88qZ2+w}$p zJg=nlG1I4o`Gonjn{*D+*4voRnJ<_x|I0i2m9%j~sSV6G|88a7XP$4-WOO?mY}3d% zHx~B^O&ae$k1CPl@pZRqEc?F$bt>JKl1*dRIFe7w)s(L!d=N-J&^KbBwBYXmIUeH^YE#`$#mh?>|Y5 zHgZVJb(LA{@f~Pr7=rUiO3>)@GqW3wJqAr*&1lVJ%}h->`qHa4wVEcJ?R`CZ&ev=1 z)ZC|eP4kuJXPn(_(R#JLv`1-2YR75Iw6*9*KSO(owiW&6uWQ?IPWN}(ztMB9PqC(C zrxc}(PnnZ)YRb}-GgHn_xjE(8lvmMf{(Z`Bokl0=BIqw4tDCHwtvglMtUC|A<=5!$ z(QVc3)P1Y_i)Gmiwilbvma$9NrR-VkMeG{(PWB=8DYlLMmP_L-+>u-kH-anX#&MP0 z3ho^4I__5P9`14OE$(+dg-_!x{E>VPKY}mjC-F7>#r)O$YW^PnDgI^tHU2C98~#^8 z5Nv{9=q(Hq#tV~#SwgLFx^S*=nQ)zOzwn^&q_9o+NcdX#MbwLSv5z=RED*ljh zka|>VcIuea1*r|G=cHbpx;k}3>fNcEQ@5n7xW>0U;S|X zIQ>-pTs`Q|*WakWO@F`s3H>wr_w}Fa_sF7blwEQ^xmcbkN96{2xx7-2$&bk&$zRL= z7}5<^gU>L;aH3&`VWHtP!`X&Q4I2$F8@3rfGyH1!$H*Jgj0U6A7&0Dd%r*`)9&0Qz zPBzvWFEQR4XP(g}=KO1hE1%W75j8d3h#+!Zk>k$(2qiDIJ)- z@42{*u>@ySRL|SD)TC6kIS^52-Sw8rGxN zZ3FphBO4>P(PRxH`rGgy6Qr8Sl9|?l6ixWk_GJM*Qsfxh zKVaN@mERN(5jxL9;ns*_6WIXok0W8}ri zOH@=Y+~MZ}NDV`3gi6eV*(N{U`0A>rV(P?jYA4nYxy#VErFbCYvkc-Zd@J$0_}gHS z*$VSVwHI{adBsaX4hA(&bPiTyeEGO2aRCO3|3q#@)ys&c=eYM;eW$IFH_3m}7TFfr z9(e;&-H_^mR4=6Z)kWlDQiUcSP424Fu94*x%igV<%*Xj8=pG9Y*AG4)KyhAsj(DHn5<02q0*R-%MLM2 z{M8j#(Er2Toxs^#_xXiW=|wL*^;j)O#7ZxsI<^( z$(|As$(FK4A}LXbME=h+V@O@s{k!hR{r^4w_v3#*?&tNmE;Hwx*XQ+lf6tsb=X=hi zf9)SHcj8)} zEQvSuxhee)AhWLhNe5!Do&Ow0QYI%I3?u2E{84gP*P;dS3K=F9t`mM!l?dO&Ia#I^0LZ?i$hu%&O7 zFmgi}DIZ2EgpnJ=NX0NxX!Fd|wsdTF#+^s;C|w0N{cG%;$VD|}->+ z?PH%|b-J94^TRTZ!`!D2Pdk);(r@d(elg+n{}|YFK=;^tB4fAVU9Pb=-DaHg=*Y_W zme|Q=>0iz~@)P@Hd|&35)89|p<=of%obutws?qiKj&2}*AsOewC7k}JMzOb}dK+f1 zzr9XqloB!ztIX>^ee>y0^~XL~z#EzecfZSdu(2}~24tQd6TL24#_&XKNR`P^8*)=d ziOrjy>F?~}87*)2qZOidscIOhedZ0r(aOdKjtka+u!Y_}S8?B?ZvPrbL&M8;YYZyG)4ug7n+LDcI8 z|Gc@zZmww1Ad^i1yTHn&AYp*)JoQvH*PvDuS(|cFH>+J)Y z_HNw0+Z_YakM(FuF>1W$Sq-{Q5d;3j5H1- zO~OdisnI*4-J?DHXU`xhj5G@)&BJ&vXg3Sv{i(Z=CC?eDycvs(oweSv-|73xd>Q|C zv%Pj7KN_uh4&hc~5@> zc%Jhz56Ziv!@Nm4IygEcIy8*52qP`SNUN8l!?RCJS`kKChgnLU{sDJUteUF*PX{>t zvmsCBh{eufkG+EAT!b1!oF&n{bLPKf)aFC9UXPB6-XDD+IyO2kIzE~feK3r)2_t>N z$Qxl~ei->IjI0kMyTi!gk;T7`J`#O2`dIYwAb0eM=#$Z>qEAPk3ED-Ui%y6>U$SKM z1rId3oc@%pjAPSdvsk2zv-OL|&X0(_nIiTm>hw7je?O{n_m7SI*;9z!KlVyLNA>hI z{r&s%p7Yh%?fms~zFayp&)FXjXWkziMmmI%p3d%wv<)M@!$_~#I};;!ZH&GYofMsH zjZ>m8M_-A)8l4(_E&6&eA~yP`SC{$u2)CU*N@7Q@`;;?xuZ_K}+*u1+jOcvXjTW-(1&a+<&BS!VMFmgv2xigHk8=2TX&(&wnTRf-OjB7o6MxpacGERof z*xu>E;FqIsMc?Jij|+h^~yTa{uja zEVKH|?VJ+*JQn<4eaUGc(J!KFqH9~nPIkyxa2V+kM!L7pGvR;RJN3?x`7(d`hm7y~I=U(29Z~0u*x6k^_t={f-5l#G_71B5==(il?K7~G)2&W_ z0)o$IxT^D2eR>Y;pYb34)BnU~<|i0tom0u|S_EyA% zl-RrbJlz`G>2IPtyj*TEGMh1qFyTizkFfuHR+!IEeRTYMj`_3M{yRuJ=9R>r^e-bzja{u*-yVyHU zGmi4)tQm*Pp!CD#>?`D%U(Rvfm9eWCJkmq#j@*xR{%jD|NO{mZMU(`!)1yCyvp{pYnf3)1`O&it_SJ&FIk zmcRV%+upa|-oLBgqhp^hlabReW`kmn4n;ZrUo-yw^aG}U-eks^Z|PtD&;FF|KdXs- z-rRru2l0}d`KW{B=3(TC(;pO^+{y<97i*E+CdMD$4kJ%y{HM>XzAX{<_4N(2&h{~B|K_jfB==1o=%HV7 zzvTYO?qw!~k>|t6M1MUu`R?SwvCqeexchl^q!X{Jo$j}ZQ!i|Ho-_ZD@yBrOU9mI& zlzy^h?_NGv$ZsaG6Qo=B?tNGKolx?KSRL+PUOe;B56PpFozw8wKfs%Of3joXr7)6y zhUNe95AY_ZB|F9PU;hE#d=- zPqmB>nQAhy(}38c#@M%YZxs9BsO#Hb>(n0)xl+&lP9K5O)oIb50Qt-Hm8u{6Rl#R; zocq1E^ou>?lYRncsYX8Tsb9zL1OEP}fRiUCzod+~&B-tNqc$sZ)oNuHZLFL{3Qf-o{YjJzF2-VGz~hmjd!WagQl z8Oc*K?tQ(5EOx)`H_`v&hd`YEA@WJ=p<)<$C;gFO)7a-nWZwC%$hh;3{pG$$$G@Hf zl=%(k-s5Nf>pA!Hng6&kF=_SeBiBl<% ze1!8~56PbNA^9OXA!t`JA$flo`SA3R*jS%Z9s3-W$cl4*LrFf6eDLgyEDs|K|1l%K z1%qEpKAL_ka$1$E#GPZpw$BsoGF!DthS#!?*rCb&CjqRVy zT^B|^ch8c3h{x_2R^_|*RL1|U&-i5~rEJE?uRa~OQ|veD|M921pE+&PhoxtJO3Yv0 z#ndMAlX+6gW{mgh|87tJ`u$Np!nx|1523jw<1=W^zALIih1y*`FXFe)j-3ajbncw` z&$6qgR8v|FW!Fln9V`2*FtRJw+lKVAzY8PZ{-f-=DfP}CEIY!;mw!K4Qf_syq%=-x zlF~G#SxWPi7Ac;2*%(H?4kMew$mTGzC5&thBiqj$EGbnp9`JsZ@qpJaB>(dD);lt1 z{r}Rz(kEl^xBYhxmVp_U`Q|@7SW<>&OyADa)7R(!mFdg)1>x$u(tm1Z{*8fuQ{mZ9 znMoO%F^fC>=5yw*HshUf?ekQu<+=R^KHMqeM{%77jVe^|sWq{8Tcn?6o_@AcN}uk7 zyY}of@OCdFT$vDihnI(-clG%fb2cXZpdM?^#+NJ}`@#Lg>4SPt`kZ+a)nkAE!JYDO z$|Gmz%wx9i|1oDz#pdkklxI?&O?fV5Ldx?g6T`^fFtRUg-X zOK05UK7M+LQvS>P0O!HScI{st|Iz1DK5_gnOaECJP5CVL1YYD+?D#)&`e)_yVSI4z zeeJ50&(ChlpJC*;e{9QozYC;nNcl2lV~V?zqhaLtF!Dzj@kd2Y_n5LdW5LHxFZka) z|B(6J-(>uPeLVdaY{UAuXDd#BTlCzg!7?wrH{+&G{-@p6&*;`9rT;X$+yIp782d;_ zFK?aul2_?cP0oCHQ>m79d_+g)YhxL2bN~DIm-^ciF=sEG{xCGNjaJFr^m>9&OZDJ<8z1cS<{a- z?==6%1EAEbsoBnKYJ9FRKHJ|nH8tW`ON~#xFf~_d?$kV~c~dV6yJh145UE2dUTt(;mV^`H4 z`=tDz=U*KYo}VW?KX1l=n%9gI(^EUAcJ=H;YL_tn(#ff}hw;V!vu7t#d!%~*$CT7N zJv$M9nP(^R@9^xz`33&{vlFTPQwOF0Hk>-pZ^QA${WhF`hsUfg^Y`C|)1QG&9iDnm z#yJe<+z0qk+xgBZsUu=f!NyK-_~#ehRc5|$);{B_=iHO0hN+{@9`vQcc&{Fu`?d{HH^PJjK3m`zw&?4LH}mPL4Vc%=%AmG zI>#9%sWVe&rOrUzGbz&YQNe(kZ>8Z)!5PxWcplT$Z@@f9YgZVcmZ{4ZWXPu=Vl z^wce>Tf_K@VSJS{FDs{hle+6)yriA_U67QzCye)L#bJEqk@ue|)hpR~{`!)5>W`@h z{?+9V#!XB8HH^Q>OXBfWea`!tq7!c#GwGZwIGXA+Z6~K53*)O#4o0Xpb}ohAl=}DX z+0`pNe$K~sDs#<$rk*)0W$U;F6y? z?Ax8^T_^|nDMA7+U#KLhTtO+Wp*Fo3#=|_y<2=dJJj(^;%64{efL}Po5svW(e+EGj zYc6sgmr;lNk*UbRASik{P3g$(+(8d|)0h4XWEA7E?xNORRKB9teQ8mW(ATBq(fy@0 zXh3V)qW?=fu#=yW@lqKtJ<17WEEb@PV*X1pds(b3*K-3^k-Jz!THtz%x!z*8;d+a8 z=U%L<*b_|RRbJx_-sWB2XD0Tf*kV5B6V{^JV!AE1i7jknA3q^;F z-eER#n8yMZ@l6mUSWiMC6{t=vZl*3x(0f92+S3a?CyXEsbC#gz1nWrH!(QY`kS9T& z1bGsE=B^0J8#Ymt8j*H@5>4u(* zo6q8RVLpnRkK*Q|_#lQb9Q#mw6k`~RwfJMZLGj0Ul4qE}3ryl=rlQm0)6r*f`&4`u zIxRjQ`&IliR}Ar6OvBzM$(r=u7!Q~0#1-@j=gRZByV6RyV%Y5L6Fi3{if(QMZYNnvEL~tITZw{ah%6JjORgg zocd@GTpr;P?B(V5@^X85`E%&_^4ED2JztSb8LsCBDlm(W`GjRGceh%dMl_}=%~``X zzCrdYWxvWETxCA4x)bwpmHb!PgR746JAWX5Df>|BKFmj{2N)LwSKEiH^OBE?Dahlz z#AIIP)gZXWOkQ&pS92|;c^flw%|brpBR>WzQipmp;1=w`wHx`G&1?;V>#XIv&UB?4 z@?ZBIzXU;Pb5Yt{l+H;!xyXZKrgVM^py$$hE-g=Kc}mMux-4d)v{@)^7D`v53RS62 zP3&*!5Nj&^DL)25nY_4c86B6g=Vk0=8T(ddB4)0PW2MX+I5x`6WHxh{#{w3y630gw z`%`8;U-A`)gP?32)>PJ-%34#|+_=rM`OtaU;#`9@l+|BZdCS(N1#P*F4(O_^uFC4F zti3MVmyuXcSu{Qi?8Pxq?k9f6{NJGa8!n?b zi6oIsDpw%?4d&^FYq1wM+>Cv=p*{_1L}QxLoR+l49^GJ%ZWzV{7NNKDj;->S{*Z{6P=5E~GHlRKc1m zSW|@*+-8L7>Cl#T4O%wDp^w{xhu(BNxzkru`dWJ=fPzw>#K4<9>Km;wvNiyQQ0~wzs`GDM`d$W z`2);VW&2av{#5=9`%u|FRJNYV)>C;ShcX_nSFxrl)>Orss^r3LR=J4$n5imJN+Wv} z*{jH2r7G2_No|^=^D2WG%5X+tJyk|An)?~ccpM8=^k3y=Ugb63U>a}n4%Sq~nyOe+ z6>F*@cNLj$((g^>X~%uI>`nT*X?GA*&4PWYY8_RrqpEdOEka4GqpG>8dO7B*s{N^I zf2vl(K2)_2RjsG0^;E6H?exc*s#;T3YpNRJHmi=|0nAj@=a`D@Rb{U#d)1lDW)AaM zfzGS`$bJs+3)WNh2uJyyKR6lq7#Pe_wM!^WQHoKVM3P9xTB=z~HEXF>j~+bCyXdRh z@gS(~a@DP|dRvBIKdQ@L-Ck6;7uBC&A}=zDDVV|P)>M54)=_;f3;2+a*p9VSKgh3G zL-p8go#4;Fr?!xrqR3oB<{DA1;3}@>TJ&C{0iEc|9o$JT`Z9pK8OlA3@o zyT)W>u3;8xn4=ogc^f^{_?(}Dpk^MfqdCKwg!R<4mYRC6m6hz|Bp&_ODu(>EN}}&t z`mUw#TKcYa4SKD06V<7Oxv6CzYFS6EfyiA;?ppUUngHZCASF7lEe$4KqM=()Bv*Dk~L+`x^bR{s1-JzH>!fl$GS`v0j;`y}q&B*)Q;*hkV>tIRiZP5OjfZ)R zCwYbmyuSiT{y7a>J)pfbLU-4TI)XPUvE~5k` zxeEE~-9QB@QW@*0*MLSep*gK+!(imEH=YN11h-Z1X`bVG-sCOjA#Xi->&aWstkhe{ zYII)j8_a(FIOMON9evl=cl|ubT)zN?kiEX_^~+F>^60(3-s{U-zZx|#EA@3>U-$K` zp?(j>Ay54;I1~g8Twep1YtWWqJj-NW;Wges{|)A&^9I(?z#1AXVJYkQlCRlG9X5A!}7I2HtrU0-9DYuu5Myuei6U^;K}0rEHgm`_-S z2+eRJJ6w}$3Jcoun@Zx4bN_O^xVYvFP&?qoc# z@h&r%%^dXK;xlyK!WvpwLyL86U?*n2#rN!EKL>)KWjyk?G%GEOlZe}DDSOMSxSGo7 zxn(2FbxV0$%Gy%amilhlkv`bNmXGrk^0#!q(o)wgC-Vw2w|o=#p)F-^xs>I|+*0P2 zGPhid-dmcJmgc0T?ptm}4=wfHsxb1j>cD7RUn`euWj(E}rFAOTQI;F1fc{(8ryC*Dx7B(&ZzF%}4_SrGtz~Y#ku8{&*59D>)(1Hm z1Z^(jVlJTw#n5+~k|c9E`fhU#H8Cq~>LPa=x!ahPHfE(wGg{CZ{kOS|VN75VJG>;3 z71!6+<=WoGgS^4}%)+d+oyQX7Z@Zc`ti!CdwT`yCa2&S%fuArdZGQ=ZcDazhT>@sk zomp?^w%T1uDdcZgh5E?cPUd!cZr6r(w8y-(>w|e|_c%{sUfMm+iRfqUt(U`ZN|K`+s+?enkh_W%*$=&UOHTZ zdFfzYI@Cq(4sv(UeFxolXoh*|&>Hj7;Wmabfkl{?j^?GK>+9%p9nDL}2Qe=l-)9!) zrQC}gNc$}v&FP)y}Ma)Yl^U}$@bb1r>(&=5yODFTv=`-Z+ zBzGs>`@>&Br!O%toi<}$I&J5VAn06}%5=cIbas86U9Piv=@O55>2e)qF)v*zP#yWZ z+=4Z9F)LlHp-W3z(~TbJwu^Oi>CZr{rOQjm-bMB}D_f_&o@^o=*{qVOF}9B$>;(3SDsj&7xpyPMnUrt@xecI$nu#WCy7)u(~(fu)=z*@TNySwb&W$*qetN4Po ztmj*F-ThaNqUY|i_K4#=%uSCAD2SQqQJ#wExJNZ=ax?X4h?(hO#(T7&C-U~_OMeC; zZx6lq7>*8lgxrTU^w39-kC5li>|BBCyVK?Fe3BWgVG~>VhMnmC&O_+?&SU8N&Xb%9 zf}YmVGZ%Tuk9G7cOi`?*XDwv!DSJ=7_iTpFd$y)6chZYtjARtD_8iZHJi=p4;w?UA zDa%>OYSyxWuh`5s%z00Fd&=8W-kvA;GYIaI_b$EPl?@%-m6Ld^;jSyFi#&Hd%1m6} zT`t$_QYzAlPIToCdZ7DW!_jvyYv^SSy+-4h?ezpt^Bfa-iODQN{$Bd-wT>@wTfMfj z9r=45;6xDgmbtggz0FGR2p5tYo%c?_{Y&p^)Wodxu17;|r732mcWc_wfq|Hl-b0bQ zx7@u$%t`MtJivJL-}_;v@fkk{L7zO7!S(fVxjrwj05j9)TXwUTeVCa(^7r{O2>J$O z!Tm~K>*$-00u-VsmrFc)ow&gbD?`!7!4oBv`GWXSU-!vY=y!3sH zNtlCtJ z(hKv_ZzisUE9Rwt56nw{`TLJxB%?4d{jHoG6=-B$mtY)Ah7=B59MAQ&L?0GS8qc|Zj7GQhkH$V&p|Wk5A*VqON+ zqanA_6!S8mHRfeN2L@tZ1`I{+0dfz}{Q%t$7=w8kFdp+V;9;im89xU>>;$8MWpI51 zU2dRx8MpxRGVoh=V_pXC;}G%>{4?+;0?2}S8Dt%U@?l;EnU_IDF)xFPQyKXOnU_K4 zWl%HR)}XfBhWvxf%b?-NJV@q2dLER9c^PD02AP*ZlQ1uXK4vNAWzb4iV_pVrz`P9F zjCmQfgCm%iLC2AMklc6c{%+mhoelGHcTUX9-MP4ey7a=l+&vT5cel$8HZOxKVqOM! zqATWQa1Z(;|KJgfWEAFQuyqW60`oH1ybPX*c^N#JMaVzcybN~#GWbi}*5IvdNB+U) zW$=k07$Wl!nTP0kNCfjT#Jmj2O9JL)NHuC=UWU}8A-7^)hM1QjtuZe{IxrCPGGr*j zk$Z^lhvOI=_&ErMnwO#GWvJ^L>T*NP%g_awm!aRX8}l-BABT{C z=&2wWW(~v4$}npfb^$plNMUq4%sPf8l7zJky9L>YHAm;eZbSBAo$1N|?nckU#*v1s z!}LAuDV}8lZ!nvctj4Si+kjaawwZ10U>AG%fj@&_xV*#9BOB&qxV*#7$?#n0V0b<* z#u|p}V|Wwf8E&74FU0lT<8t>zsYxg9q!)eZkM8do!&t^+-tRH*_dLdnOy(6{<4vZs zf{l2rd(U=czh^f(zh@sm@kbDh(D4X!GQymUxCl8%6rw1_Ff$`6pyv^e%Ms0JNgHmX zBVFi55AI?V@{V`_osZD@2%V2`tc-Y^CwT@PjCh_oe1$ys+T(kx;`;7&xqGeWUTe8m z=l34qSB`Kr2u23vAc8fFw1$y+(fP;(64C3(RIa2H^^kvLJKCe~k#1{bckV>~k@_Av z4w*;FJn{+5$w+fDaw0k(`4;oAha(rWgk>z}ORQ()CbkAaXrDrt3E#lpgzxY^v#|Ei zWkZ(@SFnmNScmxwPX@s#`!VV&%+9Eu48h_@-N*gNI!ew_a*lEzGD@$b^g2p+qvRX4 zo$oowA%5dn5ZsrIoapYpJY38r6yZ|zci*)%pf#Pjo$knSUvCC8j1h!5&hC@xz6X)# zKI^_uj{D}aD+os0qtT9o(Uqu09qQANR=EDr_F;4{`Z5UX9ql$o--C6IevNmrw$ZE5 z*Jyo>*8AwM*@88X-ibAjw&u~+JogY4@}`5 z-p7oL%|#K4QJkUN$D^37v5(`J8Y}PE&sfi9wy^`fk9F*im22!DK`_pm$K~Tq-r`-X zahx@dv&M1OIL;c!S>rfs9A~D-$vkc~Yq8#O=6jsm80R*|xs7pdW85Bo;3p37D@Qm+ z>~{YQg7IkK@hHc%6-}KqYRXIzmr;yiY!IZ$lO|7^JZbWz$&)5enmlRpq{)*e zPntYw@}$X=CQq6?Y4W7WlO|7^JZbWz$&)5enmlRpq{)*ePntYw@}$X=CQq6?Y4W7W zlO|7^JZZ5!X*`VmPqX)F&oF@(n8eFWXd-;){`GvzArULklTM)mk&2We-AgM1q)cgN@RXm=0~o__dZgS+SKK@Ab9jVvXPyfY{42Hb^DM0 zgjs#8Ii2Z>y?Cq#ay(|;kL_d^=KJvu*rUgLV@;0_;A?jCJwM<&pOEtjd;5gze8P1; zaR(ps1#8jo6V~@+eOh52o@|Hfe{u=d^Q7BMh#7nK zO{ViUuKT&Rbmva=^IRXS?>W6ar<><=^PIjX+=lO&;Cm+Ma6&&;;Cm_B%uaOsFAU`Y#*xOu zLGWTBqNH#+dU){>Ch{VacsU4O^7WU>QjYRe#JXS7_e%@;5PLhRIHl0#r0Z~*Ne?jr z*Ez{`PMXY#Aefwk2p5uvk@()pZh!J)JQ)O2vXh?zTtX3KpYklObBgPn@=_4I>}xM4 zVXt0J#s0tiD(_=HUY^a|Ab90|p5Q5-!F9ZvmtrJP0@w4Zj$VBlxASW3d+hhr09mKz z#$~3;HP!V^b$wG^-&EH()%Q+46$G!vlMCy5EgxHOyuD`sU;BvzLGZenfBkkG7q9o= zF1}zZ_U`o^n4LEo(uQ`lrxPnMFK>L!X3Wc*=IG6P3Aqp1-uyiXrk&3PvY{tzm&_+!}KvcPVDQtnEqT4ymc$L(E&N$>WbTb%evmOuD5>XmmqlC z*Wb3Dw|mo<0a(}DKky^_IT!@*G@vzYalP+!41#yB;07vCkt(d?8+M|TclQLrd$PRe zGVi&q_hflbmiLyio-g?d-Mrrv*ZY2Fe9!y(e&6@Jzk_f24#(yUIc9XDJ9p9x*D=G_ zXXtUp2~GvU%q(O>r!ynyZf0KcQxLN^^J=c8G-a`#nKx3Io2X7rYSRV#HS;y>>rCCu zGBdNv(VT(Uhgr|_B9nQU>C9pd^I614EMY01;`(NplUbY4|12HOvgTRVG&>I2XS=Q0 z7jp^rfA(dRpd|9ozMd*nr6EmdMoZe!o=#ZD?EZ}8DV{~<*)q?TdG;$<sFhh9;+2_2$G~Pz;IkT9YI-Z+E3RfWW+-oU=>~m$GEBoA=(Dz(@&uvXxZlfbQpWBV@ z$UnCieRzoJtU)L93Q&;_+>1S#H=j>1C-Xi-{&`=r9bM1U^*qPfyuDb%y!{;KWDvM$ zF#kNzIEXa?dZ1+nQe$do;fmx}V`9m3wO!G%`KlXEe8WS)t z^B3?TAG4I@n3wswp1&5eGXE!aqBRtNN$iL`0o@WlSF4Ev@SW|ru8 z$qc|3uDDuB0LT zcovuaL~oxQ4}zryk$Y((dS9BtwN#)IHzD`ZTHH)s>eCAIztmcmn*XI;>4xKUsoYDS z#%(Qqo=HsMRbFE@bNQGr*uX|Mv7H_4VmF8REeMvKhrX9xh~sowJ_=)YmL(wnvLwvQ zGWnP3f7$iOzD(|A_0YkxCNxL>Wo@_{nU_7pqddXWJcrE7WM1|<=4F{ZSoSWmFI$EV zm&vM#TYS5Vn zc!SSzeal^LxpggXhW%VVj1h#~$AdUFmg|1G?w7yFWM0NvmcNhrS?)e(`Fs|!m~F_u z`~bhA_vLagKf#|tup%Hg7vWf4QIaUBl;RpnQx@4*+{*2ArzgFUcf~*kBlilqSIE6$ zH2PjK5qVckLia1=U7`CGx?k}Yx?dsxikYlM$Did#AD^{mB(Jc9Z#fkND=#2|{#WLq z5GBy_Nk(S~;PK+kKeWletuVTRT?KG(>-<~81A zI`1))+05ZnKI1FQ%9`!$WDk4!k^P(qg0<#kZ65Mb0P9(sKq67h%-SoEf35s$D^QU- z$iG(pweqi(eQjIxu(l)jp#QacU;8xAF%iA5eVu8%jqGb>Un~1sd$86Jua$M}cYM!2 zWLRh}`Rna4GVylYgE3>-4`){&iPje%ICKP9DK+ultfef?)k+ zn634?U+*|wZ!g#1&p6U}k{6hS{@0tE_4Z)>8`y*Ob6J2jtT#vNmtr5*TgUoekbAw{ z>)qA{^S6|7=4*6{UucCZU;`1%Ka;^!dP zWF4C>LGDeL;kGu}pG~RgeN!naA^#?Owy8d?xQz~U<_>ybKR5Me1majnm27`E8nmaxi{@*FOJEwXMoz%M}{TCnv(bi6eQ`L|wyj<;S*8D!pC0iAD^eQPsXBJ)<6x5~V= zBl2$TMt6FmgROmdi0Rn(t-l7rwgObdI=5NNwinU)HnXzLtZe&?RhaQ@+tK$neQz@- z+w{H78nzwfI46U^w*=eIBOBJS{c7aiem(A6wpT{(?KFe#b0q|1$`_k^7r0 zT!xI_bYe8GWADDv)sDPeLj#&)&Ufg1$8G3(hkkeTXCQ+aiZ$%8h8^a8$HP3vlRU$7 z%trPd%hC0Y&yjn_2EJkwdfxFP`_c1`Q$esZj;xsToe^@82l;niNmXi4o4Uxnvk^^@ zeW&a@W#8Ezeecxw&LIrr9!8?`o%b^q`FB3VBTQ!{=Js2id|Q?_+{=sDlW#Y(3v=@A z56J)RVNM2te-3u(dY2j5l^tu?WevM7p$Nq&PD!FvNA_K2eOC)wBloV3bm4Y%zDwu3 zbiV5W9z@@}^u6n8p5=L7K>l5Gv9G(Fhwa(OYHx5I{EHn?BniuuE3t`HZ!~XU}km?LjK($iCFWV$-KgAyuozj-t#V>BjfjZxDGS< zy{^8W#D{F>k098q^S#;8_uhE)yw`l}ElwilV{Z!9u(uo)sDw4_H8*=}VjX*XBlljp z_nPy)BhdBU`xwKMJi~KLMaO&JLe{;r_<(sVU?pF(pM&Uk?{ECh2~GvU4_U~@1w=?d z-XD@kCKa9kpz|NB|A#Wj|AV>t;YL~_>knr3hlT76f_-|}cLjCn&iy>XifsC==#TsRG|j7s6#zk(+zw2-VID*8Kg#{%1m59&W-=Rjf1J-EK4J;W zkpIWe_&x}JIv;!gQ+@j2Soz65{j`Z=L9qW~%*%fBvcDuzbiV%v^t|7!>^Cd>t6>fM zYtxh#Si}Bybf6Q~vHwBj-v0z{Yrp;3{{nj7KZW;@fBy%3!U}Y~U)THfy#GtSW-~uv zZhnrS=b!cbbAAd^m`h2(-25!}?VD%Gipyg!?VpB=A1H=;4kkpJga4B{!~vIVnw zz#bm3PY3Sc0baqZA9$A;%tGe}K1I(5K4%T`ACUjRSA56!?89+z;2^&S!NJ@VMc)TY zBKN^7D8)5ghx`X?AoIanXiG;rb31o(7k%hQ$iuwMRNlaRAAE=Rk@uikIcQc6%6;%7 zHev=2TJynee8acwM(%^UKll?rBl|BGawUy$o4?rGUlyju^rRQo@asK{Gu`FNbPT2e}XF{gAweq zhC>rDM~CD&q?5ymxW2VDkpf+{U^)Z=`HK94OACvuHtHk=Wd z?_>8d1|1w5hnYBL4aXkkE%ba$p5N{9@7Lq{es{UwUt$qk_>S+f2fzP>4u9A8aeW_` z|G50eb7Bq0t>JhcE+v6PqNH*KX6AS^TGI~Mk9VOPx+V?JRg zvY$A_ZyZBz{~w&pLRQSm$pTzL5|?u&X6IxX?CHt!+=%=qTcG2Uz3In5WIj0zou8Eb zr0geUKRF(AaB>Q-p!1WjGYy@ee2*E(e{v4<_zGG7ER0V6?7;oJ$qMYrschuJteate+E~M>2Hb*moEn1Mr$%DdPmM+HQ}*c8Bk26pWZeEK zvvNw$rxvl8B`oJNKIaRz^J5UF;<(^E&L;=)k!@9qeLv5SJwjvS-Op z0SX~^mIM+>q73CIPc7=vfJQW<1+8g|{8nMx-S#P2ay3VTWthdqx zYshL1S-a4U9^6GA`tb;|XPwL|OhxXj_9*MSypPVa>OAXOHu5#HX4Q4pZ_#zu@A)l= z%Vu`6U4j|Ort56QDM>Pya~0QMcCuYhJ><>Sh{iNU-fXRCgATHFpcB@RO&{4NAy2kF zLEQN{aee2z-1+@^oOhVRd={}7y`R4heV=a)=Uc=1X6F2@{J>8f;8%`tG>FTdANjNE zJ9`RO;I^_~hu*X6J$o(mp1nEpW|ud+yxF^=@9g@{-jiXB zhhsEHHEL2D-RIDEj<(!JM>=B-IqqN}gRzDjBd`ZK?!!8AyoKC3X5zMTEI{WuK4J;$ zkUxjMbC{DH`_Od`UFSH=Z~V?5L0nFInX@2Qay5F+S(Y2Pk;+u126E@DOMA>lPP38o zcI3@@C%x#4naDW^`Ew5C8D?YebDjv|A_>^Th<%ET<8_v@8uK18FOiMtJhB%(NA`1& zU$KVB(I759E7`Gz_zTIyMOa6CMdXgJj@yd2Kk*IFdwgR$B71yyWR2Hz{5_0h3=c4# z2YDVD;}^0R9mg+Y1*`aib?7`^=kZ&RHU1Dsh-KAxytT*w8N^)}kcDi>e_;-y)I^>O z(|8BhccIJWx`c8x#jNM*Kxew5^IUhM=UnpVl0VmdSVJyr$Tg0qd5(#^#1vk^yyVh( zF7uwtZRL_Z*EaN?>s!9V8gl&>#N|GZ3($3LUFX(w?)(&_5Gj19@}Hn|lpb@(IF@ohiTt^rWfmJa7R2Q#jM>c7g|WPbJ;}3+ zpE$s;9Oh&Ym-l@1oHs%)%t~Hs$a^s*NWvQOUO_3Y!8-D`M((`kC9m7cYk%_IiQe<} z;a=p=tM9yz^9;JqtLwazd6}ua&If$LCbpvIyx+2$z5K|}{DRzhj|OoU#gm)7=RC`JN_$bV5XHRz1JzvvA<#~$XhPx-E=8T~Nt`9=_OA3D$X6nf4#ffslQYsmLD z?=cf=$TyD#SVz7+$enLL2RVY=`HpiUh|3=#7xLzpHNUR&%bNdkuHz;BJOuZt|O({PO0PH^033^_~Akt`&L2TsfvjZ5tQUyqVsu@gIJzzn#jF&th62`5pga|+LN#hqn=Z&+U=V}R zc>%c#jA9J-sDRlnU|tG5j~OZO7Vq#rx-Kx61uR1T0-G`01%5@>1&$HR{AUnXFb>%Z z%3e_Rf)}Fig8D9)Oe$AU3Y`}$gPABOf5986L~Dj%{|oA*;I1I!HakBYp6&WpTVZMvWTTJK0tiRY-Y)1ZK+xa7iyG+NIRi*=@(Zgk{*&oCu#FNT( znDqqxCsaUx3A#?W1zjhYm4xP4LxMFVbfX7%VGk1eGmyuTJ>eB}p6~{8CzzK6dz3H> zohN*X8A;g07GzD>g{~8Hov@GJgSg`6zPO(Ky@j~qX1jPvlDV9#xQ5bPkKT(nMBd^} zXomSNE^qO++(rjF(-mtdu8-m`BTw-kg18bF;`&OsT!}$E#rw=>5oV^u67*i;OY~jB z8cJA0iEWsf5)K<*^Bm9&tL`2>5Ev;z5)^qr*dBzco`o%9Qb`JF%bGl+`@Oe z&(MFe{*%p1vi!;4v7dvOm1MJ$d=zU)J`u#Ff-2OwfuGZD56iM_XX~aY z;zATBir_$$z=0x)D4{rTPjFU_EX!Nsz}YTax1~97g^Gv^T&T_4w7uv1?S0?-`FwAG z6zBY&-}4;*6wFZfYOci%)ip=mIOMJ?cU|wQ+Y`Ol?L{AQkiV|J>rO$}b!Re%c`RTN zkFbgtC}Ah>vX}i-aF|N;URUnAXZW6<_=Vs2C-2`uSnoW}=R)MKcNtd@fvojL;+^&W ziyrFz8H5q`6VZykWTF2E{YS_jF_vk_A0dB){1Nx#ULxFM#8Q@1%o^6Q4cQ|Oq4Nlx zN5~yadF$)D{%GbR zWBvIoMA!8f^B8j1e}ZMKK=%5Z&_{iF8r()lJg4t?W@J7yn1%a|T*BiNA#3Dn z^c?vl_83`$`-pTOk$R4FACd3#5uflm=lF*2gRtSn$lOrohB7ylxuM=0*5*dsLqi=j zyq!B~kE{*tzTs2s?KO>s7Xwv0QsZbdDNrmJ4)YC`i|0flo_Jduz^=F zL)4pWcr^)Yfs$sP62yL29<^C+E1{T_sk+)N|+8(qaM=(^Ee+(QF&-Ka55=|B(k z+~_`rGZH;F8plMYFdexY&1NafS;;EoZM2@Jd5#x&3HcknMg?C5VdJZ5hHt5{Z>F(5 zHQvs9{27Eze3wlw;c{xA^CorBa}&4H#H}=mzzj{y(4-Y@i6fpwy5QcM$lhc!)6jVn zxtrY2gUqLh73jOk^SsQfypFD$yu(&XkiSVa-=ga#x^D6tGB*wQ7qT~%y{YU?uSDNX z_1&}{?z?FujnH}1=CnZmrfq0P2C_C?jZT`{aWi+=EQ)08q}c+N;9mT0nXsAs&7Ncf zx^AZHW^eEoW@z>sreFy;ns<~DA}oy6!mM%OXAj?s0Du4Bv) z(}5n`iy312(w_mCBgT!y$Q|=A-W8+o821vR@0emzD%^?@>r~-3Th_sz zT4pnw)jZ1!yu>T$yyXt`+_IE??8gi(4{?U~F+4SUtz~p&tXuVhA}*K*rdmEJw$&Ygo_IJjaXZJXYtiZy>AR3lqjx zAZx6?W6d6Wf@)-sl|A-DJ`TcG=b_(LdTezc3wf1Feh9+W*U$*vx7K}YchWkJuB6hN zbTW|N?}rIn>$Y`1te078}{jR^)GekQ1EZQ_k@<-|;iQ z@&|tfVVf(sktmuFjoWUc>o#qX*YAJ{+aw})o9+x|C}wUm4Bt}{su z&fCb@MxHi*24P#Bwe`HVey;5T?4qq(Z>#sVhtXf#W4y;_e1RF-nxXBtd>@4E0{(?> zpxq^0P7UfKf4es5yIlvot6dk8NM-T^?A;BM~0t;fqAukZN2^hfS^`-yk+@p_Nfcf7viA7CMikTw2s zbRDnj_?5iC+mxf{_#;$tf@;q40UzT#jn{jp0C_uIz(u(2PV#orc_;ICszq(&?{pI_ z&~c|}6tf*YBwR)W?mi)h(Tqj^36s!Yg02%DLe~jyC1D9>NH9aflRU%o*g?W8yoNhZ zkUimjbe`}(%_abhkD4L*aFho`kEe*Y zu#?W;^9O$iVVCoezsnU|hpxNmy34K9!3NGcAaBwf9zgCSxs&8hdJKIhJ&(LeFX6tE%IZoG%yd$dRIJ>>6^$Po10L#I9LxW~C5?0F3_^kxD& z@413itYtmA@2T&eZ}Sei?kRsy`FkGZ2vwY*nlt6nO{~N-tzj8N)ml@-RA1`43BR-zmkcLFSaFc@8&`B4^5ON-=lJ zehzR5*;6Vx&Pn7?v4eZBr!|?_@4e6B=kNU@2vgmD>OIJw+7x$^s`pfPp4ycp-D@Co@a|rA+w1Ef?0pSxs&@*bn8Z{Hn87?A#qIQd0{!=P^Sz5POK;SIFJ_M}FbAAnbDqms5kAsKXuHO#}^yqA~LK(RH7}3?-L5WbQMD z@yOms_CB)rnaSf6u^ip^aW{S3O&@pDM+beLLH~Ws(B~z}&~smT`r38hG(4}bpX<8? zH`Ld?r=Q0K*g^WG=rCR1>9=BrbTg#i#lLBan@?{^YuXVSNe4Ho<0kA zlfHyC$eS*2y1eQ7PJflxd6V6^^>lZVF2CPF6Q;Y9bbY7)#6Ow;;O`*pCwo8H``ySb z+=d(J=SKR;+piva@7EB$_mjV0H20$Cemd><7H+hE$lb(~jn4be=OG^9QFPy5-~Ig= z)BjmsU;}38Z-)L`+0HIX*~fm|O@G<@|IS}Qm=Pd%hR!o|o^d&DCPU{L^|7yvCdir* zi>@W+8S-Z6Jj47M8`+Hf86})X z#{=rnfgJQO;1w$PDhM+#qZYN%f9B2TFH_f;io4G=LuM+yFh`~v z$&@?u0d$`EFmh)u!HzPY@^gcFV<&?iV+E^N zi<=pw_d##)Hu4XWf6#W!Fvtvp4pYf-PH~3!_%jHzWY4;itI>Iu+*$h0x)nRhibCG3 zIAqOApc}f*(skCoWHAcav-F&$=PWzTdIWj19;XPov*gZ_JL^sKoh5J97Pheid9!q$ zrSq(E+(gzPz6!#@Iv%Xg!KqB57;_Fb%izC*Fk9~IyQzy?&yK{MWV`Qdx0W4`p0m4P zhU{eelZhF!^`Cto!!Sqo66DU7JKMXm*YOngll>g}&XzxWD`gx+*V($xK1nrad7p34 z_Yge~xt8m>2|W+Fox8Y)2;?5ph)#5-D@n*ZB!x8kkWL2j4;e%OD=FcFARKxj4X~%7 zqj{JYaO*?gViTLu`OpLCdFWA&A^%YMhsrybtk#q>CHd}<4$tj zN$xPrkZXqAspvmVAC`r@!*a-FIPwnD`7rYjo4{n`A2yw3 z=y+H)e+A+2JJ7@M5iI0+N;$|8^gsMK`Wvq6;pfoxaJMr22h1?s40#uDF_&Qnc{RC) zM#!Gmfp`*;J1-eK%1cG(c|*~8-gu@kjY4#tcR%x3fc$w+<3{q_NS?0qb|G`#KFX0j zPxd_7^G=}eJbmYVkNeL1ncvX)2sbg}Jmep75ts09I${4KbTYzyj;Q3rXD|yhj5Nc@$9S9~R}S`VY=vYs8Bu|D(S_fBCx3zW`n5U&`f}A>R!7 zw@`;Wv4i}2)TcAD`~5Oueg?kNe7W;;u%rAube>;;8_9o!N0Bvu8M@Bbb^aP&W;1%u z*K__cPI8*}_>lkc8DFCJG3O)im`k{fE0A~0)zm@H5jS8yqeU6oVtn6dI;2huZT@a27 zF~hi;$U4pqkCSzruE*WM-P}WSI?|Qy^duF%j~l=svKh))WFI#X*~goEd<5nj-;l-> zBk%YZd5Kqpa6$_@kxU9{^uaqOc=iN4onWUEMlhN&tmPnXe_~xa;AbYvGttjX^fMFn zIZ=*@b6CVOR-*rj>v$>%Cw1Xo+|MNUGwD8t<2{qiGid^LG0Ar@>3){;23tA9$3Zyx z0(3W7j>+{f^JFtmZb^GOl7M$j*573PP3}!P{aL_9KER$Pf5o?aAB0ovXo@?Vaw%7E z71NPr%44{LDKbsb>l8Chd5ULwo^2fEGk)S{e&M$uoa&iVYfzI~)aF)h=PvAis#&J$ zW~z)+Gs!}?Q|)-FPNq(!fSEx!&GV+o=69%s)9&DI^f4`xMl>awt_;S{Pn(N5raizs z-1W34c?S8XZQvFD%bVzE+8)X{z#+^x?HDIH%~`%ghts}6htuVl?%mU4u#@SnaYNG! zk$w7X$Wd z)Lo(O3SVS9`YDv7@O?hyBR=7Ceh$JJmvJj~xDy#>_#S7pp$qmuBag8xWGyf8DzEbv z_A=ugj^X(;Jb#Ag&p3x2%=j({XV#!LH*yQN(To`EWM(YhIkP?8=}9WR(e+GS&ouwc z`xwp$W-%A{GxI?fpqrV?Ddu@L@Ct5drW>01Ht(X3nf5ZverH|CC0x#x*!8Syxt^QQ z&#c>Nj;yoX&#bn{I;$fI=xSCHJxD?JSpyi)42pPx9q4J+mq9rDd~`88g2w1z_CSV` z!vx&sY`xEZm`C{!OIgEup2n@sei3__UCIai8H95hA@iIzw4*cf&9T!tz359nbUJ4g zV~}^wBnr{*9R1GG?VS0%#(P0HS5I?mpqsgOa5uiOx%Fv6G%aX_ch8N-PUm{(Jnx?O z&p$I6!8oSk9rMgK&usJTZ(cEGoM*;)W}Ih#^XzY)Tbs9;ZRm2|Zp=JSpYvZxmOkxe@SbQ!B zA8m*^9v#BSAY9r2^Dj03Qn$L)y)1PvOWo?y{$!Gc|9YcNNK4l+QTk@*oRX zgwBe*tH`^Gma&pm*m2P=z6-)-SJQ}8d~eJA%(7S5!amA5$PubIK{f7fnVVboHUB)v z?JfI--}y5Lm%Fp&`d&T?GcSLKGx&Ea>d=-9hT$7uVGk>OcPk2*$sF{x!q2WS!-~hz z*NPPs<2za5c`J3b(k-mC_m$0vA(l4S`^pZap|_QT$;S7%ays*IUn?KsF}!2tQl8`) zo@WF4Sos>dSb37uyvK+9k5Bn42#YVH1~sWgZEhfwfsDXC6uSq%lOrrPU$Oa$|AY4y z`*Wt)Y{hF>&(l1|4tBGLG7exT#dcC$$uZGlsE@$NjC-)4J8@X`Oeidlv6ow;TIj_XS_^Z4kcQ zmP9<~?Mb+ojTdk=w{Zt|QpyiLuBCWd%Yu%k_GU{gN^FbK15l5vygZgLl!WZg7{>CC_mH?76~H`&dmZ-Vfh z%ebD~xr=*^q%~%FCl0f`(;v@z=MAbjiygo7G4`|B9yVXjwOohiZ;nDIn`6<# zW<6}y!{(l((hFHP&*niEu!u)+Pg?>m!SlAi`-l8M7Ax-c-EHQq~oTx=w-`b zhM}C&T*!h-29OW3k?=Ak^+43GA@*98hcMxth-_{Gb82xRnK}~8=n;VgD zYa{Gt>u9D@jLx>6;@cqH=D*(-gZtkm_cpn=$-OOufn+g(Lgw%Q^I3>Lo42iI9Z&Hr zFY_9&^A;N^#Z24mW!pdRG)Kur$Xp_Gi3}w&m)wdjOLSTCZ|V|DNAy}^PbEVc#Tdpj z5xGhhvxFyD#!6%>k*!3g5}8WOUGg?=uVgDF*g;7-@AGpI`h5W5cA2&}rYY@7#I0<1 zE8At*-iLnZb-UeeAIv1&%XaVGu8Zw&V)pHu*@pLQ-;G^wx9jZ(ILNm_xZ?`EZ-+T| z=zE90cg#Zm9rEw+ydBT*JR5k0|Kc4xD)<1;+37ZS-b@Qx(Uv%TuRG1KvkTLhi~a3< zm`C{!dfU04mw27GkbkHAJLTMYf?sfdyS!spJ^XpSD~cxQW|vNO>15YHbh4`eo$Ok~ zVjg1!uOj;{e?IT3#C`AjkpBhYZoAz55N>OCG0$OlyH8`zcXjoyy}X;vbna&*Yq8sR z<$SlAv;6blf6S+R!B^<1^in*h^eV35I&R=5{P|NFgS#tjgZ-Cw#P?CEztSXna4%`t zSE=v1^gf0oQ|WxnP^#Zj{g#@!)VERk0voWuQXQ9WXBY3X7d@Anvs53Y`Y6>$={bJm z&mi0r@Gs=wQ=1#Pg*rqa_a3?Tw5A=IO4&y_a_l)m z75dzx&prCwqt8A1+@sGue+S{-^EjUixtPnSK}~9**S&h(tJl49?v-tCIt8p|C!Yo3 zzN=|YFUF&@eak6k4eQX|KAr7zm-{xcg%Wn4!+nQ1$}vuI8kzU~5rk!zAXk}OW%gZm zJu;Qu!fiC96&>hAXS!j>WiplZr9T50!3^XodyW_J=S$hE_%o%@UNP_8-Rgv){b? z?P$Mw_rK3Kn7iCF%RRH)Gt2L$E}mI#-txvYqdPrGr8o9do`KsbchlwLnZ#5In8_R- zU>=X-TPoFocexw#ck_qkr}&gFaL?uPmCJX)UJhK&mAHWec5&bi?&2Qg zJK&}dw4^nC(8U3{4*1p%*u??&ctEcQe&8p54Z@0RxgGngu+NIlbj7R{X05oFUf65J z7|d8<#tJi5n6bi)6|-5$a*A2QdY;DKE9||(-YZ_kPAbe@u@k$mcn@<{n6pB*iXVgU z;CWoY#axCPJa`kgBI`jrIcO*Te*f^GnGeR3NEedGV=~i_@t}+cb$;+!Uf?BO!MhKI zoXhhd>G+V259#KRcOUYuL*8|$Ir=@M-$QMQLsy4%eW)J;7|1RTVW)>GIUaw zX+M?rQ)xey*HW80n4{7hmFB24M`bJ85=T4<_--qElTHT1kfG8XmHMyLf8_%#;R%+p zlIL*4mAbEdjcx2;H)gFgYo%E$Ph!?enJfRv{59VNVU^yi^j@X+Dp{-aUez6UP^Hf* zeOAd)B}bJURfWuAF2$_D_f+*XvQ)`Z^%8GUf^W&+%O6(lWj_bddzCJ$-s4052*P8R zpub}^sL7o)qAAU3iJp#i!TygWGYr{|$#zV(W3nCd4ITTKuW(z(+}5$5_&W%XoAbCi zkDK$j?vLyKcp_af^Ko}@+#ZhiCY`ZNU^3J2{NrXnK8J@`!7A4BB)$cIw|{ti1Fv8o z$L-^|eH`C~@8bATj&Xu&KI2R5|7w}4H?tR+st<4oxvJksf7PGx z13&W{e+J>{OSyupxQ061$=%c?nilBubQ}6I6y2ZBL-x~CnZpCj$4*W^LJ=!ig}Xid zByQofE>D+Y=cnD}X?J=0JM8cDFZ_~!>Vb^!}n#PZ<({_p(r{@*_%{`LR<`TzevJX`#K0L*ioga7~l literal 0 HcmV?d00001 diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 000000000..a17a027c3 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + OpipeBeautyModuleExample.xcscheme_^#shared#^_ + + orderHint + 6 + + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.h b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.h new file mode 100644 index 000000000..79d977e9a --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.h @@ -0,0 +1,14 @@ +// +// AppDelegate.h +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import + +@interface AppDelegate : UIResponder + + +@end + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.m b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.m new file mode 100644 index 000000000..b79055a8b --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/AppDelegate.m @@ -0,0 +1,40 @@ +// +// AppDelegate.m +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import "AppDelegate.h" + +@interface AppDelegate () + +@end + +@implementation AppDelegate + + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + // Override point for customization after application launch. + return YES; +} + + +#pragma mark - UISceneSession lifecycle + + +- (UISceneConfiguration *)application:(UIApplication *)application configurationForConnectingSceneSession:(UISceneSession *)connectingSceneSession options:(UISceneConnectionOptions *)options { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return [[UISceneConfiguration alloc] initWithName:@"Default Configuration" sessionRole:connectingSceneSession.role]; +} + + +- (void)application:(UIApplication *)application didDiscardSceneSessions:(NSSet *)sceneSessions { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. +} + + +@end diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AccentColor.colorset/Contents.json b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 000000000..eb8789700 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AppIcon.appiconset/Contents.json b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 000000000..9221b9bb1 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,98 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/Contents.json b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/Contents.json new file mode 100644 index 000000000..73c00596a --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/LaunchScreen.storyboard b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 000000000..865e9329f --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard new file mode 100644 index 000000000..87df427f8 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Info.plist b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Info.plist new file mode 100644 index 000000000..81ed29b76 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.h b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.h new file mode 100644 index 000000000..2c507ebbf --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.h @@ -0,0 +1,15 @@ +// +// SceneDelegate.h +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import + +@interface SceneDelegate : UIResponder + +@property (strong, nonatomic) UIWindow * window; + +@end + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.m b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.m new file mode 100644 index 000000000..bf7282b7f --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/SceneDelegate.m @@ -0,0 +1,57 @@ +// +// SceneDelegate.m +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import "SceneDelegate.h" + +@interface SceneDelegate () + +@end + +@implementation SceneDelegate + + +- (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). +} + + +- (void)sceneDidDisconnect:(UIScene *)scene { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). +} + + +- (void)sceneDidBecomeActive:(UIScene *)scene { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. +} + + +- (void)sceneWillResignActive:(UIScene *)scene { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). +} + + +- (void)sceneWillEnterForeground:(UIScene *)scene { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. +} + + +- (void)sceneDidEnterBackground:(UIScene *)scene { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. +} + + +@end diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.h b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.h new file mode 100644 index 000000000..4e2b23f32 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.h @@ -0,0 +1,14 @@ +// +// ViewController.h +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import + +@interface ViewController : UIViewController + + +@end + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm new file mode 100644 index 000000000..7a08a4f49 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm @@ -0,0 +1,273 @@ +// +// ViewController.m +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import "ViewController.h" +#import +#import + +@interface ViewController () { + CFAbsoluteTime _startRunTime; + CFAbsoluteTime _currentRunTIme; +} + +/** + 相机当前位置 + @return 0:后置 1:前置 + */ +- (int)devicePosition; + +/** + 切换前后摄像头 + */ +- (void)rotateCamera; + +- (void)startCapture; +- (void)stopCapture; + +- (void)pauseCapture; +- (void)resumeCapture; + +@property (nonatomic, strong) AVCaptureSession *captureSession; +@property (nonatomic, retain) AVCaptureDevice *captureDevice; +@property (nonatomic, strong) AVCaptureDeviceInput *videoInput; +@property (nonatomic, strong) AVCaptureVideoDataOutput *videoOutput; +@property (nonatomic, strong) AVCaptureAudioDataOutput *audioOutput; +@property (nonatomic, assign) CGSize cameraSize; +@property (nonatomic, assign) int pixelFormatType; +@property (nonatomic, assign) CGSize previewSize; + +@property (nonatomic, assign) BOOL isCapturePaused; +@property (nonatomic, strong) OlaMTLCameraRenderView *renderView; + + +@end + +@implementation ViewController + +- (void)viewDidLoad { + [super viewDidLoad]; + self.pixelFormatType = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange; + _cameraSize = CGSizeMake(1280, 720); + if (abs(_currentRunTIme - 0) < 0.0001) { + _startRunTime = CFAbsoluteTimeGetCurrent(); + _currentRunTIme = 0.; + } + + [self setupSession]; +} + +- (void)viewDidLayoutSubviews +{ + [super viewDidLayoutSubviews]; + if (CGSizeEqualToSize(self.previewSize, self.view.bounds.size)) { + return; + } + _previewSize = self.view.bounds.size; + [self setupRenderView]; + [self.renderView setNeedFlip:YES]; + +} + +- (void)viewWillAppear:(BOOL)animated +{ + [super viewWillAppear:animated]; + [self startCapture]; +} + +- (void)setupSession { + self.captureSession = [[AVCaptureSession alloc] init]; + [self.captureSession beginConfiguration]; + + // 设置换面尺寸 + [self.captureSession setSessionPreset:AVCaptureSessionPreset1280x720]; + // 设置输入设备 + AVCaptureDevice *inputCamera = nil; + NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]; + for (AVCaptureDevice *device in devices) { + if ([device position] == AVCaptureDevicePositionFront) { + inputCamera = device; + self.captureDevice = device; + } + } + + if (!inputCamera) { + return; + } + + NSError *error = nil; + _videoInput = [[AVCaptureDeviceInput alloc] initWithDevice:inputCamera error:&error]; + if ([self.captureSession canAddInput:_videoInput]) { + [self.captureSession addInput:_videoInput]; + } + + // 设置输出数据 + _videoOutput = [[AVCaptureVideoDataOutput alloc] init]; + [_videoOutput setVideoSettings:[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:self.pixelFormatType] + forKey:(id)kCVPixelBufferPixelFormatTypeKey]]; + [_videoOutput setSampleBufferDelegate:self queue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)]; + + if ([self.captureSession canAddOutput:_videoOutput]) { + [self.captureSession addOutput:_videoOutput]; + } + + //[self setupAudioCapture]; // 音频 + + [self.captureSession commitConfiguration]; + + NSDictionary* outputSettings = [_videoOutput videoSettings]; + for(AVCaptureDeviceFormat *vFormat in [self.captureDevice formats]) { + CMFormatDescriptionRef description= vFormat.formatDescription; + float maxrate = ((AVFrameRateRange*)[vFormat.videoSupportedFrameRateRanges objectAtIndex:0]).maxFrameRate; + + CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions(description); + FourCharCode formatType = CMFormatDescriptionGetMediaSubType(description); + if(maxrate == 30 && formatType == kCVPixelFormatType_420YpCbCr8BiPlanarFullRange && + dimensions.width ==[[outputSettings objectForKey:@"Width"] intValue] && + dimensions.height ==[[outputSettings objectForKey:@"Height"] intValue]) { + if (YES == [self.captureDevice lockForConfiguration:NULL] ) { + self.captureDevice.activeFormat = vFormat; + [self.captureDevice setActiveVideoMinFrameDuration:CMTimeMake(1,24)]; + [self.captureDevice setActiveVideoMaxFrameDuration:CMTimeMake(1,24)]; + [self.captureDevice unlockForConfiguration]; + } + } + } +} + +- (void)setupRenderView { + if(!self.renderView){ + _renderView = [[OlaMTLCameraRenderView alloc] initWithFrame:self.view.bounds]; + _renderView.cameraDelegate = self; + [self.renderView setBackgroundColor:[UIColor colorWithRed:0.9f green:0.9f blue:0.9f alpha:1.0f]]; + [self.view addSubview:self.renderView]; + } +} + +#pragma mark - +- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer + fromConnection:(AVCaptureConnection *)connection { + if (self.isCapturePaused || !self.captureSession.isRunning) { + return; + } + + if (captureOutput == _videoOutput) { + [self.renderView cameraSampleBufferArrive:sampleBuffer]; + } +} + +- (int)devicePosition +{ + AVCaptureDevicePosition currentCameraPosition = [[self.videoInput device] position]; + if (currentCameraPosition == AVCaptureDevicePositionBack) { + return 0; + } else { + return 1; + } +} + +- (void)rotateCamera { + AVCaptureDevicePosition currentCameraPosition = [[self.videoInput device] position]; + if (currentCameraPosition == AVCaptureDevicePositionBack) { + currentCameraPosition = AVCaptureDevicePositionFront; + } else { + currentCameraPosition = AVCaptureDevicePositionBack; + } + + AVCaptureDevice *backFacingCamera = nil; + NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]; + for (AVCaptureDevice *device in devices) { + if ([device position] == currentCameraPosition) { + backFacingCamera = device; + } + } + + NSError *error; + AVCaptureDeviceInput *newVideoInput = [[AVCaptureDeviceInput alloc] initWithDevice:backFacingCamera error:&error]; + if (newVideoInput != nil) { + [self.captureSession beginConfiguration]; + [self.captureSession setSessionPreset:AVCaptureSessionPreset1280x720]; + + [self.captureSession removeInput:self.videoInput]; + if ([self.captureSession canAddInput:newVideoInput]) { + [self.captureSession addInput:newVideoInput]; + self.videoInput = newVideoInput; + } else { + [self.captureSession addInput:self.videoInput]; + } + [self.captureSession commitConfiguration]; + } +} + +- (void)startCapture { + self.isCapturePaused = NO; + if (self.captureSession && ![self.captureSession isRunning]) { + [self.captureSession startRunning]; + } +} + +- (void)stopCapture { + self.isCapturePaused = YES; + if (self.captureSession) { + [self.videoOutput setSampleBufferDelegate:nil queue:nil]; + + [self.captureSession stopRunning]; + [self.captureSession removeInput:self.videoInput]; + [self.captureSession removeOutput:self.videoOutput]; + [self.captureSession removeOutput:self.audioOutput]; + + self.videoOutput = nil; + self.videoInput = nil; + self.captureSession = nil; + self.captureDevice = nil; + } +} + +- (void)pauseCapture { + self.isCapturePaused = YES; +} + +- (void)resumeCapture { + self.isCapturePaused = NO; + if (!self.captureSession.isRunning) { + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{ + if(!self.captureSession.isRunning){ + [self.captureSession startRunning]; + } + }); + } +} + +- (IOSurfaceID)bgraCameraTextureReady:(OlaShareTexture *)texture + onScreenTexture:(OlaShareTexture *)onScreenTexture + frameTime:(NSTimeInterval)frameTime +{ + + [[OlaFaceUnity sharedInstance] processVideoFrame:onScreenTexture.renderTarget timeStamp:frameTime]; + return onScreenTexture.surfaceID; + +} + +- (void)externalRender:(NSTimeInterval)frameTime + targetTexture:(OlaShareTexture *)targetTexture + commandBuffer:(id)buffer +{ + +} + +- (void)yuvTextureReady:(OlaShareTexture *)yTexture uvTexture:(OlaShareTexture *)uvTexture +{ + +} + +- (void)draw:(NSTimeInterval)frameTime +{ + +} + +@end diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/main.m b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/main.m new file mode 100644 index 000000000..e4756676b --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/main.m @@ -0,0 +1,18 @@ +// +// main.m +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/7/21. +// + +#import +#import "AppDelegate.h" + +int main(int argc, char * argv[]) { + NSString * appDelegateClassName; + @autoreleasepool { + // Setup code that might create autoreleased objects goes here. + appDelegateClassName = NSStringFromClass([AppDelegate class]); + } + return UIApplicationMain(argc, argv, nil, appDelegateClassName); +} diff --git a/mediapipe/render/module/beauty/ios/BUILD b/mediapipe/render/module/beauty/ios/framework/BUILD similarity index 68% rename from mediapipe/render/module/beauty/ios/BUILD rename to mediapipe/render/module/beauty/ios/framework/BUILD index 20159497e..028b848c1 100644 --- a/mediapipe/render/module/beauty/ios/BUILD +++ b/mediapipe/render/module/beauty/ios/framework/BUILD @@ -1,4 +1,8 @@ -load("@build_bazel_rules_apple//apple:ios.bzl", "ios_framework") +load("@build_bazel_rules_apple//apple:ios.bzl", "ios_framework", "ios_static_framework", "ios_application") +# bazel build --copt=-fembed-bitcode --apple_bitcode=embedded --config=ios_arm64 +# 用上面这条指令build + + ios_framework( name = "OlaFaceUnityFramework", hdrs = [ @@ -10,6 +14,7 @@ ios_framework( minimum_os_version = "11.0", deps = [ ":OlaFaceUnityLibrary", + "@ios_opencv//:OpencvFramework", ], ) @@ -21,6 +26,11 @@ objc_library( deps = [ "//mediapipe/render/module/beauty:FaceMeshGPULibrary", "@ios_opencv//:OpencvFramework", + ], + data = [ + "//mediapipe/graphs/face_mesh:face_mesh_mobile_gpu.binarypb", + "//mediapipe/modules/face_detection:face_detection_short_range.tflite", + "//mediapipe/modules/face_landmark:face_landmark_with_attention.tflite", ], copts = select({ "//mediapipe:apple": [ diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj similarity index 50% rename from mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj rename to mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj index d744ffb9b..be5ec5ce4 100644 --- a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj @@ -7,1580 +7,2266 @@ objects = { /* Begin PBXBuildFile section */ - 49B7A4FC0156E7A600000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0156E7A600000000 /* vec2.cpp */; }; - 49B7A4FC0156E7A600000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0156E7A600000000 /* vec2.cpp */; }; - 49B7A4FC0592E24D00000000 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0592E24D00000000 /* mat4.cpp */; }; - 49B7A4FC0592E24D00000001 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E0592E24D00000000 /* mat4.cpp */; }; - 49B7A4FC096C09DF00000000 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E096C09DF00000000 /* transform_landmarks.cc */; }; - 49B7A4FC096C09DF00000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E096C09DF00000000 /* transform_landmarks.cc */; }; - 49B7A4FC0C5B6D7000000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */; }; - 49B7A4FC0C5B6D7000000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */; }; - 49B7A4FC13423C4400000000 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */; }; - 49B7A4FC13423C4400000001 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */; }; - 49B7A4FC134BBB5F00000000 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */; }; - 49B7A4FC134BBB5F00000001 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */; }; - 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */; }; - 49B7A4FC1370E16B00000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */; }; - 49B7A4FC18FF939300000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E18FF939300000000 /* split_vector_calculator.cc */; }; - 49B7A4FC18FF939300000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E18FF939300000000 /* split_vector_calculator.cc */; }; - 49B7A4FC1AA4F1AC00000000 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */; }; - 49B7A4FC1AA4F1AC00000001 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */; }; - 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E1E08E4F200000000 /* annotation_renderer.cc */; }; - 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E1E08E4F200000000 /* annotation_renderer.cc */; }; - 49B7A4FC225F8AC300000000 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */; }; - 49B7A4FC225F8AC300000001 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */; }; - 49B7A4FC259898F600000000 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */; }; - 49B7A4FC259898F600000001 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */; }; - 49B7A4FC267D173700000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */; }; - 49B7A4FC267D173700000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */; }; - 49B7A4FC29F2D5B300000000 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */; }; - 49B7A4FC29F2D5B300000001 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */; }; - 49B7A4FC2CF83E7600000000 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */; }; - 49B7A4FC2CF83E7600000001 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */; }; - 49B7A4FC2E87CC4E00000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; - 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E2E87CC4E00000000 /* Target.cpp */; }; - 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; - 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */; }; - 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */; }; - 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */; }; - 49B7A4FC357DD06500000000 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */; }; - 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */; }; - 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E369A201C00000000 /* shader_util.cc */; }; - 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E369A201C00000000 /* shader_util.cc */; }; - 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; - 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E36A1BCF500000000 /* FilterGroup.cpp */; }; - 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; - 49B7A4FC3950B88400000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E3950B88400000000 /* GPUImageUtil.cpp */; }; - 49B7A4FC3EF5E91200000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */; }; - 49B7A4FC3EF5E91200000001 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */; }; - 49B7A4FC3FEF732500000000 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E3FEF732500000000 /* header_util.cc */; }; - 49B7A4FC3FEF732500000001 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E3FEF732500000000 /* header_util.cc */; }; - 49B7A4FC403A0ACA00000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; - 49B7A4FC403A0ACA00000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E403A0ACA00000000 /* Source.cpp */; }; - 49B7A4FC42538A8300000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; - 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E42538A8300000000 /* FramebufferCache.cpp */; }; - 49B7A4FC489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; - 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */; }; - 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */; }; - 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */; }; - 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */; }; - 49B7A4FC4C094F0A00000000 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E4C094F0A00000000 /* util.cc */; }; - 49B7A4FC4C094F0A00000001 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E4C094F0A00000000 /* util.cc */; }; - 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E4CC6C91400000000 /* face_mesh_module.cc */; }; - 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E4CC6C91400000000 /* face_mesh_module.cc */; }; - 49B7A4FC4CCA495100000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; - 49B7A4FC4CCA495100000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E4CCA495100000000 /* SourceImage.cpp */; }; - 49B7A4FC50FA3B1400000000 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; - 49B7A4FC50FA3B1400000001 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */; }; - 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */; }; - 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */; }; - 49B7A4FC53F441A800000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E53F441A800000000 /* cpu_util.cc */; }; - 49B7A4FC53F441A800000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E53F441A800000000 /* cpu_util.cc */; }; - 49B7A4FC549B74DB00000000 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */; }; - 49B7A4FC549B74DB00000001 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */; }; - 49B7A4FC5771EFBD00000000 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; - 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E5771EFBD00000000 /* Framebuffer.cpp */; }; - 49B7A4FC57CDD24300000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; - 49B7A4FC57CDD24300000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */; }; - 49B7A4FC5D4491B500000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E5D4491B500000000 /* resource_util.cc */; }; - 49B7A4FC5D4491B500000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E5D4491B500000000 /* resource_util.cc */; }; - 49B7A4FC60EAFF9D00000000 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E60EAFF9D00000000 /* rectangle_util.cc */; }; - 49B7A4FC60EAFF9D00000001 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E60EAFF9D00000000 /* rectangle_util.cc */; }; - 49B7A4FC61F8D8DE00000000 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */; }; - 49B7A4FC61F8D8DE00000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */; }; - 49B7A4FC6328969D00000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; - 49B7A4FC6328969D00000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E6328969D00000000 /* Context.cpp */; }; - 49B7A4FC635CAFD500000000 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; - 49B7A4FC635CAFD500000001 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */; }; - 49B7A4FC6414206900000000 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */; }; - 49B7A4FC6414206900000001 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */; }; - 49B7A4FC64A7F94D00000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E64A7F94D00000000 /* math.cpp */; }; - 49B7A4FC64A7F94D00000001 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E64A7F94D00000000 /* math.cpp */; }; - 49B7A4FC69D807EA00000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E69D807EA00000000 /* to_image_calculator.cc */; }; - 49B7A4FC69D807EA00000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E69D807EA00000000 /* to_image_calculator.cc */; }; - 49B7A4FC6D2A8B0300000000 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */; }; - 49B7A4FC6D2A8B0300000001 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */; }; - 49B7A4FC7079047800000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7079047800000000 /* flow_limiter_calculator.cc */; }; - 49B7A4FC7079047800000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7079047800000000 /* flow_limiter_calculator.cc */; }; - 49B7A4FC7A9963A400000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7A9963A400000000 /* vec4.cpp */; }; - 49B7A4FC7A9963A400000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7A9963A400000000 /* vec4.cpp */; }; - 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */; }; - 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */; }; - 49B7A4FC7D7F06EB00000000 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */; }; - 49B7A4FC7D7F06EB00000001 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */; }; - 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7FAD39F900000000 /* vec3.cpp */; }; - 49B7A4FC7FAD39F900000001 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469E7FAD39F900000000 /* vec3.cpp */; }; - 49B7A4FC8369D9F900000000 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E8369D9F900000000 /* tflite_model_loader.cc */; }; - 49B7A4FC8369D9F900000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469E8369D9F900000000 /* tflite_model_loader.cc */; }; - 49B7A4FC841EB37B00000000 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */; }; - 49B7A4FC841EB37B00000001 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */; }; - 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E849B03E000000000 /* MPPMetalHelper.mm */; }; - 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E849B03E000000000 /* MPPMetalHelper.mm */; }; - 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */; }; - 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */; }; - 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */; }; - 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */; }; - 49B7A4FC8EDC082600000000 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8EDC082600000000 /* gpu_buffer.cc */; }; - 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E8EDC082600000000 /* gpu_buffer.cc */; }; - 49B7A4FC8F068F4700000000 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */; }; - 49B7A4FC8F068F4700000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */; }; - 49B7A4FC8FB74E7600000000 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E8FB74E7600000000 /* inference_calculator.cc */; }; - 49B7A4FC8FB74E7600000001 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469E8FB74E7600000000 /* inference_calculator.cc */; }; - 49B7A4FC9298B3CD00000000 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */; }; - 49B7A4FC9298B3CD00000001 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */; }; - 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */; }; - 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */; }; - 49B7A4FC984EF97C00000000 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E984EF97C00000000 /* gpu_service.cc */; }; - 49B7A4FC984EF97C00000001 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469E984EF97C00000000 /* gpu_service.cc */; }; - 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E998F8A2E00000000 /* NSError+util_status.mm */; }; - 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469E998F8A2E00000000 /* NSError+util_status.mm */; }; - 49B7A4FC99A19E9200000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; - 49B7A4FC99A19E9200000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E99A19E9200000000 /* resource_util_apple.cc */; }; - 49B7A4FC99A1D41800000000 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */; }; - 49B7A4FC99A1D41800000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */; }; - 49B7A4FC9A0C486600000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; - 49B7A4FC9A0C486600000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469E9A0C486600000000 /* Filter.cpp */; }; - 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; - 49B7A4FC9E41D6ED00000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */; }; - 49B7A4FCA0A3B78B00000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */; }; - 49B7A4FCA0A3B78B00000001 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */; }; - 49B7A4FCA1639D0C00000000 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */; }; - 49B7A4FCA1639D0C00000001 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */; }; - 49B7A4FCA3E97E1400000000 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */; }; - 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */; }; - 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */; }; - 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */; }; - 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; - 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EA688677600000000 /* SourceCamera.cpp */; }; - 49B7A4FCAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; - 49B7A4FCAF368E8800000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */; }; - 49B7A4FCB1AC117700000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB1AC117700000000 /* gate_calculator.cc */; }; - 49B7A4FCB1AC117700000001 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB1AC117700000000 /* gate_calculator.cc */; }; - 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469EB1FDA98700000000 /* math_utils.cpp */; }; - 49B7A4FCB1FDA98700000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 8F62469EB1FDA98700000000 /* math_utils.cpp */; }; - 49B7A4FCB288401C00000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; - 49B7A4FCB288401C00000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 8F62469EB288401C00000000 /* ola_graph.cc */; }; - 49B7A4FCB8521D3400000000 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */; }; - 49B7A4FCB8521D3400000001 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */; }; - 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; - 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */; }; - 49B7A4FCBC1DF28100000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */; }; - 49B7A4FCBC1DF28100000001 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */; }; - 49B7A4FCBCE7858600000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBCE7858600000000 /* thresholding_calculator.cc */; }; - 49B7A4FCBCE7858600000001 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBCE7858600000000 /* thresholding_calculator.cc */; }; - 49B7A4FCBED4CA2400000000 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */; }; - 49B7A4FCBED4CA2400000001 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */; }; - 49B7A4FCC05BE00400000000 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */; }; - 49B7A4FCC05BE00400000001 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */; }; - 49B7A4FCC345270B00000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; - 49B7A4FCC345270B00000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC345270B00000000 /* IOSTarget.cpp */; }; - 49B7A4FCC43404B200000000 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; - 49B7A4FCC43404B200000001 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */; }; - 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; - 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EC7392BFD00000000 /* TargetView.cpp */; }; - 49B7A4FCCCE7F65F00000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; - 49B7A4FCCCE7F65F00000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */; }; - 49B7A4FCCD95EE7200000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */; }; - 49B7A4FCCD95EE7200000001 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */; }; - 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */; }; - 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */; }; - 49B7A4FCD0D5BCFD00000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */; }; - 49B7A4FCD0D5BCFD00000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */; }; - 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469ED11949C300000000 /* gl_context.cc */; }; - 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469ED11949C300000000 /* gl_context.cc */; }; - 49B7A4FCD71B607200000000 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */; }; - 49B7A4FCD71B607200000001 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */; }; - 49B7A4FCD84977E600000000 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */; }; - 49B7A4FCD84977E600000001 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */; }; - 49B7A4FCD8BCE6D000000000 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */; }; - 49B7A4FCD8BCE6D000000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */; }; - 49B7A4FCD9FC1F1200000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; - 49B7A4FCD9FC1F1200000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469ED9FC1F1200000000 /* GLProgram.cpp */; }; - 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; - 49B7A4FCDBE5CD1B00000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EDBE5CD1B00000000 /* Ref.cpp */; }; - 49B7A4FCDD869D9E00000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */; }; - 49B7A4FCDD869D9E00000001 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */; }; - 49B7A4FCE46A0E9300000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */; }; - 49B7A4FCE46A0E9300000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */; }; - 49B7A4FCE7ED8E2C00000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */; }; - 49B7A4FCE7ED8E2C00000001 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */; }; - 49B7A4FCEA623A4800000000 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EEA623A4800000000 /* gl_texture_view.cc */; }; - 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EEA623A4800000000 /* gl_texture_view.cc */; }; - 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469EEEE7D66700000000 /* MPPGraph.mm */; }; - 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 8F62469EEEE7D66700000000 /* MPPGraph.mm */; }; - 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EF18A35B600000000 /* max_unpooling.cc */; }; - 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 8F62469EF18A35B600000000 /* max_unpooling.cc */; }; - 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */; }; - 49B7A4FCF332D51F00000001 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */; }; - 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */ = {isa = PBXBuildFile; fileRef = 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */; }; - 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */ = {isa = PBXBuildFile; fileRef = 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */; }; - 49B7A4FCF51362E900000000 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; - 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */; }; - 49B7A4FCFA8D3DEA00000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */; }; - 49B7A4FCFA8D3DEA00000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */; }; - 49B7A4FCFD02751100000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; - 49B7A4FCFD02751100000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 8F62469EFD02751100000000 /* op_resolver.cc */; }; - 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */; }; - 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */; }; + 292131E00158CA5400000000 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B0158CA5400000000 /* rectangle_util.cc */; }; + 292131E00158CA5400000001 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B0158CA5400000000 /* rectangle_util.cc */; }; + 292131E001F3B5A000000000 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B01F3B5A000000000 /* gpu_buffer_storage.cc */; }; + 292131E001F3B5A000000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B01F3B5A000000000 /* gpu_buffer_storage.cc */; }; + 292131E002700A4A00000000 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B02700A4A00000000 /* collection_has_min_size_calculator.cc */; }; + 292131E002700A4A00000001 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B02700A4A00000000 /* collection_has_min_size_calculator.cc */; }; + 292131E0039C71CD00000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = C9EBA38B039C71CD00000000 /* ola_graph.cc */; }; + 292131E0039C71CD00000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = C9EBA38B039C71CD00000000 /* ola_graph.cc */; }; + 292131E003F760ED00000000 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */; }; + 292131E003F760ED00000001 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */; }; + 292131E003F760ED00000002 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */; }; + 292131E003F760ED00000003 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */; }; + 292131E0041A754A00000000 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B041A754A00000000 /* tensors_to_landmarks_calculator.cc */; }; + 292131E0041A754A00000001 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B041A754A00000000 /* tensors_to_landmarks_calculator.cc */; }; + 292131E00427142700000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B0427142700000000 /* end_loop_calculator.cc */; }; + 292131E00427142700000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B0427142700000000 /* end_loop_calculator.cc */; }; + 292131E004AC366500000000 /* packet.cc in api2 */ = {isa = PBXBuildFile; fileRef = C9EBA38B04AC366500000000 /* packet.cc */; }; + 292131E004AC366500000001 /* packet.cc in api2 */ = {isa = PBXBuildFile; fileRef = C9EBA38B04AC366500000000 /* packet.cc */; }; + 292131E00640609100000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B0640609100000000 /* landmark_projection_calculator.cc */; }; + 292131E00640609100000001 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B0640609100000000 /* landmark_projection_calculator.cc */; }; + 292131E0086B422F00000000 /* packet_generator_wrapper_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B086B422F00000000 /* packet_generator_wrapper_calculator.cc */; }; + 292131E0086B422F00000001 /* packet_generator_wrapper_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B086B422F00000000 /* packet_generator_wrapper_calculator.cc */; }; + 292131E008F5F8CC00000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B08F5F8CC00000000 /* gate_calculator.cc */; }; + 292131E008F5F8CC00000001 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B08F5F8CC00000000 /* gate_calculator.cc */; }; + 292131E00CE8B3CB00000000 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B0CE8B3CB00000000 /* tensors_to_floats_calculator.cc */; }; + 292131E00CE8B3CB00000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B0CE8B3CB00000000 /* tensors_to_floats_calculator.cc */; }; + 292131E00E5CBB7200000000 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B0E5CBB7200000000 /* face_mesh_beauty_render.cc */; }; + 292131E00E5CBB7200000001 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B0E5CBB7200000000 /* face_mesh_beauty_render.cc */; }; + 292131E00FE70EC600000000 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B0FE70EC600000000 /* gl_calculator_helper_impl_common.cc */; }; + 292131E00FE70EC600000001 /* gl_calculator_helper_impl_common.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B0FE70EC600000000 /* gl_calculator_helper_impl_common.cc */; }; + 292131E013EBD42600000000 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B13EBD42600000000 /* validate.cc */; }; + 292131E013EBD42600000001 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B13EBD42600000000 /* validate.cc */; }; + 292131E01534E9A800000000 /* status.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B1534E9A800000000 /* status.cc */; }; + 292131E01534E9A800000001 /* status.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B1534E9A800000000 /* status.cc */; }; + 292131E0156896BC00000000 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B156896BC00000000 /* pixel_buffer_pool_util.mm */; }; + 292131E0156896BC00000001 /* pixel_buffer_pool_util.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B156896BC00000000 /* pixel_buffer_pool_util.mm */; }; + 292131E0167968C300000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B167968C300000000 /* TargetView.cpp */; }; + 292131E0167968C300000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B167968C300000000 /* TargetView.cpp */; }; + 292131E0167968C300000002 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B167968C300000000 /* TargetView.cpp */; }; + 292131E0167968C300000003 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B167968C300000000 /* TargetView.cpp */; }; + 292131E0193619E800000000 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B193619E800000000 /* mat4.cpp */; }; + 292131E0193619E800000001 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B193619E800000000 /* mat4.cpp */; }; + 292131E01B997A6D00000000 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */; }; + 292131E01B997A6D00000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */; }; + 292131E01B997A6D00000002 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */; }; + 292131E01B997A6D00000003 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */; }; + 292131E01E91339000000000 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B1E91339000000000 /* landmarks_to_transform_matrix.cc */; }; + 292131E01E91339000000001 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B1E91339000000000 /* landmarks_to_transform_matrix.cc */; }; + 292131E0244E885E00000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B244E885E00000000 /* cpu_util.cc */; }; + 292131E0244E885E00000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B244E885E00000000 /* cpu_util.cc */; }; + 292131E025A56E7500000000 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B25A56E7500000000 /* gpu_buffer_format.cc */; }; + 292131E025A56E7500000001 /* gpu_buffer_format.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B25A56E7500000000 /* gpu_buffer_format.cc */; }; + 292131E026CACA2800000000 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B26CACA2800000000 /* inference_calculator_metal.cc */; }; + 292131E026CACA2800000001 /* inference_calculator_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B26CACA2800000000 /* inference_calculator_metal.cc */; }; + 292131E026FC899A00000000 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B26FC899A00000000 /* tag_map_helper.cc */; }; + 292131E026FC899A00000001 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B26FC899A00000000 /* tag_map_helper.cc */; }; + 292131E02A58F18200000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B2A58F18200000000 /* SourceCamera.cpp */; }; + 292131E02A58F18200000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B2A58F18200000000 /* SourceCamera.cpp */; }; + 292131E02A58F18200000002 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B2A58F18200000000 /* SourceCamera.cpp */; }; + 292131E02A58F18200000003 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B2A58F18200000000 /* SourceCamera.cpp */; }; + 292131E02B14856B00000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38B2B14856B00000000 /* MPPGraph.mm */; }; + 292131E02B14856B00000001 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38B2B14856B00000000 /* MPPGraph.mm */; }; + 292131E02E51696100000000 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = C9EBA38B2E51696100000000 /* callback_packet_calculator.cc */; }; + 292131E02E51696100000001 /* callback_packet_calculator.cc in internal */ = {isa = PBXBuildFile; fileRef = C9EBA38B2E51696100000000 /* callback_packet_calculator.cc */; }; + 292131E02EDD493A00000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B2EDD493A00000000 /* ssd_anchors_calculator.cc */; }; + 292131E02EDD493A00000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B2EDD493A00000000 /* ssd_anchors_calculator.cc */; }; + 292131E035928F7E00000000 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B35928F7E00000000 /* image_to_tensor_converter_metal.cc */; }; + 292131E035928F7E00000001 /* image_to_tensor_converter_metal.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B35928F7E00000000 /* image_to_tensor_converter_metal.cc */; }; + 292131E0373C8B5300000000 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B373C8B5300000000 /* detections_to_render_data_calculator.cc */; }; + 292131E0373C8B5300000001 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B373C8B5300000000 /* detections_to_render_data_calculator.cc */; }; + 292131E0385A1C8500000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B385A1C8500000000 /* Filter.cpp */; }; + 292131E0385A1C8500000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B385A1C8500000000 /* Filter.cpp */; }; + 292131E0385A1C8500000002 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B385A1C8500000000 /* Filter.cpp */; }; + 292131E0385A1C8500000003 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B385A1C8500000000 /* Filter.cpp */; }; + 292131E039E5E8A600000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B39E5E8A600000000 /* vec4.cpp */; }; + 292131E039E5E8A600000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B39E5E8A600000000 /* vec4.cpp */; }; + 292131E03BB7F36D00000000 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B3BB7F36D00000000 /* MPPMetalUtil.mm */; }; + 292131E03BB7F36D00000001 /* MPPMetalUtil.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B3BB7F36D00000000 /* MPPMetalUtil.mm */; }; + 292131E03C2F923900000000 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B3C2F923900000000 /* immediate_input_stream_handler.cc */; }; + 292131E03C2F923900000001 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B3C2F923900000000 /* immediate_input_stream_handler.cc */; }; + 292131E03D8CDBA400000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B3D8CDBA400000000 /* cpu_op_resolver.cc */; }; + 292131E03D8CDBA400000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B3D8CDBA400000000 /* cpu_op_resolver.cc */; }; + 292131E03EC5DCA500000000 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = C9EBA38B3EC5DCA500000000 /* OlaFaceUnity.mm */; }; + 292131E03EC5DCA500000001 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = C9EBA38B3EC5DCA500000000 /* OlaFaceUnity.mm */; }; + 292131E03FC5991E00000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B3FC5991E00000000 /* face_mesh_module_imp.cc */; }; + 292131E03FC5991E00000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B3FC5991E00000000 /* face_mesh_module_imp.cc */; }; + 292131E0408026B200000000 /* template_expander.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B408026B200000000 /* template_expander.cc */; }; + 292131E0408026B200000001 /* template_expander.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B408026B200000000 /* template_expander.cc */; }; + 292131E043F1E68200000000 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B43F1E68200000000 /* location.cc */; }; + 292131E043F1E68200000001 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B43F1E68200000000 /* location.cc */; }; + 292131E0469B0ADD00000000 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B469B0ADD00000000 /* options_registry.cc */; }; + 292131E0469B0ADD00000001 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B469B0ADD00000000 /* options_registry.cc */; }; + 292131E049AA7F2B00000000 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B49AA7F2B00000000 /* status_builder.cc */; }; + 292131E049AA7F2B00000001 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B49AA7F2B00000000 /* status_builder.cc */; }; + 292131E04C68E01800000000 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4C68E01800000000 /* gl_texture_buffer_pool.cc */; }; + 292131E04C68E01800000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4C68E01800000000 /* gl_texture_buffer_pool.cc */; }; + 292131E04CDCC8E700000000 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4CDCC8E700000000 /* gl_context.cc */; }; + 292131E04CDCC8E700000001 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4CDCC8E700000000 /* gl_context.cc */; }; + 292131E04D6C4C7F00000000 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4D6C4C7F00000000 /* gpu_shared_data_internal.cc */; }; + 292131E04D6C4C7F00000001 /* gpu_shared_data_internal.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B4D6C4C7F00000000 /* gpu_shared_data_internal.cc */; }; + 292131E0520F4EF100000000 /* options_syntax_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B520F4EF100000000 /* options_syntax_util.cc */; }; + 292131E0520F4EF100000001 /* options_syntax_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B520F4EF100000000 /* options_syntax_util.cc */; }; + 292131E054B2B79500000000 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B54B2B79500000000 /* gl_texture_view.cc */; }; + 292131E054B2B79500000001 /* gl_texture_view.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B54B2B79500000000 /* gl_texture_view.cc */; }; + 292131E054C7579B00000000 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B54C7579B00000000 /* tflite_model_loader.cc */; }; + 292131E054C7579B00000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B54C7579B00000000 /* tflite_model_loader.cc */; }; + 292131E056552D1100000000 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B56552D1100000000 /* image_to_tensor_converter_opencv.cc */; }; + 292131E056552D1100000001 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B56552D1100000000 /* image_to_tensor_converter_opencv.cc */; }; + 292131E05717A8BD00000000 /* clock.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B5717A8BD00000000 /* clock.cc */; }; + 292131E05717A8BD00000001 /* clock.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B5717A8BD00000000 /* clock.cc */; }; + 292131E05B295F7500000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */; }; + 292131E05B295F7500000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */; }; + 292131E05B295F7500000002 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */; }; + 292131E05B295F7500000003 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */; }; + 292131E05C1877A600000000 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B5C1877A600000000 /* vec3.cpp */; }; + 292131E05C1877A600000001 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B5C1877A600000000 /* vec3.cpp */; }; + 292131E05E64B57D00000000 /* profiler_resource_util_common.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B5E64B57D00000000 /* profiler_resource_util_common.cc */; }; + 292131E05E64B57D00000001 /* profiler_resource_util_common.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B5E64B57D00000000 /* profiler_resource_util_common.cc */; }; + 292131E061A3AEC600000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */; }; + 292131E061A3AEC600000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */; }; + 292131E061A3AEC600000002 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */; }; + 292131E061A3AEC600000003 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */; }; + 292131E061B557B900000000 /* default_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B61B557B900000000 /* default_input_stream_handler.cc */; }; + 292131E061B557B900000001 /* default_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B61B557B900000000 /* default_input_stream_handler.cc */; }; + 292131E061B7EE9300000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61B7EE9300000000 /* clip_vector_size_calculator.cc */; }; + 292131E061B7EE9300000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B61B7EE9300000000 /* clip_vector_size_calculator.cc */; }; + 292131E06449A05600000000 /* file_helpers.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B6449A05600000000 /* file_helpers.cc */; }; + 292131E06449A05600000001 /* file_helpers.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B6449A05600000000 /* file_helpers.cc */; }; + 292131E0653148E700000000 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B653148E700000000 /* options_util.cc */; }; + 292131E0653148E700000001 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B653148E700000000 /* options_util.cc */; }; + 292131E065E57C6A00000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B65E57C6A00000000 /* resource_util.cc */; }; + 292131E065E57C6A00000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B65E57C6A00000000 /* resource_util.cc */; }; + 292131E066B5DC2700000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B66B5DC2700000000 /* split_vector_calculator.cc */; }; + 292131E066B5DC2700000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B66B5DC2700000000 /* split_vector_calculator.cc */; }; + 292131E06A8EBE1E00000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B6A8EBE1E00000000 /* landmarks_refinement_calculator.cc */; }; + 292131E06A8EBE1E00000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B6A8EBE1E00000000 /* landmarks_refinement_calculator.cc */; }; + 292131E06B14FBE400000000 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */; }; + 292131E06B14FBE400000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */; }; + 292131E06B14FBE400000002 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */; }; + 292131E06B14FBE400000003 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */; }; + 292131E06B7D834500000000 /* validate_name.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B7D834500000000 /* validate_name.cc */; }; + 292131E06B7D834500000001 /* validate_name.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B6B7D834500000000 /* validate_name.cc */; }; + 292131E06E1CB88E00000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E1CB88E00000000 /* association_norm_rect_calculator.cc */; }; + 292131E06E1CB88E00000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E1CB88E00000000 /* association_norm_rect_calculator.cc */; }; + 292131E06E2763AD00000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E2763AD00000000 /* transpose_conv_bias.cc */; }; + 292131E06E2763AD00000001 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E2763AD00000000 /* transpose_conv_bias.cc */; }; + 292131E06E45D2D500000000 /* ret_check.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E45D2D500000000 /* ret_check.cc */; }; + 292131E06E45D2D500000001 /* ret_check.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B6E45D2D500000000 /* ret_check.cc */; }; + 292131E06FA6B02B00000000 /* switch_mux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B6FA6B02B00000000 /* switch_mux_calculator.cc */; }; + 292131E06FA6B02B00000001 /* switch_mux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B6FA6B02B00000000 /* switch_mux_calculator.cc */; }; + 292131E07111172300000000 /* image_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B7111172300000000 /* image_opencv.cc */; }; + 292131E07111172300000001 /* image_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B7111172300000000 /* image_opencv.cc */; }; + 292131E071F9799600000000 /* image_frame_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B71F9799600000000 /* image_frame_opencv.cc */; }; + 292131E071F9799600000001 /* image_frame_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38B71F9799600000000 /* image_frame_opencv.cc */; }; + 292131E07309A6CF00000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38B7309A6CF00000000 /* MPPTimestampConverter.mm */; }; + 292131E07309A6CF00000001 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38B7309A6CF00000000 /* MPPTimestampConverter.mm */; }; + 292131E07334328E00000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B7334328E00000000 /* thresholding_calculator.cc */; }; + 292131E07334328E00000001 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B7334328E00000000 /* thresholding_calculator.cc */; }; + 292131E074A45FEA00000000 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B74A45FEA00000000 /* MPPMetalHelper.mm */; }; + 292131E074A45FEA00000001 /* MPPMetalHelper.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B74A45FEA00000000 /* MPPMetalHelper.mm */; }; + 292131E074A84AF100000000 /* file_path.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B74A84AF100000000 /* file_path.cc */; }; + 292131E074A84AF100000001 /* file_path.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B74A84AF100000000 /* file_path.cc */; }; + 292131E0794C398A00000000 /* profiler_resource_util_ios.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B794C398A00000000 /* profiler_resource_util_ios.cc */; }; + 292131E0794C398A00000001 /* profiler_resource_util_ios.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B794C398A00000000 /* profiler_resource_util_ios.cc */; }; + 292131E07A36D66700000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B7A36D66700000000 /* GPUImageUtil.cpp */; }; + 292131E07A36D66700000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B7A36D66700000000 /* GPUImageUtil.cpp */; }; + 292131E07CAF9C9900000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B7CAF9C9900000000 /* gpu_buffer_multi_pool.cc */; }; + 292131E07CAF9C9900000001 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38B7CAF9C9900000000 /* gpu_buffer_multi_pool.cc */; }; + 292131E07DAFBCF400000000 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B7DAFBCF400000000 /* fixed_size_input_stream_handler.cc */; }; + 292131E07DAFBCF400000001 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38B7DAFBCF400000000 /* fixed_size_input_stream_handler.cc */; }; + 292131E07F781A8A00000000 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B7F781A8A00000000 /* image_to_tensor_calculator.cc */; }; + 292131E07F781A8A00000001 /* image_to_tensor_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38B7F781A8A00000000 /* image_to_tensor_calculator.cc */; }; + 292131E080DA5B6200000000 /* switch_demux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B80DA5B6200000000 /* switch_demux_calculator.cc */; }; + 292131E080DA5B6200000001 /* switch_demux_calculator.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B80DA5B6200000000 /* switch_demux_calculator.cc */; }; + 292131E083AFE1B600000000 /* subgraph_expansion.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B83AFE1B600000000 /* subgraph_expansion.cc */; }; + 292131E083AFE1B600000001 /* subgraph_expansion.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B83AFE1B600000000 /* subgraph_expansion.cc */; }; + 292131E08474EEF500000000 /* proto_util_lite.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B8474EEF500000000 /* proto_util_lite.cc */; }; + 292131E08474EEF500000001 /* proto_util_lite.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B8474EEF500000000 /* proto_util_lite.cc */; }; + 292131E085095B6300000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B85095B6300000000 /* annotation_overlay_calculator.cc */; }; + 292131E085095B6300000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B85095B6300000000 /* annotation_overlay_calculator.cc */; }; + 292131E0880E6D6100000000 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B880E6D6100000000 /* sink.cc */; }; + 292131E0880E6D6100000001 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B880E6D6100000000 /* sink.cc */; }; + 292131E08884614F00000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B8884614F00000000 /* FramebufferCache.cpp */; }; + 292131E08884614F00000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B8884614F00000000 /* FramebufferCache.cpp */; }; + 292131E08884614F00000002 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B8884614F00000000 /* FramebufferCache.cpp */; }; + 292131E08884614F00000003 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B8884614F00000000 /* FramebufferCache.cpp */; }; + 292131E088B6477F00000000 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = C9EBA38B88B6477F00000000 /* image_properties_calculator.cc */; }; + 292131E088B6477F00000001 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = C9EBA38B88B6477F00000000 /* image_properties_calculator.cc */; }; + 292131E088CF16C500000000 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B88CF16C500000000 /* monotonic_clock.cc */; }; + 292131E088CF16C500000001 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38B88CF16C500000000 /* monotonic_clock.cc */; }; + 292131E0891AB9AF00000000 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B891AB9AF00000000 /* fill_packet_set.cc */; }; + 292131E0891AB9AF00000001 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38B891AB9AF00000000 /* fill_packet_set.cc */; }; + 292131E0896EA7BE00000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B896EA7BE00000000 /* face_mesh_module.cc */; }; + 292131E0896EA7BE00000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = C9EBA38B896EA7BE00000000 /* face_mesh_module.cc */; }; + 292131E08BDC2B9600000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B8BDC2B9600000000 /* max_pool_argmax.cc */; }; + 292131E08BDC2B9600000001 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38B8BDC2B9600000000 /* max_pool_argmax.cc */; }; + 292131E08C0A8DE100000000 /* trace_builder.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B8C0A8DE100000000 /* trace_builder.cc */; }; + 292131E08C0A8DE100000001 /* trace_builder.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B8C0A8DE100000000 /* trace_builder.cc */; }; + 292131E08E64823900000000 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B8E64823900000000 /* detection_projection_calculator.cc */; }; + 292131E08E64823900000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B8E64823900000000 /* detection_projection_calculator.cc */; }; + 292131E08F1A956900000000 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B8F1A956900000000 /* tflite_custom_op_resolver_calculator.cc */; }; + 292131E08F1A956900000001 /* tflite_custom_op_resolver_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38B8F1A956900000000 /* tflite_custom_op_resolver_calculator.cc */; }; + 292131E090340E7500000000 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B90340E7500000000 /* begin_loop_calculator.cc */; }; + 292131E090340E7500000001 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B90340E7500000000 /* begin_loop_calculator.cc */; }; + 292131E09165234300000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9165234300000000 /* Context.cpp */; }; + 292131E09165234300000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9165234300000000 /* Context.cpp */; }; + 292131E09165234300000002 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9165234300000000 /* Context.cpp */; }; + 292131E09165234300000003 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9165234300000000 /* Context.cpp */; }; + 292131E0958571C200000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B958571C200000000 /* non_max_suppression_calculator.cc */; }; + 292131E0958571C200000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B958571C200000000 /* non_max_suppression_calculator.cc */; }; + 292131E097A291BC00000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B97A291BC00000000 /* math_utils.cpp */; }; + 292131E097A291BC00000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38B97A291BC00000000 /* math_utils.cpp */; }; + 292131E097D6686E00000000 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B97D6686E00000000 /* rect_to_render_data_calculator.cc */; }; + 292131E097D6686E00000001 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38B97D6686E00000000 /* rect_to_render_data_calculator.cc */; }; + 292131E09ADB4E5D00000000 /* gl_context_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B9ADB4E5D00000000 /* gl_context_profiler.cc */; }; + 292131E09ADB4E5D00000001 /* gl_context_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38B9ADB4E5D00000000 /* gl_context_profiler.cc */; }; + 292131E09C6B9F6700000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */; }; + 292131E09C6B9F6700000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */; }; + 292131E09C6B9F6700000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */; }; + 292131E09C6B9F6700000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */; }; + 292131E09C74CB9200000000 /* node.cc in api2 */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C74CB9200000000 /* node.cc */; }; + 292131E09C74CB9200000001 /* node.cc in api2 */ = {isa = PBXBuildFile; fileRef = C9EBA38B9C74CB9200000000 /* node.cc */; }; + 292131E09CC065F800000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9CC065F800000000 /* GLProgram.cpp */; }; + 292131E09CC065F800000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9CC065F800000000 /* GLProgram.cpp */; }; + 292131E09CC065F800000002 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9CC065F800000000 /* GLProgram.cpp */; }; + 292131E09CC065F800000003 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38B9CC065F800000000 /* GLProgram.cpp */; }; + 292131E0A1A7A6AB00000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BA1A7A6AB00000000 /* previous_loopback_calculator.cc */; }; + 292131E0A1A7A6AB00000001 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BA1A7A6AB00000000 /* previous_loopback_calculator.cc */; }; + 292131E0A30CE7D000000000 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA30CE7D000000000 /* MPPGraphGPUData.mm */; }; + 292131E0A30CE7D000000001 /* MPPGraphGPUData.mm in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA30CE7D000000000 /* MPPGraphGPUData.mm */; }; + 292131E0A515D7AD00000000 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA515D7AD00000000 /* shader_util.cc */; }; + 292131E0A515D7AD00000001 /* shader_util.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA515D7AD00000000 /* shader_util.cc */; }; + 292131E0A5D40D5600000000 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BA5D40D5600000000 /* rect_transformation_calculator.cc */; }; + 292131E0A5D40D5600000001 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BA5D40D5600000000 /* rect_transformation_calculator.cc */; }; + 292131E0A6E86D0400000000 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA6E86D0400000000 /* gl_simple_shaders.cc */; }; + 292131E0A6E86D0400000001 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BA6E86D0400000000 /* gl_simple_shaders.cc */; }; + 292131E0A7A5495900000000 /* tensor.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BA7A5495900000000 /* tensor.cc */; }; + 292131E0A7A5495900000001 /* tensor.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BA7A5495900000000 /* tensor.cc */; }; + 292131E0A9FEEACC00000000 /* name_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BA9FEEACC00000000 /* name_util.cc */; }; + 292131E0A9FEEACC00000001 /* name_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BA9FEEACC00000000 /* name_util.cc */; }; + 292131E0AA3DAAFE00000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38BAA3DAAFE00000000 /* op_resolver.cc */; }; + 292131E0AA3DAAFE00000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38BAA3DAAFE00000000 /* op_resolver.cc */; }; + 292131E0AE5D302600000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BAE5D302600000000 /* math.cpp */; }; + 292131E0AE5D302600000001 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BAE5D302600000000 /* math.cpp */; }; + 292131E0AF808B4E00000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BAF808B4E00000000 /* landmarks_to_render_data_calculator.cc */; }; + 292131E0AF808B4E00000001 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BAF808B4E00000000 /* landmarks_to_render_data_calculator.cc */; }; + 292131E0B1F58FA100000000 /* options_field_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BB1F58FA100000000 /* options_field_util.cc */; }; + 292131E0B1F58FA100000001 /* options_field_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BB1F58FA100000000 /* options_field_util.cc */; }; + 292131E0B20E049D00000000 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BB20E049D00000000 /* gpu_buffer.cc */; }; + 292131E0B20E049D00000001 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BB20E049D00000000 /* gpu_buffer.cc */; }; + 292131E0B5D3975C00000000 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */; }; + 292131E0B5D3975C00000001 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */; }; + 292131E0B5D3975C00000002 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */; }; + 292131E0B5D3975C00000003 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */; }; + 292131E0B68AAB6100000000 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BB68AAB6100000000 /* landmarks_to_detection_calculator.cc */; }; + 292131E0B68AAB6100000001 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BB68AAB6100000000 /* landmarks_to_detection_calculator.cc */; }; + 292131E0B70D8FD100000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB70D8FD100000000 /* Source.cpp */; }; + 292131E0B70D8FD100000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB70D8FD100000000 /* Source.cpp */; }; + 292131E0B70D8FD100000002 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB70D8FD100000000 /* Source.cpp */; }; + 292131E0B70D8FD100000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BB70D8FD100000000 /* Source.cpp */; }; + 292131E0B742764B00000000 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BB742764B00000000 /* tensors_to_detections_calculator.cc */; }; + 292131E0B742764B00000001 /* tensors_to_detections_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BB742764B00000000 /* tensors_to_detections_calculator.cc */; }; + 292131E0B766CDE400000000 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BB766CDE400000000 /* image_to_tensor_utils.cc */; }; + 292131E0B766CDE400000001 /* image_to_tensor_utils.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BB766CDE400000000 /* image_to_tensor_utils.cc */; }; + 292131E0B99FAC6D00000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BB99FAC6D00000000 /* gl_calculator_helper.cc */; }; + 292131E0B99FAC6D00000001 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BB99FAC6D00000000 /* gl_calculator_helper.cc */; }; + 292131E0BB054CF600000000 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38BBB054CF600000000 /* tflite_model_calculator.cc */; }; + 292131E0BB054CF600000001 /* tflite_model_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = C9EBA38BBB054CF600000000 /* tflite_model_calculator.cc */; }; + 292131E0BB7F30E700000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38BBB7F30E700000000 /* vec2.cpp */; }; + 292131E0BB7F30E700000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = C9EBA38BBB7F30E700000000 /* vec2.cpp */; }; + 292131E0BC8A185A00000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BBC8A185A00000000 /* flow_limiter_calculator.cc */; }; + 292131E0BC8A185A00000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BBC8A185A00000000 /* flow_limiter_calculator.cc */; }; + 292131E0BCEAB42A00000000 /* switch_container.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BBCEAB42A00000000 /* switch_container.cc */; }; + 292131E0BCEAB42A00000001 /* switch_container.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BBCEAB42A00000000 /* switch_container.cc */; }; + 292131E0BD9BA0EF00000000 /* matrix.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BBD9BA0EF00000000 /* matrix.cc */; }; + 292131E0BD9BA0EF00000001 /* matrix.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BBD9BA0EF00000000 /* matrix.cc */; }; + 292131E0BE182A6600000000 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BBE182A6600000000 /* split_proto_list_calculator.cc */; }; + 292131E0BE182A6600000001 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BBE182A6600000000 /* split_proto_list_calculator.cc */; }; + 292131E0C04E125300000000 /* tensor_ahwb.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BC04E125300000000 /* tensor_ahwb.cc */; }; + 292131E0C04E125300000001 /* tensor_ahwb.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BC04E125300000000 /* tensor_ahwb.cc */; }; + 292131E0C2F713F900000000 /* graph_tracer.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38BC2F713F900000000 /* graph_tracer.cc */; }; + 292131E0C2F713F900000001 /* graph_tracer.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38BC2F713F900000000 /* graph_tracer.cc */; }; + 292131E0C41917A300000000 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BC41917A300000000 /* container_util.cc */; }; + 292131E0C41917A300000001 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BC41917A300000000 /* container_util.cc */; }; + 292131E0C5B8FC9C00000000 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BC5B8FC9C00000000 /* inference_calculator_cpu.cc */; }; + 292131E0C5B8FC9C00000001 /* inference_calculator_cpu.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BC5B8FC9C00000000 /* inference_calculator_cpu.cc */; }; + 292131E0C6F62DEE00000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BC6F62DEE00000000 /* transform_tensor_bilinear.cc */; }; + 292131E0C6F62DEE00000001 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BC6F62DEE00000000 /* transform_tensor_bilinear.cc */; }; + 292131E0C730EFED00000000 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BC730EFED00000000 /* local_file_contents_calculator.cc */; }; + 292131E0C730EFED00000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BC730EFED00000000 /* local_file_contents_calculator.cc */; }; + 292131E0C82837B100000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BC82837B100000000 /* to_image_calculator.cc */; }; + 292131E0C82837B100000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BC82837B100000000 /* to_image_calculator.cc */; }; + 292131E0CA41AC6F00000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BCA41AC6F00000000 /* annotation_renderer.cc */; }; + 292131E0CA41AC6F00000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BCA41AC6F00000000 /* annotation_renderer.cc */; }; + 292131E0CC83910500000000 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BCC83910500000000 /* gpu_service.cc */; }; + 292131E0CC83910500000001 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BCC83910500000000 /* gpu_service.cc */; }; + 292131E0CC9C82C200000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BCC9C82C200000000 /* Ref.cpp */; }; + 292131E0CC9C82C200000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BCC9C82C200000000 /* Ref.cpp */; }; + 292131E0CCE4FA9600000000 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BCCE4FA9600000000 /* transform_landmarks.cc */; }; + 292131E0CCE4FA9600000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BCCE4FA9600000000 /* transform_landmarks.cc */; }; + 292131E0CDD4591A00000000 /* tag_map.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BCDD4591A00000000 /* tag_map.cc */; }; + 292131E0CDD4591A00000001 /* tag_map.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BCDD4591A00000000 /* tag_map.cc */; }; + 292131E0CEEFFADB00000000 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BCEEFFADB00000000 /* status_util.cc */; }; + 292131E0CEEFFADB00000001 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = C9EBA38BCEEFFADB00000000 /* status_util.cc */; }; + 292131E0CF1B8F7800000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38BCF1B8F7800000000 /* NSError+util_status.mm */; }; + 292131E0CF1B8F7800000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38BCF1B8F7800000000 /* NSError+util_status.mm */; }; + 292131E0D16450D500000000 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BD16450D500000000 /* inference_calculator.cc */; }; + 292131E0D16450D500000001 /* inference_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = C9EBA38BD16450D500000000 /* inference_calculator.cc */; }; + 292131E0D1A7539900000000 /* in_order_output_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38BD1A7539900000000 /* in_order_output_stream_handler.cc */; }; + 292131E0D1A7539900000001 /* in_order_output_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = C9EBA38BD1A7539900000000 /* in_order_output_stream_handler.cc */; }; + 292131E0D2DBF16C00000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BD2DBF16C00000000 /* max_unpooling.cc */; }; + 292131E0D2DBF16C00000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = C9EBA38BD2DBF16C00000000 /* max_unpooling.cc */; }; + 292131E0D9CF443F00000000 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38BD9CF443F00000000 /* graph_profiler.cc */; }; + 292131E0D9CF443F00000001 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = C9EBA38BD9CF443F00000000 /* graph_profiler.cc */; }; + 292131E0DEA0293C00000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BDEA0293C00000000 /* SourceImage.cpp */; }; + 292131E0DEA0293C00000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BDEA0293C00000000 /* SourceImage.cpp */; }; + 292131E0DEA0293C00000002 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BDEA0293C00000000 /* SourceImage.cpp */; }; + 292131E0DEA0293C00000003 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BDEA0293C00000000 /* SourceImage.cpp */; }; + 292131E0E042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BE042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; + 292131E0E042E11F00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BE042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */; }; + 292131E0E1457C5300000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = C9EBA38BE1457C5300000000 /* face_landmarks_to_render_data_calculator.cc */; }; + 292131E0E1457C5300000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = C9EBA38BE1457C5300000000 /* face_landmarks_to_render_data_calculator.cc */; }; + 292131E0E6734FD200000000 /* topologicalsorter.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BE6734FD200000000 /* topologicalsorter.cc */; }; + 292131E0E6734FD200000001 /* topologicalsorter.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BE6734FD200000000 /* topologicalsorter.cc */; }; + 292131E0E6E5F27200000000 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BE6E5F27200000000 /* threadpool_pthread_impl.cc */; }; + 292131E0E6E5F27200000001 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BE6E5F27200000000 /* threadpool_pthread_impl.cc */; }; + 292131E0E7100B5A00000000 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BE7100B5A00000000 /* image_frame.cc */; }; + 292131E0E7100B5A00000001 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BE7100B5A00000000 /* image_frame.cc */; }; + 292131E0E807B54A00000000 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BE807B54A00000000 /* image.cc */; }; + 292131E0E807B54A00000001 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = C9EBA38BE807B54A00000000 /* image.cc */; }; + 292131E0E828302500000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BE828302500000000 /* constant_side_packet_calculator.cc */; }; + 292131E0E828302500000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BE828302500000000 /* constant_side_packet_calculator.cc */; }; + 292131E0EED97A0A00000000 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BEED97A0A00000000 /* header_util.cc */; }; + 292131E0EED97A0A00000001 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BEED97A0A00000000 /* header_util.cc */; }; + 292131E0EF9BE2D900000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BEF9BE2D900000000 /* resource_util_apple.cc */; }; + 292131E0EF9BE2D900000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BEF9BE2D900000000 /* resource_util_apple.cc */; }; + 292131E0F121E6F100000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BF121E6F100000000 /* Target.cpp */; }; + 292131E0F121E6F100000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BF121E6F100000000 /* Target.cpp */; }; + 292131E0F121E6F100000002 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BF121E6F100000000 /* Target.cpp */; }; + 292131E0F121E6F100000003 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = C9EBA38BF121E6F100000000 /* Target.cpp */; }; + 292131E0F2F4752D00000000 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38BF2F4752D00000000 /* util.cc */; }; + 292131E0F2F4752D00000001 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = C9EBA38BF2F4752D00000000 /* util.cc */; }; + 292131E0F2F6EF7A00000000 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BF2F6EF7A00000000 /* registration_token.cc */; }; + 292131E0F2F6EF7A00000001 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BF2F6EF7A00000000 /* registration_token.cc */; }; + 292131E0F433E56800000000 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BF433E56800000000 /* gl_texture_buffer.cc */; }; + 292131E0F433E56800000001 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BF433E56800000000 /* gl_texture_buffer.cc */; }; + 292131E0F4DBB09F00000000 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BF4DBB09F00000000 /* gl_context_eagl.cc */; }; + 292131E0F4DBB09F00000001 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = C9EBA38BF4DBB09F00000000 /* gl_context_eagl.cc */; }; + 292131E0FE3D856E00000000 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BFE3D856E00000000 /* detections_to_rects_calculator.cc */; }; + 292131E0FE3D856E00000001 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = C9EBA38BFE3D856E00000000 /* detections_to_rects_calculator.cc */; }; + 292131E0FEDC5EF900000000 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BFEDC5EF900000000 /* registration.cc */; }; + 292131E0FEDC5EF900000001 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = C9EBA38BFEDC5EF900000000 /* registration.cc */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 7571235F04A520C300000000 /* PBXContainerItemProxy */ = { + C2BE56B00035FDA900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B904A520C200000000; + remoteGlobalIDString = 87427C8C0035FDA800000000; }; - 7571235F0A556C3100000000 /* PBXContainerItemProxy */ = { + C2BE56B001E3AB2300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B90A556C3000000000; + remoteGlobalIDString = 87427C8C01E3AB2200000000; }; - 7571235F0B74D91900000000 /* PBXContainerItemProxy */ = { + C2BE56B00347AF6B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B90B74D91800000000; + remoteGlobalIDString = 87427C8C0347AF6A00000000; }; - 7571235F14B7442B00000000 /* PBXContainerItemProxy */ = { + C2BE56B0097345B300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B914B7442A00000000; + remoteGlobalIDString = 87427C8C097345B200000000; }; - 7571235F16C7A06F00000000 /* PBXContainerItemProxy */ = { + C2BE56B00BF0DE7F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B916C7A06E00000000; + remoteGlobalIDString = 87427C8C0BF0DE7E00000000; }; - 7571235F17CF694F00000000 /* PBXContainerItemProxy */ = { + C2BE56B00FCF920700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B917CF694E00000000; + remoteGlobalIDString = 87427C8C0FCF920600000000; }; - 7571235F1918237700000000 /* PBXContainerItemProxy */ = { + C2BE56B01AB81BE100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B91918237600000000; + remoteGlobalIDString = 87427C8C1AB81BE000000000; }; - 7571235F1AFB53CB00000000 /* PBXContainerItemProxy */ = { + C2BE56B01F62C35100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B91AFB53CA00000000; + remoteGlobalIDString = 87427C8C1F62C35000000000; }; - 7571235F2FCF8C3F00000000 /* PBXContainerItemProxy */ = { + C2BE56B024F9083900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B92FCF8C3E00000000; + remoteGlobalIDString = 87427C8C24F9083800000000; }; - 7571235F32A4BF4B00000000 /* PBXContainerItemProxy */ = { + C2BE56B027C7824900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B932A4BF4A00000000; + remoteGlobalIDString = 87427C8C27C7824800000000; }; - 7571235F32AD902100000000 /* PBXContainerItemProxy */ = { + C2BE56B028AB0AE900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B932AD902000000000; + remoteGlobalIDString = 87427C8C28AB0AE800000000; }; - 7571235F395CFE5100000000 /* PBXContainerItemProxy */ = { + C2BE56B028DDC73700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9395CFE5000000000; + remoteGlobalIDString = 87427C8C28DDC73600000000; }; - 7571235F39FF367F00000000 /* PBXContainerItemProxy */ = { + C2BE56B031D9088D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B939FF367E00000000; + remoteGlobalIDString = 87427C8C31D9088C00000000; }; - 7571235F4835E8D500000000 /* PBXContainerItemProxy */ = { + C2BE56B033FB39B700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B94835E8D400000000; + remoteGlobalIDString = 87427C8C33FB39B600000000; }; - 7571235F4A6C65DF00000000 /* PBXContainerItemProxy */ = { + C2BE56B043703CBB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B94A6C65DE00000000; + remoteGlobalIDString = 87427C8C43703CBA00000000; }; - 7571235F4C962DED00000000 /* PBXContainerItemProxy */ = { + C2BE56B048ADE3E100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B94C962DEC00000000; + remoteGlobalIDString = 87427C8C48ADE3E000000000; }; - 7571235F507BECC700000000 /* PBXContainerItemProxy */ = { + C2BE56B048CB51D900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9507BECC600000000; + remoteGlobalIDString = 87427C8C48CB51D800000000; }; - 7571235F519E3A1B00000000 /* PBXContainerItemProxy */ = { + C2BE56B04F5ADAC500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9519E3A1A00000000; + remoteGlobalIDString = 87427C8C4F5ADAC400000000; }; - 7571235F52EE187D00000000 /* PBXContainerItemProxy */ = { + C2BE56B05082EB1500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B952EE187C00000000; + remoteGlobalIDString = B7165AA05082EB1400000000; }; - 7571235F55AF4C6500000000 /* PBXContainerItemProxy */ = { + C2BE56B05085DB6B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B955AF4C6400000000; + remoteGlobalIDString = 87427C8C5085DB6A00000000; }; - 7571235F5D80A99B00000000 /* PBXContainerItemProxy */ = { + C2BE56B0539639FF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B95D80A99A00000000; + remoteGlobalIDString = 87427C8C539639FE00000000; }; - 7571235F600148FB00000000 /* PBXContainerItemProxy */ = { + C2BE56B055826B2D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9600148FA00000000; + remoteGlobalIDString = 87427C8C55826B2C00000000; }; - 7571235F60D0021D00000000 /* PBXContainerItemProxy */ = { + C2BE56B056483AC300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B960D0021C00000000; + remoteGlobalIDString = 87427C8C56483AC200000000; }; - 7571235F6D62510500000000 /* PBXContainerItemProxy */ = { + C2BE56B057176BDB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B96D62510400000000; + remoteGlobalIDString = 87427C8C57176BDA00000000; }; - 7571235F79337D3300000000 /* PBXContainerItemProxy */ = { + C2BE56B0580182BB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B979337D3200000000; + remoteGlobalIDString = 87427C8C580182BA00000000; }; - 7571235F797718E700000000 /* PBXContainerItemProxy */ = { + C2BE56B05A1C6C0300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9797718E600000000; + remoteGlobalIDString = 87427C8C5A1C6C0200000000; }; - 7571235F7E562BDF00000000 /* PBXContainerItemProxy */ = { + C2BE56B06469C0B700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B97E562BDE00000000; + remoteGlobalIDString = 87427C8C6469C0B600000000; }; - 7571235F80FCD45900000000 /* PBXContainerItemProxy */ = { + C2BE56B06658E6D100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B980FCD45800000000; + remoteGlobalIDString = 87427C8C6658E6D000000000; }; - 7571235F8A94473900000000 /* PBXContainerItemProxy */ = { + C2BE56B0669C403500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B98A94473800000000; + remoteGlobalIDString = 87427C8C669C403400000000; }; - 7571235F8AC3922B00000000 /* PBXContainerItemProxy */ = { + C2BE56B0689B7C4D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B98AC3922A00000000; + remoteGlobalIDString = 87427C8C689B7C4C00000000; }; - 7571235F8C82B9EF00000000 /* PBXContainerItemProxy */ = { + C2BE56B06A79088D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B98C82B9EE00000000; + remoteGlobalIDString = 87427C8C6A79088C00000000; }; - 7571235F91B35B4700000000 /* PBXContainerItemProxy */ = { + C2BE56B06DF286B700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B991B35B4600000000; + remoteGlobalIDString = 87427C8C6DF286B600000000; }; - 7571235F92DAA70B00000000 /* PBXContainerItemProxy */ = { + C2BE56B0715EEB8700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B992DAA70A00000000; + remoteGlobalIDString = 87427C8C715EEB8600000000; }; - 7571235F95AF928500000000 /* PBXContainerItemProxy */ = { + C2BE56B07193C16300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B995AF928400000000; + remoteGlobalIDString = 87427C8C7193C16200000000; }; - 7571235F95D3064100000000 /* PBXContainerItemProxy */ = { + C2BE56B076329A9300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B995D3064000000000; + remoteGlobalIDString = 87427C8C76329A9200000000; }; - 7571235F984088FD00000000 /* PBXContainerItemProxy */ = { + C2BE56B079100D3300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9984088FC00000000; + remoteGlobalIDString = 87427C8C79100D3200000000; }; - 7571235F9D198C3700000000 /* PBXContainerItemProxy */ = { + C2BE56B07D10E9D700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B99D198C3600000000; + remoteGlobalIDString = 87427C8C7D10E9D600000000; }; - 7571235FA5AC836500000000 /* PBXContainerItemProxy */ = { + C2BE56B07DD4FB7B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9A5AC836400000000; + remoteGlobalIDString = 87427C8C7DD4FB7A00000000; }; - 7571235FACE90FE300000000 /* PBXContainerItemProxy */ = { + C2BE56B0802AA98100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9ACE90FE200000000; + remoteGlobalIDString = 87427C8C802AA98000000000; }; - 7571235FB474037D00000000 /* PBXContainerItemProxy */ = { + C2BE56B085031B7B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9B474037C00000000; + remoteGlobalIDString = 87427C8C85031B7A00000000; }; - 7571235FB67384D100000000 /* PBXContainerItemProxy */ = { + C2BE56B0997980BB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = 281DB351B67384D000000000; + remoteGlobalIDString = 87427C8C997980BA00000000; }; - 7571235FB784310700000000 /* PBXContainerItemProxy */ = { + C2BE56B09DFAE61B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9B784310600000000; + remoteGlobalIDString = 87427C8C9DFAE61A00000000; }; - 7571235FBAB5C57F00000000 /* PBXContainerItemProxy */ = { + C2BE56B09FE6425F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9BAB5C57E00000000; + remoteGlobalIDString = 87427C8C9FE6425E00000000; }; - 7571235FBAEEE68700000000 /* PBXContainerItemProxy */ = { + C2BE56B0A2D9738700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9BAEEE68600000000; + remoteGlobalIDString = 87427C8CA2D9738600000000; }; - 7571235FBCE0083900000000 /* PBXContainerItemProxy */ = { + C2BE56B0A68E7D9300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9BCE0083800000000; + remoteGlobalIDString = 87427C8CA68E7D9200000000; }; - 7571235FC415A01D00000000 /* PBXContainerItemProxy */ = { + C2BE56B0A79D913F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9C415A01C00000000; + remoteGlobalIDString = 87427C8CA79D913E00000000; }; - 7571235FC4F8B64100000000 /* PBXContainerItemProxy */ = { + C2BE56B0AA9834EF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9C4F8B64000000000; + remoteGlobalIDString = 87427C8CAA9834EE00000000; }; - 7571235FCB8F507D00000000 /* PBXContainerItemProxy */ = { + C2BE56B0AB71124700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9CB8F507C00000000; + remoteGlobalIDString = 87427C8CAB71124600000000; }; - 7571235FCF5F5EE700000000 /* PBXContainerItemProxy */ = { + C2BE56B0ACD174D700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9CF5F5EE600000000; + remoteGlobalIDString = 87427C8CACD174D600000000; }; - 7571235FD2A53B2100000000 /* PBXContainerItemProxy */ = { + C2BE56B0B6FCDEBB00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9D2A53B2000000000; + remoteGlobalIDString = 87427C8CB6FCDEBA00000000; }; - 7571235FD2C9CDB900000000 /* PBXContainerItemProxy */ = { + C2BE56B0B9ED489100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9D2C9CDB800000000; + remoteGlobalIDString = 87427C8CB9ED489000000000; }; - 7571235FD320929F00000000 /* PBXContainerItemProxy */ = { + C2BE56B0BB8FADF700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9D320929E00000000; + remoteGlobalIDString = 87427C8CBB8FADF600000000; }; - 7571235FD3EB570900000000 /* PBXContainerItemProxy */ = { + C2BE56B0BCA3F97900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9D3EB570800000000; + remoteGlobalIDString = 87427C8CBCA3F97800000000; }; - 7571235FDCA2423700000000 /* PBXContainerItemProxy */ = { + C2BE56B0C1C7634100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9DCA2423600000000; + remoteGlobalIDString = 87427C8CC1C7634000000000; }; - 7571235FDD40E3B300000000 /* PBXContainerItemProxy */ = { + C2BE56B0C2A07FBD00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9DD40E3B200000000; + remoteGlobalIDString = 87427C8CC2A07FBC00000000; }; - 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */ = { + C2BE56B0C2B4F12F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9E5D2ED5600000000; + remoteGlobalIDString = 87427C8CC2B4F12E00000000; }; - 7571235FEC4DADE300000000 /* PBXContainerItemProxy */ = { + C2BE56B0C3E18DC300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9EC4DADE200000000; + remoteGlobalIDString = 87427C8CC3E18DC200000000; }; - 7571235FEEDCEF1900000000 /* PBXContainerItemProxy */ = { + C2BE56B0C56051F500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9EEDCEF1800000000; + remoteGlobalIDString = 87427C8CC56051F400000000; }; - 7571235FF5035E2500000000 /* PBXContainerItemProxy */ = { + C2BE56B0C8F97AE300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9F5035E2400000000; + remoteGlobalIDString = 87427C8CC8F97AE200000000; }; - 7571235FFB58229B00000000 /* PBXContainerItemProxy */ = { + C2BE56B0CBFA7B6D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9FB58229A00000000; + remoteGlobalIDString = 87427C8CCBFA7B6C00000000; }; - 7571235FFD5CA03100000000 /* PBXContainerItemProxy */ = { + C2BE56B0CC1E0EB900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 22488B02D730B92B00000000 /* Project object */; + containerPortal = AF4586354B21A60D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = D50916B9FD5CA03000000000; + remoteGlobalIDString = 87427C8CCC1E0EB800000000; + }; + C2BE56B0D004C52900000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CD004C52800000000; + }; + C2BE56B0D423849F00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CD423849E00000000; + }; + C2BE56B0D847AEB500000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CD847AEB400000000; + }; + C2BE56B0DBCA1C3700000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CDBCA1C3600000000; + }; + C2BE56B0DBEA0FF500000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CDBEA0FF400000000; + }; + C2BE56B0DDDFAF0700000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CDDDFAF0600000000; + }; + C2BE56B0E533974900000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CE533974800000000; + }; + C2BE56B0EB9CEB5B00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEB9CEB5A00000000; + }; + C2BE56B0EDE504D100000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEDE504D000000000; + }; + C2BE56B0EE33FDCD00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEE33FDCC00000000; + }; + C2BE56B0EE7F321D00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEE7F321C00000000; + }; + C2BE56B0EE88637900000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEE88637800000000; + }; + C2BE56B0EFD880E700000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CEFD880E600000000; + }; + C2BE56B0F0B5502D00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CF0B5502C00000000; + }; + C2BE56B0F6B8627B00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CF6B8627A00000000; + }; + C2BE56B0FA5BFB6500000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CFA5BFB6400000000; + }; + C2BE56B0FE17E96100000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CFE17E96000000000; + }; + C2BE56B0FF3A799900000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AF4586354B21A60D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87427C8CFF3A799800000000; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 8F62469E004ED87500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E00E42C1500000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; - 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E0156E7A600000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; - 8F62469E01C72EAB00000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; - 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a; path = lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E032AE7D900000000 /* inference_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inference_calculator.h; path = mediapipe/calculators/tensor/inference_calculator.h; sourceTree = ""; }; - 8F62469E0592E24D00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; - 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E094AB7D000000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; - 8F62469E096C09DF00000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; - 8F62469E0B995C7D00000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; - 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = non_max_suppression_calculator.cc; path = mediapipe/calculators/util/non_max_suppression_calculator.cc; sourceTree = ""; }; - 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E0CFA3AED00000000 /* max_pool_argmax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_pool_argmax.h; path = mediapipe/util/tflite/operations/max_pool_argmax.h; sourceTree = ""; }; - 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a; path = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E0F3F7D7100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E0FFB16DF00000000 /* collection_has_min_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_has_min_size_calculator.h; path = mediapipe/calculators/util/collection_has_min_size_calculator.h; sourceTree = ""; }; - 8F62469E10398DD500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E1046F3BF00000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; - 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a; path = lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_detection_calculator.cc; path = mediapipe/calculators/util/landmarks_to_detection_calculator.cc; sourceTree = ""; }; - 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; - 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; - 8F62469E14D6DD8600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E1601B9F400000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; - 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a; path = lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E18FF939300000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; - 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; - 8F62469E1B33088D00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; - 8F62469E1CCA511900000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; - 8F62469E1DE1C67300000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; - 8F62469E1E08E4F200000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; - 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E20BF236600000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; - 8F62469E2111801D00000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; - 8F62469E2226086B00000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; - 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; - 8F62469E22A87E2800000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; - 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a; path = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a; path = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; - 8F62469E261F021200000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; - 8F62469E2665A36C00000000 /* transpose_conv_bias.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transpose_conv_bias.h; path = mediapipe/util/tflite/operations/transpose_conv_bias.h; sourceTree = ""; }; - 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = constant_side_packet_calculator.cc; path = mediapipe/calculators/core/constant_side_packet_calculator.cc; sourceTree = ""; }; - 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; - 8F62469E2A101FF000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a; path = lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_utils.cc; path = mediapipe/calculators/tensor/image_to_tensor_utils.cc; sourceTree = ""; }; - 8F62469E2DD9171300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E2E2AC0E200000000 /* gpu_buffer_multi_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_multi_pool.h; path = mediapipe/gpu/gpu_buffer_multi_pool.h; sourceTree = ""; }; - 8F62469E2E4BDDE900000000 /* gpu_buffer_storage_image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_image_frame.h; path = mediapipe/gpu/gpu_buffer_storage_image_frame.h; sourceTree = ""; }; - 8F62469E2E87CC4E00000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; - 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; - 8F62469E2F07C29D00000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; - 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_multi_pool.cc; path = mediapipe/gpu/gpu_buffer_multi_pool.cc; sourceTree = ""; }; - 8F62469E3087FAEC00000000 /* detections_to_rects_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = detections_to_rects_calculator.h; path = mediapipe/calculators/util/detections_to_rects_calculator.h; sourceTree = ""; }; - 8F62469E3099305600000000 /* image_to_tensor_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_utils.h; path = mediapipe/calculators/tensor/image_to_tensor_utils.h; sourceTree = ""; }; - 8F62469E3101686800000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; - 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_661952D5_ios_min11.0.a; path = lib_idx_math_661952D5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E3355B24600000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; - 8F62469E33969E5B00000000 /* gl_texture_buffer_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer_pool.h; path = mediapipe/gpu/gl_texture_buffer_pool.h; sourceTree = ""; }; - 8F62469E34B8327500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E3564243100000000 /* MPPGraphGPUData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraphGPUData.h; path = mediapipe/gpu/MPPGraphGPUData.h; sourceTree = ""; }; - 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = pixel_buffer_pool_util.mm; path = mediapipe/gpu/pixel_buffer_pool_util.mm; sourceTree = ""; }; - 8F62469E369A201C00000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; - 8F62469E36A1BCF500000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; - 8F62469E3950B88400000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; - 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E3D8600BC00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; - 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_tensor_bilinear.cc; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.cc; sourceTree = ""; }; - 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E3FEF732500000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; - 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a; path = lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E403A0ACA00000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; - 8F62469E42538A8300000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; - 8F62469E426BAE8A00000000 /* face_mesh_module.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module.h; path = mediapipe/render/module/beauty/face_mesh_module.h; sourceTree = ""; }; - 8F62469E43717CCB00000000 /* gl_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_base.h; path = mediapipe/gpu/gl_base.h; sourceTree = ""; }; - 8F62469E438E204A00000000 /* face_landmark_with_attention.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_landmark_with_attention.tflite; path = mediapipe/modules/face_landmark/face_landmark_with_attention.tflite; sourceTree = ""; }; - 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a; path = lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E44C7D79C00000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; - 8F62469E46E60CF500000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; - 8F62469E470DC89E00000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; - 8F62469E47AA7F8A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E482738F100000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; - 8F62469E4863BAE900000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; - 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage_cv_pixel_buffer.cc; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.cc; sourceTree = ""; }; - 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; - 8F62469E4907602900000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; - 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a; path = lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; - 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E4C094F0A00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; - 8F62469E4CC6C91400000000 /* face_mesh_module.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module.cc; path = mediapipe/render/module/beauty/face_mesh_module.cc; sourceTree = ""; }; - 8F62469E4CCA495100000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; - 8F62469E4E319F4100000000 /* face_detection_short_range.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_detection_short_range.tflite; path = mediapipe/modules/face_detection/face_detection_short_range.tflite; sourceTree = ""; }; - 8F62469E4EEECC8300000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; - 8F62469E50B7221100000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; - 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; - 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_29CCF89E_ios_min15.5.a; path = lib_idx_op_resolver_29CCF89E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a; path = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clip_vector_size_calculator.cc; path = mediapipe/calculators/core/clip_vector_size_calculator.cc; sourceTree = ""; }; - 8F62469E53F441A800000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; - 8F62469E5426685200000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; - 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_calculator.cc; path = mediapipe/calculators/tensor/image_to_tensor_calculator.cc; sourceTree = ""; }; - 8F62469E5771EFBD00000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; - 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; - 8F62469E5825859100000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; - 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E5A5CE83A00000000 /* gl_calculator_helper_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper_impl.h; path = mediapipe/gpu/gl_calculator_helper_impl.h; sourceTree = ""; }; - 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a; path = lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E5D4491B500000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; - 8F62469E5EECF1D200000000 /* image_to_tensor_converter_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_opencv.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.h; sourceTree = ""; }; - 8F62469E60EAFF9D00000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; - 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a; path = lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; - 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a; path = lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E6328969D00000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; - 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_metal.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.cc; sourceTree = ""; }; - 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_detections_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_detections_calculator.cc; sourceTree = ""; }; - 8F62469E64A7F94D00000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; - 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_661952D5_ios_min15.5.a; path = lib_idx_math_661952D5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E658A4F0A00000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; - 8F62469E6661607500000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; - 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a; path = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a; path = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a; path = lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a; path = lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E69D807EA00000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; - 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; - 8F62469E6E23461400000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; - 8F62469E6E52672200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E6F3A937000000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; - 8F62469E7079047800000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; - 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E754BEB6400000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; - 8F62469E758378C800000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; - 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a; path = lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E7882FF9000000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; - 8F62469E7A9963A400000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; - 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; - 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a; path = lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E7CF00B4E00000000 /* landmarks_to_transform_matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_transform_matrix.h; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.h; sourceTree = ""; }; - 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a"; path = "libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; - 8F62469E7E422EC300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E7EE2407B00000000 /* landmarks_to_render_data_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_render_data_calculator.h; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.h; sourceTree = ""; }; - 8F62469E7F557F5700000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; - 8F62469E7FAD39F900000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; - 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_D57AACFF_ios_min15.5.a; path = lib_idx_cpu_util_D57AACFF_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E82C6800100000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; - 8F62469E831E6AA800000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; - 8F62469E8369D9F900000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; - 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_has_min_size_calculator.cc; path = mediapipe/calculators/util/collection_has_min_size_calculator.cc; sourceTree = ""; }; - 8F62469E849B03E000000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; - 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; - 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_core_84469CC7_ios_min11.0.a; path = lib_idx_core_84469CC7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; path = lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; - 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8968C08000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E89917A6900000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; - 8F62469E8A36159200000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; - 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; path = lib_idx_resource_util_0C14DDDC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8DC1865400000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; - 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a; path = lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8EDC082600000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; - 8F62469E8EEB36F900000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; - 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = local_file_contents_calculator.cc; path = mediapipe/calculators/util/local_file_contents_calculator.cc; sourceTree = ""; }; - 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a; path = lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E8FB74E7600000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; - 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_0C14DDDC_ios_min15.5.a; path = lib_idx_resource_util_0C14DDDC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a; path = lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E915B5F1F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_transform_matrix.cc; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.cc; sourceTree = ""; }; - 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; - 8F62469E9360D7F700000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; - 8F62469E93A51CF900000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; - 8F62469E965A610100000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; - 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E984EF97C00000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; - 8F62469E98F29E1100000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; - 8F62469E992468E800000000 /* face_mesh_beauty_render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_beauty_render.h; path = mediapipe/render/module/beauty/face_mesh_beauty_render.h; sourceTree = ""; }; - 8F62469E998F8A2E00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; - 8F62469E99A19E9200000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; - 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; - 8F62469E9A0C486600000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; - 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; path = lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; - 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; path = lib_idx_op_resolver_29CCF89E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; - 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_rects_calculator.cc; path = mediapipe/calculators/util/detections_to_rects_calculator.cc; sourceTree = ""; }; - 8F62469EA1C5D7DE00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; - 8F62469EA1FC1CB100000000 /* transform_tensor_bilinear.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_tensor_bilinear.h; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.h; sourceTree = ""; }; - 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; - 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_66001351_ios_min15.5.a; path = lib_idx_util_66001351_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module_imp.cc; path = mediapipe/render/module/beauty/face_mesh_module_imp.cc; sourceTree = ""; }; - 8F62469EA688677600000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; - 8F62469EA699A49F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EA7FB485A00000000 /* image_to_tensor_converter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter.h; path = mediapipe/calculators/tensor/image_to_tensor_converter.h; sourceTree = ""; }; - 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_94247583_ios_min15.5.a; path = lib_idx_transpose_conv_bias_94247583_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EAAEBDCD100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EABDC185C00000000 /* gpu_shared_data_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_shared_data_internal.h; path = mediapipe/gpu/gpu_shared_data_internal.h; sourceTree = ""; }; - 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a; path = lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; path = lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; path = lib_idx_split_vector_calculator_73890910_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_landmarks_to_render_data_calculator.cc; path = mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc; sourceTree = ""; }; - 8F62469EAFAD908E00000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; - 8F62469EAFD40B0000000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; - 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EB114B9D600000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.h; sourceTree = ""; }; - 8F62469EB16A0B0500000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; - 8F62469EB1AC117700000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; - 8F62469EB1E9A57D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EB1FDA98700000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; - 8F62469EB21A509200000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; - 8F62469EB288401C00000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; - 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_209E4ED9_ios_min11.0.a; path = lib_idx_shader_util_209E4ED9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EB3AF12A500000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; - 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a; path = lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EB4D149AA00000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; - 8F62469EB6285B2000000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; - 8F62469EB6FE491A00000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; - 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; - 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_209E4ED9_ios_min15.5.a; path = lib_idx_shader_util_209E4ED9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; - 8F62469EBB40D9BF00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EBBD68CCB00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tensor/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_render_data_calculator.cc; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.cc; sourceTree = ""; }; - 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EBCE7858600000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; - 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_render_data_calculator.cc; path = mediapipe/calculators/util/detections_to_render_data_calculator.cc; sourceTree = ""; }; - 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EBF95A75D00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; - 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper_impl_common.cc; path = mediapipe/gpu/gl_calculator_helper_impl_common.cc; sourceTree = ""; }; - 8F62469EC1EEAB6200000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; - 8F62469EC345270B00000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; - 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_custom_op_resolver_calculator.cc; path = mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc; sourceTree = ""; }; - 8F62469EC4A7F5F700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a; path = lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EC5A8384400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EC6F9540300000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; - 8F62469EC7392BFD00000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; - 8F62469EC7C4069700000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; - 8F62469EC8AE2DAC00000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; - 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; path = lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ECB6D125D00000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; - 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; path = lib_idx_transpose_conv_bias_94247583_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; - 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; - 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_pool_argmax.cc; path = mediapipe/util/tflite/operations/max_pool_argmax.cc; sourceTree = ""; }; - 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a; path = lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; - 8F62469ED11949C300000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; - 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a; path = lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED21F400300000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; - 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; path = lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED30BA54B00000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; - 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; path = lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_proto_list_calculator.cc; path = mediapipe/calculators/core/split_proto_list_calculator.cc; sourceTree = ""; }; - 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_landmarks_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_landmarks_calculator.cc; sourceTree = ""; }; - 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_floats_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_floats_calculator.cc; sourceTree = ""; }; - 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a; path = lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469ED999FFBC00000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/Info.plist; sourceTree = ""; }; - 8F62469ED9FC1F1200000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; - 8F62469EDAE0FA6B00000000 /* pixel_buffer_pool_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pixel_buffer_pool_util.h; path = mediapipe/gpu/pixel_buffer_pool_util.h; sourceTree = ""; }; - 8F62469EDBE5CD1B00000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; - 8F62469EDC30573A00000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; - 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; - 8F62469EDED8FF2900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_66001351_ios_min11.0.a; path = lib_idx_util_66001351_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EE11EEBC500000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; - 8F62469EE270DE8600000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; - 8F62469EE2AAAAC700000000 /* attachments.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = attachments.h; path = mediapipe/gpu/attachments.h; sourceTree = ""; }; - 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; - 8F62469EE51F86FE00000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; - 8F62469EE545996200000000 /* gpu_buffer_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_format.h; path = mediapipe/gpu/gpu_buffer_format.h; sourceTree = ""; }; - 8F62469EE68DB5B900000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; - 8F62469EE75E0B9900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = third_party/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transpose_conv_bias.cc; path = mediapipe/util/tflite/operations/transpose_conv_bias.cc; sourceTree = ""; }; - 8F62469EE980F42800000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; - 8F62469EEA623A4800000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; - 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_D57AACFF_ios_min11.0.a; path = lib_idx_cpu_util_D57AACFF_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EEC679CE200000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; - 8F62469EEDBFEFFF00000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; - 8F62469EEEE7D66700000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; - 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EF18A35B600000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; - 8F62469EF31678B900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_opencv.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.cc; sourceTree = ""; }; - 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_73890910_ios_min11.0.a; path = lib_idx_split_vector_calculator_73890910_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/OlaFaceUnity.mm; sourceTree = ""; }; - 8F62469EF4DBABD700000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; - 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; - 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_core_84469CC7_ios_min15.5.a; path = lib_idx_core_84469CC7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EF66CD23100000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "OlaFaceUnity.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; - 8F62469EF673763B00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; - 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; - 8F62469EFB24DFE200000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; - 8F62469EFCCC889200000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; - 8F62469EFD02751100000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; - 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; - 8F62469EFF81542500000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; - 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a; path = lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B004CB7C500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B004DE45700000000 /* gl_texture_buffer_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer_pool.h; path = mediapipe/gpu/gl_texture_buffer_pool.h; sourceTree = ""; }; + C9EBA38B01385DD800000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a; path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B0158CA5400000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; + C9EBA38B01A7973A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/stream_handler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B01F3B5A000000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; + C9EBA38B02700A4A00000000 /* collection_has_min_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_has_min_size_calculator.cc; path = mediapipe/calculators/util/collection_has_min_size_calculator.cc; sourceTree = ""; }; + C9EBA38B02D3CC6900000000 /* canonical_errors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = canonical_errors.h; path = mediapipe/framework/deps/canonical_errors.h; sourceTree = ""; }; + C9EBA38B0389EBDF00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B039C71CD00000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; + C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CVFramebuffer.cpp; path = mediapipe/render/core/CVFramebuffer.cpp; sourceTree = ""; }; + C9EBA38B041A754A00000000 /* tensors_to_landmarks_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_landmarks_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_landmarks_calculator.cc; sourceTree = ""; }; + C9EBA38B0427142700000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; + C9EBA38B04AC366500000000 /* packet.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet.cc; path = mediapipe/framework/api2/packet.cc; sourceTree = ""; }; + C9EBA38B05926DC100000000 /* max_pool_argmax.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_pool_argmax.h; path = mediapipe/util/tflite/operations/max_pool_argmax.h; sourceTree = ""; }; + C9EBA38B06294FD900000000 /* packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet.h; path = mediapipe/framework/api2/packet.h; sourceTree = ""; }; + C9EBA38B0640609100000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; + C9EBA38B0708921600000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B086B422F00000000 /* packet_generator_wrapper_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_generator_wrapper_calculator.cc; path = mediapipe/framework/tool/packet_generator_wrapper_calculator.cc; sourceTree = ""; }; + C9EBA38B08BF64AF00000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; + C9EBA38B08F5F8CC00000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; + C9EBA38B092D415200000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; + C9EBA38B099B45E200000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a; path = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B099C3AEC00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_689F8605_ios_min15.5.a; path = lib_idx_tflite_model_loader_689F8605_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B0C10746800000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; + C9EBA38B0C2B90A200000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B0CE8B3CB00000000 /* tensors_to_floats_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_floats_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_floats_calculator.cc; sourceTree = ""; }; + C9EBA38B0D0B97D900000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; + C9EBA38B0D1A45BA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B0D76383B00000000 /* profiler_resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = profiler_resource_util.h; path = mediapipe/framework/profiler/profiler_resource_util.h; sourceTree = ""; }; + C9EBA38B0E36CA6500000000 /* options_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_map.h; path = mediapipe/framework/tool/options_map.h; sourceTree = ""; }; + C9EBA38B0E5CBB7200000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; + C9EBA38B0E7D7EC200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/port/vector.h; sourceTree = ""; }; + C9EBA38B0EC4067F00000000 /* tag_map_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map_helper.h; path = mediapipe/framework/tool/tag_map_helper.h; sourceTree = ""; }; + C9EBA38B0EDCB81C00000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/port/status_macros.h; sourceTree = ""; }; + C9EBA38B0F8DACCE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a; path = lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B0FE70EC600000000 /* gl_calculator_helper_impl_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper_impl_common.cc; path = mediapipe/gpu/gl_calculator_helper_impl_common.cc; sourceTree = ""; }; + C9EBA38B104B31A800000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/deps/re2.h; sourceTree = ""; }; + C9EBA38B115F5FC700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/annotation/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B11935B0B00000000 /* monotonic_clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = monotonic_clock.h; path = mediapipe/framework/deps/monotonic_clock.h; sourceTree = ""; }; + C9EBA38B1302D6E800000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a; path = lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B132FBD2C00000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B139ED0A800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/deps/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B13A3E1FD00000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; + C9EBA38B13EBD42600000000 /* validate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cc; path = mediapipe/framework/tool/validate.cc; sourceTree = ""; }; + C9EBA38B1417E4D200000000 /* detections_to_rects_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = detections_to_rects_calculator.h; path = mediapipe/calculators/util/detections_to_rects_calculator.h; sourceTree = ""; }; + C9EBA38B1417F3C000000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; + C9EBA38B1486CB5C00000000 /* proto_util_lite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_util_lite.h; path = mediapipe/framework/tool/proto_util_lite.h; sourceTree = ""; }; + C9EBA38B1488028100000000 /* registration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration.h; path = mediapipe/framework/deps/registration.h; sourceTree = ""; }; + C9EBA38B1505E2FA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B1534E9A800000000 /* status.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = mediapipe/framework/deps/status.cc; sourceTree = ""; }; + C9EBA38B156896BC00000000 /* pixel_buffer_pool_util.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = pixel_buffer_pool_util.mm; path = mediapipe/gpu/pixel_buffer_pool_util.mm; sourceTree = ""; }; + C9EBA38B15751DAA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B158C7AB800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B163FFCB200000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a; path = lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B167968C300000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; + C9EBA38B168E8BEC00000000 /* opencv_imgproc_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_imgproc_inc.h; path = mediapipe/framework/port/opencv_imgproc_inc.h; sourceTree = ""; }; + C9EBA38B16C21D1D00000000 /* location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = location.h; path = mediapipe/framework/formats/location.h; sourceTree = ""; }; + C9EBA38B18AD28B200000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; + C9EBA38B193619E800000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; + C9EBA38B194C84DC00000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; + C9EBA38B195209B400000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B196A5D6B00000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; + C9EBA38B19CC055200000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/port/numbers.h; sourceTree = ""; }; + C9EBA38B1B912E1800000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; + C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; + C9EBA38B1BA8AC3A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B1BDACEEB00000000 /* sink.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sink.h; path = mediapipe/framework/tool/sink.h; sourceTree = ""; }; + C9EBA38B1CE1D39200000000 /* lib_idx_matrix_A43B592D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_A43B592D_ios_min15.5.a; path = lib_idx_matrix_A43B592D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B1D65549A00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a; path = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B1E91339000000000 /* landmarks_to_transform_matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_transform_matrix.cc; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.cc; sourceTree = ""; }; + C9EBA38B1EEDAAB700000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; + C9EBA38B2037524700000000 /* aligned_malloc_and_free.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = aligned_malloc_and_free.h; path = mediapipe/framework/deps/aligned_malloc_and_free.h; sourceTree = ""; }; + C9EBA38B21AA742700000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/port/map_util.h; sourceTree = ""; }; + C9EBA38B21F5DD7400000000 /* lib_idx_op_resolver_72040923_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_72040923_ios_min11.0.a; path = lib_idx_op_resolver_72040923_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2255DF3600000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a; path = lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B226657AA00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2269E22300000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; + C9EBA38B2317046800000000 /* image_to_tensor_utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_utils.h; path = mediapipe/calculators/tensor/image_to_tensor_utils.h; sourceTree = ""; }; + C9EBA38B234C0F6C00000000 /* lib_idx_core_core-ios_B15523BE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_B15523BE_ios_min11.0.a"; path = "lib_idx_core_core-ios_B15523BE_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B23C3628900000000 /* gpu_buffer_storage_cv_pixel_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_cv_pixel_buffer.h; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.h; sourceTree = ""; }; + C9EBA38B23DC8F5000000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a; path = lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B244E885E00000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; + C9EBA38B25A56E7500000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; + C9EBA38B26507A8400000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a; path = lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B26CACA2800000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; + C9EBA38B26FC899A00000000 /* tag_map_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map_helper.cc; path = mediapipe/framework/tool/tag_map_helper.cc; sourceTree = ""; }; + C9EBA38B2748771000000000 /* lib_idx_file_path_740566D4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_path_740566D4_ios_min11.0.a; path = lib_idx_file_path_740566D4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B28422E7D00000000 /* validate_name.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate_name.h; path = mediapipe/framework/tool/validate_name.h; sourceTree = ""; }; + C9EBA38B28C3D43800000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a; path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B29E5D2BC00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B29F009D000000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a; path = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2A58F18200000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; + C9EBA38B2A8C73DC00000000 /* graph_profiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_profiler.h; path = mediapipe/framework/profiler/graph_profiler.h; sourceTree = ""; }; + C9EBA38B2AA4CEBE00000000 /* type_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = type_util.h; path = mediapipe/framework/tool/type_util.h; sourceTree = ""; }; + C9EBA38B2B14856B00000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; + C9EBA38B2B400A9C00000000 /* video_stream_header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = video_stream_header.h; path = mediapipe/framework/formats/video_stream_header.h; sourceTree = ""; }; + C9EBA38B2D64C76200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a; path = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2D84D71E00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; path = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2D873AE800000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B2DB210D800000000 /* MPPGraphGPUData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraphGPUData.h; path = mediapipe/gpu/MPPGraphGPUData.h; sourceTree = ""; }; + C9EBA38B2E51696100000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; + C9EBA38B2E8E019100000000 /* matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = mediapipe/framework/formats/matrix.h; sourceTree = ""; }; + C9EBA38B2ECE4E2100000000 /* default_input_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = default_input_stream_handler.h; path = mediapipe/framework/stream_handler/default_input_stream_handler.h; sourceTree = ""; }; + C9EBA38B2EDD493A00000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; + C9EBA38B2F17EFE600000000 /* node.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = node.h; path = mediapipe/framework/api2/node.h; sourceTree = ""; }; + C9EBA38B2FC8C29700000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; + C9EBA38B30E21AB600000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; + C9EBA38B30F1D94C00000000 /* template_expander.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = template_expander.h; path = mediapipe/framework/tool/template_expander.h; sourceTree = ""; }; + C9EBA38B3175A4CA00000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; + C9EBA38B323D0BEE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B3275E24500000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; + C9EBA38B3318179600000000 /* lib_idx_profiler_resource_util_09647121_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_09647121_ios_min15.5.a; path = lib_idx_profiler_resource_util_09647121_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B33EF04E800000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a; path = lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B35928F7E00000000 /* image_to_tensor_converter_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_metal.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.cc; sourceTree = ""; }; + C9EBA38B35BDCF7300000000 /* transpose_conv_bias.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transpose_conv_bias.h; path = mediapipe/util/tflite/operations/transpose_conv_bias.h; sourceTree = ""; }; + C9EBA38B373C8B5300000000 /* detections_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_render_data_calculator.cc; path = mediapipe/calculators/util/detections_to_render_data_calculator.cc; sourceTree = ""; }; + C9EBA38B3799B02A00000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a; path = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B385A1C8500000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; + C9EBA38B38A4F6AD00000000 /* face_detection_short_range.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_detection_short_range.tflite; path = mediapipe/modules/face_detection/face_detection_short_range.tflite; sourceTree = ""; }; + C9EBA38B39AFE7EC00000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B39E5E8A600000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; + C9EBA38B3B18B64A00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B3B1F172200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B3BB7F36D00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; + C9EBA38B3BEB289A00000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h; sourceTree = ""; }; + C9EBA38B3C2F923900000000 /* immediate_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = immediate_input_stream_handler.cc; path = mediapipe/framework/stream_handler/immediate_input_stream_handler.cc; sourceTree = ""; }; + C9EBA38B3D8CDBA400000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; + C9EBA38B3EA2ACB600000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; + C9EBA38B3EAEF34300000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; + C9EBA38B3EC5DCA500000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm; sourceTree = ""; }; + C9EBA38B3EE1F17000000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; + C9EBA38B3EFA289500000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/port/source_location.h; sourceTree = ""; }; + C9EBA38B3F10F82C00000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; + C9EBA38B3F6D0D9800000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/port/file_helpers.h; sourceTree = ""; }; + C9EBA38B3FC5991E00000000 /* face_mesh_module_imp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module_imp.cc; path = mediapipe/render/module/beauty/face_mesh_module_imp.cc; sourceTree = ""; }; + C9EBA38B40655EE700000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/deps/topologicalsorter.h; sourceTree = ""; }; + C9EBA38B408026B200000000 /* template_expander.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = template_expander.cc; path = mediapipe/framework/tool/template_expander.cc; sourceTree = ""; }; + C9EBA38B40A6E29700000000 /* tensor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tensor.h; path = mediapipe/framework/formats/tensor.h; sourceTree = ""; }; + C9EBA38B420B582E00000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a; path = lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B434A7C7E00000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a; path = lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B4363C14800000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; + C9EBA38B43942A7E00000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; + C9EBA38B43F1E68200000000 /* location.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = location.cc; path = mediapipe/framework/formats/location.cc; sourceTree = ""; }; + C9EBA38B44ABC53B00000000 /* logging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = logging.h; path = mediapipe/framework/port/logging.h; sourceTree = ""; }; + C9EBA38B44E5B35800000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; + C9EBA38B44ED965D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/port/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B44FB42D500000000 /* trace_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trace_buffer.h; path = mediapipe/framework/profiler/trace_buffer.h; sourceTree = ""; }; + C9EBA38B46113BED00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; + C9EBA38B461E3D9A00000000 /* face_mesh_module.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module.h; path = mediapipe/render/module/beauty/face_mesh_module.h; sourceTree = ""; }; + C9EBA38B4627F57600000000 /* image.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image.h; path = mediapipe/framework/formats/image.h; sourceTree = ""; }; + C9EBA38B469B0ADD00000000 /* options_registry.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_registry.cc; path = mediapipe/framework/tool/options_registry.cc; sourceTree = ""; }; + C9EBA38B46DF6A4400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B485A0E0E00000000 /* contract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = contract.h; path = mediapipe/framework/api2/contract.h; sourceTree = ""; }; + C9EBA38B4971400100000000 /* pixel_buffer_pool_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = pixel_buffer_pool_util.h; path = mediapipe/gpu/pixel_buffer_pool_util.h; sourceTree = ""; }; + C9EBA38B49AA7F2B00000000 /* status_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_builder.cc; path = mediapipe/framework/deps/status_builder.cc; sourceTree = ""; }; + C9EBA38B49F24B8A00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a; path = lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B4C65DBEC00000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a; path = lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B4C68E01800000000 /* gl_texture_buffer_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer_pool.cc; path = mediapipe/gpu/gl_texture_buffer_pool.cc; sourceTree = ""; }; + C9EBA38B4CAEB53C00000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; + C9EBA38B4CDCC8E700000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; + C9EBA38B4D127A8900000000 /* image_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_opencv.h; path = mediapipe/framework/formats/image_opencv.h; sourceTree = ""; }; + C9EBA38B4D5AE90800000000 /* trace_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trace_builder.h; path = mediapipe/framework/profiler/trace_builder.h; sourceTree = ""; }; + C9EBA38B4D6C4C7F00000000 /* gpu_shared_data_internal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_shared_data_internal.cc; path = mediapipe/gpu/gpu_shared_data_internal.cc; sourceTree = ""; }; + C9EBA38B4D6E7FC300000000 /* status_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_builder.h; path = mediapipe/framework/port/status_builder.h; sourceTree = ""; }; + C9EBA38B4D97960200000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; + C9EBA38B4E80EB1200000000 /* gpu_buffer_multi_pool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_multi_pool.h; path = mediapipe/gpu/gpu_buffer_multi_pool.h; sourceTree = ""; }; + C9EBA38B4F3C878200000000 /* const_str.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const_str.h; path = mediapipe/framework/api2/const_str.h; sourceTree = ""; }; + C9EBA38B4FBDBA9600000000 /* MPPMetalHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalHelper.h; path = mediapipe/gpu/MPPMetalHelper.h; sourceTree = ""; }; + C9EBA38B520F4EF100000000 /* options_syntax_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_syntax_util.cc; path = mediapipe/framework/tool/options_syntax_util.cc; sourceTree = ""; }; + C9EBA38B5248E6C500000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; + C9EBA38B5295A06500000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/framework/Info.plist; sourceTree = ""; }; + C9EBA38B5350254B00000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; + C9EBA38B53F9CB0E00000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; + C9EBA38B5406C25000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B547423AA00000000 /* subgraph_expansion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = subgraph_expansion.h; path = mediapipe/framework/tool/subgraph_expansion.h; sourceTree = ""; }; + C9EBA38B54A66D1C00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a; path = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B54B2B79500000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; + C9EBA38B54C7579B00000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; + C9EBA38B55851C0600000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a; path = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B55E7441C00000000 /* gpu_buffer_format.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_format.h; path = mediapipe/gpu/gpu_buffer_format.h; sourceTree = ""; }; + C9EBA38B56552D1100000000 /* image_to_tensor_converter_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_converter_opencv.cc; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.cc; sourceTree = ""; }; + C9EBA38B56DEC5F100000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/port/singleton.h; sourceTree = ""; }; + C9EBA38B5717A8BD00000000 /* clock.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = mediapipe/framework/deps/clock.cc; sourceTree = ""; }; + C9EBA38B5762E32800000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B577ED22A00000000 /* lib_idx_math_8C8F00BB_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_8C8F00BB_ios_min11.0.a; path = lib_idx_math_8C8F00BB_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B57A481FA00000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; + C9EBA38B586F6F7B00000000 /* face_mesh_beauty_render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_beauty_render.h; path = mediapipe/render/module/beauty/face_mesh_beauty_render.h; sourceTree = ""; }; + C9EBA38B59F6EA2D00000000 /* name_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = name_util.h; path = mediapipe/framework/tool/name_util.h; sourceTree = ""; }; + C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; + C9EBA38B5C1877A600000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; + C9EBA38B5D50D01600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B5D88C1C400000000 /* lib_idx_math_8C8F00BB_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_8C8F00BB_ios_min15.5.a; path = lib_idx_math_8C8F00BB_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B5DC383CA00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; + C9EBA38B5E64B57D00000000 /* profiler_resource_util_common.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profiler_resource_util_common.cc; path = mediapipe/framework/profiler/profiler_resource_util_common.cc; sourceTree = ""; }; + C9EBA38B61331D3300000000 /* sharded_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sharded_map.h; path = mediapipe/framework/profiler/sharded_map.h; sourceTree = ""; }; + C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; + C9EBA38B61B557B900000000 /* default_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = default_input_stream_handler.cc; path = mediapipe/framework/stream_handler/default_input_stream_handler.cc; sourceTree = ""; }; + C9EBA38B61B7EE9300000000 /* clip_vector_size_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clip_vector_size_calculator.cc; path = mediapipe/calculators/core/clip_vector_size_calculator.cc; sourceTree = ""; }; + C9EBA38B629012EE00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a; path = lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B62E8CBE400000000 /* status_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = mediapipe/framework/tool/status_util.h; sourceTree = ""; }; + C9EBA38B62F2104200000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; + C9EBA38B63600BBD00000000 /* advanced_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = advanced_proto_inc.h; path = mediapipe/framework/port/advanced_proto_inc.h; sourceTree = ""; }; + C9EBA38B63CED78700000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; + C9EBA38B64296FF400000000 /* image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame.h; path = mediapipe/framework/formats/image_frame.h; sourceTree = ""; }; + C9EBA38B6449A05600000000 /* file_helpers.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_helpers.cc; path = mediapipe/framework/deps/file_helpers.cc; sourceTree = ""; }; + C9EBA38B653148E700000000 /* options_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_util.cc; path = mediapipe/framework/tool/options_util.cc; sourceTree = ""; }; + C9EBA38B65918E7200000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/deps/point2.h; sourceTree = ""; }; + C9EBA38B65A317A000000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B65E57C6A00000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; + C9EBA38B66B5DC2700000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; + C9EBA38B67556E8A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B675A27C100000000 /* options_syntax_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_syntax_util.h; path = mediapipe/framework/tool/options_syntax_util.h; sourceTree = ""; }; + C9EBA38B67CBA0C400000000 /* lib_idx_shader_util_6E7BE0E8_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_6E7BE0E8_ios_min15.5.a; path = lib_idx_shader_util_6E7BE0E8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B68726D3200000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a; path = lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B68F79D3600000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a; path = lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B6919418400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a; path = lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B699CC77A00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B6A2F386900000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; + C9EBA38B6A77331700000000 /* graph_tracer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_tracer.h; path = mediapipe/framework/profiler/graph_tracer.h; sourceTree = ""; }; + C9EBA38B6A8EBE1E00000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; + C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; + C9EBA38B6B7D834500000000 /* validate_name.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate_name.cc; path = mediapipe/framework/tool/validate_name.cc; sourceTree = ""; }; + C9EBA38B6C2D12C800000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; + C9EBA38B6D584F4C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a; path = lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B6E1CB88E00000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; + C9EBA38B6E2763AD00000000 /* transpose_conv_bias.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transpose_conv_bias.cc; path = mediapipe/util/tflite/operations/transpose_conv_bias.cc; sourceTree = ""; }; + C9EBA38B6E45D2D500000000 /* ret_check.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ret_check.cc; path = mediapipe/framework/deps/ret_check.cc; sourceTree = ""; }; + C9EBA38B6FA0708400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B6FA6B02B00000000 /* switch_mux_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_mux_calculator.cc; path = mediapipe/framework/tool/switch_mux_calculator.cc; sourceTree = ""; }; + C9EBA38B6FBA195800000000 /* file_path.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_path.h; path = mediapipe/framework/deps/file_path.h; sourceTree = ""; }; + C9EBA38B6FE5A40400000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; + C9EBA38B702BED5800000000 /* image_to_tensor_converter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter.h; path = mediapipe/calculators/tensor/image_to_tensor_converter.h; sourceTree = ""; }; + C9EBA38B70EF5FEB00000000 /* no_destructor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = mediapipe/framework/deps/no_destructor.h; sourceTree = ""; }; + C9EBA38B7111172300000000 /* image_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_opencv.cc; path = mediapipe/framework/formats/image_opencv.cc; sourceTree = ""; }; + C9EBA38B71F9799600000000 /* image_frame_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame_opencv.cc; path = mediapipe/framework/formats/image_frame_opencv.cc; sourceTree = ""; }; + C9EBA38B72426CA600000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B729B09E400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a; path = lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B7309A6CF00000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; + C9EBA38B7334328E00000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; + C9EBA38B74A45FEA00000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; + C9EBA38B74A84AF100000000 /* file_path.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path.cc; path = mediapipe/framework/deps/file_path.cc; sourceTree = ""; }; + C9EBA38B758D0A4200000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/deps/rectangle.h; sourceTree = ""; }; + C9EBA38B761A81BD00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B769043C800000000 /* core_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = core_proto_inc.h; path = mediapipe/framework/port/core_proto_inc.h; sourceTree = ""; }; + C9EBA38B76BC0CD600000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B76FEEF7C00000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; + C9EBA38B77278F3F00000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; + C9EBA38B78B48F9A00000000 /* Info.plist */ = {isa = PBXFileReference; explicitFileType = text.plist; name = Info.plist; path = "FaceUnityFramework.xcodeproj/.tulsi/tulsi-execution-root/bazel-tulsi-includes/x/x/mediapipe/render/module/beauty/ios/framework/OlaFaceUnityFramework-intermediates/Info.plist"; sourceTree = SOURCE_ROOT; }; + C9EBA38B78D51A7E00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a; path = lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B794C398A00000000 /* profiler_resource_util_ios.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = profiler_resource_util_ios.cc; path = mediapipe/framework/profiler/profiler_resource_util_ios.cc; sourceTree = ""; }; + C9EBA38B7A36D66700000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; + C9EBA38B7A752E9000000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a; path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B7C73EE9A00000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B7CAF9C9900000000 /* gpu_buffer_multi_pool.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_multi_pool.cc; path = mediapipe/gpu/gpu_buffer_multi_pool.cc; sourceTree = ""; }; + C9EBA38B7CB9F0A700000000 /* gpu_buffer_storage_image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage_image_frame.h; path = mediapipe/gpu/gpu_buffer_storage_image_frame.h; sourceTree = ""; }; + C9EBA38B7CF3974400000000 /* lib_idx_olamodule_common_library_511040E9_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_511040E9_ios_min11.0.a; path = lib_idx_olamodule_common_library_511040E9_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B7D267CA200000000 /* options_field_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_field_util.h; path = mediapipe/framework/tool/options_field_util.h; sourceTree = ""; }; + C9EBA38B7D35C3EB00000000 /* face_landmark_with_attention.tflite */ = {isa = PBXFileReference; lastKnownFileType = dyn.age81k3xqrf4gn; name = face_landmark_with_attention.tflite; path = mediapipe/modules/face_landmark/face_landmark_with_attention.tflite; sourceTree = ""; }; + C9EBA38B7DAFBCF400000000 /* fixed_size_input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fixed_size_input_stream_handler.cc; path = mediapipe/framework/stream_handler/fixed_size_input_stream_handler.cc; sourceTree = ""; }; + C9EBA38B7E0C41A600000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a; path = lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B7E72F9CB00000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; + C9EBA38B7F781A8A00000000 /* image_to_tensor_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_calculator.cc; path = mediapipe/calculators/tensor/image_to_tensor_calculator.cc; sourceTree = ""; }; + C9EBA38B8026FAEC00000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/api2/port.h; sourceTree = ""; }; + C9EBA38B80DA5B6200000000 /* switch_demux_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_demux_calculator.cc; path = mediapipe/framework/tool/switch_demux_calculator.cc; sourceTree = ""; }; + C9EBA38B8102402E00000000 /* options_registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_registry.h; path = mediapipe/framework/tool/options_registry.h; sourceTree = ""; }; + C9EBA38B831FD45C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a; path = lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B8324A2C800000000 /* options_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_util.h; path = mediapipe/framework/tool/options_util.h; sourceTree = ""; }; + C9EBA38B833288FE00000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/deps/status_macros.h; sourceTree = ""; }; + C9EBA38B83845FB800000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; + C9EBA38B83AFE1B600000000 /* subgraph_expansion.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subgraph_expansion.cc; path = mediapipe/framework/tool/subgraph_expansion.cc; sourceTree = ""; }; + C9EBA38B83FAA32800000000 /* lib_idx_olamodule_common_library_511040E9_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_511040E9_ios_min15.5.a; path = lib_idx_olamodule_common_library_511040E9_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B8400579B00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/port/ret_check.h; sourceTree = ""; }; + C9EBA38B8474EEF500000000 /* proto_util_lite.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proto_util_lite.cc; path = mediapipe/framework/tool/proto_util_lite.cc; sourceTree = ""; }; + C9EBA38B85095B6300000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; + C9EBA38B8539D02400000000 /* statusor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = mediapipe/framework/port/statusor.h; sourceTree = ""; }; + C9EBA38B856E889200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B85ADE62E00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B86F0323A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tensor/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B879D222200000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a; path = lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B880E6D6100000000 /* sink.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sink.cc; path = mediapipe/framework/tool/sink.cc; sourceTree = ""; }; + C9EBA38B8884614F00000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; + C9EBA38B88B6477F00000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; + C9EBA38B88CF16C500000000 /* monotonic_clock.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = monotonic_clock.cc; path = mediapipe/framework/deps/monotonic_clock.cc; sourceTree = ""; }; + C9EBA38B891AB9AF00000000 /* fill_packet_set.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fill_packet_set.cc; path = mediapipe/framework/tool/fill_packet_set.cc; sourceTree = ""; }; + C9EBA38B896EA7BE00000000 /* face_mesh_module.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_module.cc; path = mediapipe/render/module/beauty/face_mesh_module.cc; sourceTree = ""; }; + C9EBA38B8A51A90C00000000 /* lib_idx_tensor_3731EC48_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensor_3731EC48_ios_min15.5.a; path = lib_idx_tensor_3731EC48_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B8AB21CB100000000 /* inference_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = inference_calculator.h; path = mediapipe/calculators/tensor/inference_calculator.h; sourceTree = ""; }; + C9EBA38B8B6DC24E00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a; path = lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B8BDC2B9600000000 /* max_pool_argmax.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_pool_argmax.cc; path = mediapipe/util/tflite/operations/max_pool_argmax.cc; sourceTree = ""; }; + C9EBA38B8C0A8DE100000000 /* trace_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trace_builder.cc; path = mediapipe/framework/profiler/trace_builder.cc; sourceTree = ""; }; + C9EBA38B8C10B54300000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; + C9EBA38B8D59D9EF00000000 /* container_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = container_util.h; path = mediapipe/framework/tool/container_util.h; sourceTree = ""; }; + C9EBA38B8E64823900000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; + C9EBA38B8F1A956900000000 /* tflite_custom_op_resolver_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_custom_op_resolver_calculator.cc; path = mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc; sourceTree = ""; }; + C9EBA38B8FA98B6200000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B90340E7500000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; + C9EBA38B9066DD6C00000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/port/rectangle.h; sourceTree = ""; }; + C9EBA38B9165234300000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; + C9EBA38B93B4871400000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; + C9EBA38B94A5A5B700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B958571C200000000 /* non_max_suppression_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = non_max_suppression_calculator.cc; path = mediapipe/calculators/util/non_max_suppression_calculator.cc; sourceTree = ""; }; + C9EBA38B9590DB2200000000 /* status_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_builder.h; path = mediapipe/framework/deps/status_builder.h; sourceTree = ""; }; + C9EBA38B9616CB8A00000000 /* clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clock.h; path = mediapipe/framework/deps/clock.h; sourceTree = ""; }; + C9EBA38B962B6C3500000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/deps/threadpool.h; sourceTree = ""; }; + C9EBA38B96C53AF700000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; + C9EBA38B96E55FFB00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/object_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38B97A291BC00000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; + C9EBA38B97D6686E00000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; + C9EBA38B983418F800000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/deps/file_helpers.h; sourceTree = ""; }; + C9EBA38B9893EFFE00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/deps/ret_check.h; sourceTree = ""; }; + C9EBA38B993F10C300000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/deps/singleton.h; sourceTree = ""; }; + C9EBA38B9983007000000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a; path = lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38B9ADB4E5D00000000 /* gl_context_profiler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_profiler.cc; path = mediapipe/framework/profiler/gl_context_profiler.cc; sourceTree = ""; }; + C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; + C9EBA38B9C74CB9200000000 /* node.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = node.cc; path = mediapipe/framework/api2/node.cc; sourceTree = ""; }; + C9EBA38B9CC065F800000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; + C9EBA38B9EF2C99D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BA0CAC80600000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a; path = lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA0E750B200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a; path = lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA1A7A6AB00000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; + C9EBA38BA30CE7D000000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; + C9EBA38BA33D624200000000 /* lib_idx_core_core-ios_B15523BE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_B15523BE_ios_min15.5.a"; path = "lib_idx_core_core-ios_B15523BE_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA383D63F00000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; + C9EBA38BA4741C1C00000000 /* gpu_shared_data_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_shared_data_internal.h; path = mediapipe/gpu/gpu_shared_data_internal.h; sourceTree = ""; }; + C9EBA38BA4EA8B5400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA515D7AD00000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; + C9EBA38BA568C51600000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a; path = lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA5D40D5600000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; + C9EBA38BA629C1E800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA679284000000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a; path = lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA6892EDC00000000 /* lib_idx_matrix_A43B592D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_A43B592D_ios_min11.0.a; path = lib_idx_matrix_A43B592D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA6E657AE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a; path = lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA6E86D0400000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; + C9EBA38BA6EB86DB00000000 /* validate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate.h; path = mediapipe/framework/tool/validate.h; sourceTree = ""; }; + C9EBA38BA6F9610E00000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a; path = lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA717C69F00000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/port/port.h; sourceTree = ""; }; + C9EBA38BA740CAE000000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/deps/numbers.h; sourceTree = ""; }; + C9EBA38BA7A5495900000000 /* tensor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensor.cc; path = mediapipe/framework/formats/tensor.cc; sourceTree = ""; }; + C9EBA38BA7B190CB00000000 /* tag_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map.h; path = mediapipe/framework/tool/tag_map.h; sourceTree = ""; }; + C9EBA38BA7F8D88F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BA952909800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BA9FEEACC00000000 /* name_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = name_util.cc; path = mediapipe/framework/tool/name_util.cc; sourceTree = ""; }; + C9EBA38BAA3DAAFE00000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; + C9EBA38BAA9B127200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BAAEF9A5D00000000 /* gl_calculator_helper_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper_impl.h; path = mediapipe/gpu/gl_calculator_helper_impl.h; sourceTree = ""; }; + C9EBA38BAB44B2BA00000000 /* aligned_malloc_and_free.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = aligned_malloc_and_free.h; path = mediapipe/framework/port/aligned_malloc_and_free.h; sourceTree = ""; }; + C9EBA38BAB865B6B00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; + C9EBA38BAC1BF96E00000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; + C9EBA38BAD990BB500000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/deps/status.h; sourceTree = ""; }; + C9EBA38BAE5D302600000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; + C9EBA38BAEB6A89F00000000 /* image_to_tensor_converter_metal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_metal.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_metal.h; sourceTree = ""; }; + C9EBA38BAF808B4E00000000 /* landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_render_data_calculator.cc; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.cc; sourceTree = ""; }; + C9EBA38BAF84FD5B00000000 /* landmarks_to_render_data_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_render_data_calculator.h; path = mediapipe/calculators/util/landmarks_to_render_data_calculator.h; sourceTree = ""; }; + C9EBA38BAFDA2DAC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a; path = lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BAFF7454F00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BB1F58FA100000000 /* options_field_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_field_util.cc; path = mediapipe/framework/tool/options_field_util.cc; sourceTree = ""; }; + C9EBA38BB20E049D00000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; + C9EBA38BB226E3E500000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; + C9EBA38BB23861FD00000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; + C9EBA38BB46123F900000000 /* attachments.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = attachments.h; path = mediapipe/gpu/attachments.h; sourceTree = ""; }; + C9EBA38BB59EF01500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BB5CC36C700000000 /* any_proto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = any_proto.h; path = mediapipe/framework/port/any_proto.h; sourceTree = ""; }; + C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; + C9EBA38BB64F41C700000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; + C9EBA38BB68AAB6100000000 /* landmarks_to_detection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_to_detection_calculator.cc; path = mediapipe/calculators/util/landmarks_to_detection_calculator.cc; sourceTree = ""; }; + C9EBA38BB70D8FD100000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; + C9EBA38BB742764B00000000 /* tensors_to_detections_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensors_to_detections_calculator.cc; path = mediapipe/calculators/tensor/tensors_to_detections_calculator.cc; sourceTree = ""; }; + C9EBA38BB766CDE400000000 /* image_to_tensor_utils.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_to_tensor_utils.cc; path = mediapipe/calculators/tensor/image_to_tensor_utils.cc; sourceTree = ""; }; + C9EBA38BB770D6AA00000000 /* fill_packet_set.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = fill_packet_set.h; path = mediapipe/framework/tool/fill_packet_set.h; sourceTree = ""; }; + C9EBA38BB7DF80B800000000 /* thread_options.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = thread_options.h; path = mediapipe/framework/deps/thread_options.h; sourceTree = ""; }; + C9EBA38BB84C5CCE00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a; path = lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BB96C60C700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/api2/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BB99FAC6D00000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; + C9EBA38BB9A2F8CA00000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a; path = lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BB9D8CAAA00000000 /* landmarks_to_transform_matrix.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_to_transform_matrix.h; path = mediapipe/util/tflite/operations/landmarks_to_transform_matrix.h; sourceTree = ""; }; + C9EBA38BB9EC9D4800000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a; path = lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BBAF897E200000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a; path = lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BBB054CF600000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; + C9EBA38BBB7F30E700000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; + C9EBA38BBBC10FE200000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BBC89365D00000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; + C9EBA38BBC8A185A00000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; + C9EBA38BBCA54A3A00000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a; path = lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BBCD7F8FB00000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; + C9EBA38BBCEAB42A00000000 /* switch_container.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_container.cc; path = mediapipe/framework/tool/switch_container.cc; sourceTree = ""; }; + C9EBA38BBD280FED00000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; + C9EBA38BBD9BA0EF00000000 /* matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cc; path = mediapipe/framework/formats/matrix.cc; sourceTree = ""; }; + C9EBA38BBDEE69CE00000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; + C9EBA38BBE182A6600000000 /* split_proto_list_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_proto_list_calculator.cc; path = mediapipe/calculators/core/split_proto_list_calculator.cc; sourceTree = ""; }; + C9EBA38BBE2A34B700000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; + C9EBA38BBE50ED1A00000000 /* lib_idx_shader_util_6E7BE0E8_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_6E7BE0E8_ios_min11.0.a; path = lib_idx_shader_util_6E7BE0E8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BBED8F35000000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; + C9EBA38BC04E125300000000 /* tensor_ahwb.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tensor_ahwb.cc; path = mediapipe/framework/formats/tensor_ahwb.cc; sourceTree = ""; }; + C9EBA38BC0D2CA0900000000 /* registration_token.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration_token.h; path = mediapipe/framework/deps/registration_token.h; sourceTree = ""; }; + C9EBA38BC278B50300000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; + C9EBA38BC2D4982400000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BC2F713F900000000 /* graph_tracer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_tracer.cc; path = mediapipe/framework/profiler/graph_tracer.cc; sourceTree = ""; }; + C9EBA38BC3846E8900000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; + C9EBA38BC3939B2500000000 /* integral_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = integral_types.h; path = mediapipe/framework/port/integral_types.h; sourceTree = ""; }; + C9EBA38BC41917A300000000 /* container_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = container_util.cc; path = mediapipe/framework/tool/container_util.cc; sourceTree = ""; }; + C9EBA38BC5B8FC9C00000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; + C9EBA38BC655643C00000000 /* gl_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_base.h; path = mediapipe/gpu/gl_base.h; sourceTree = ""; }; + C9EBA38BC697AAFA00000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a; path = lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BC6F62DEE00000000 /* transform_tensor_bilinear.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_tensor_bilinear.cc; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.cc; sourceTree = ""; }; + C9EBA38BC730EFED00000000 /* local_file_contents_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = local_file_contents_calculator.cc; path = mediapipe/calculators/util/local_file_contents_calculator.cc; sourceTree = ""; }; + C9EBA38BC82837B100000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; + C9EBA38BC94F5F5A00000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; + C9EBA38BC9840E9900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BCA41AC6F00000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; + C9EBA38BCC47E68C00000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; + C9EBA38BCC83910500000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; + C9EBA38BCC9C82C200000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; + C9EBA38BCCE4FA9600000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; + C9EBA38BCDD4591A00000000 /* tag_map.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map.cc; path = mediapipe/framework/tool/tag_map.cc; sourceTree = ""; }; + C9EBA38BCE45B48400000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; + C9EBA38BCEEFFADB00000000 /* status_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = mediapipe/framework/tool/status_util.cc; sourceTree = ""; }; + C9EBA38BCF1B8F7800000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; + C9EBA38BD01E239500000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/deps/source_location.h; sourceTree = ""; }; + C9EBA38BD0FA2A8400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a; path = lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BD16450D500000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; + C9EBA38BD1A7539900000000 /* in_order_output_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = in_order_output_stream_handler.cc; path = mediapipe/framework/stream_handler/in_order_output_stream_handler.cc; sourceTree = ""; }; + C9EBA38BD2DBF16C00000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; + C9EBA38BD32E42E600000000 /* lib_idx_resource_util_DF96AF63_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_DF96AF63_ios_min15.5.a; path = lib_idx_resource_util_DF96AF63_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BD42D49D900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/profiler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BD42D824700000000 /* image_frame_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_opencv.h; path = mediapipe/framework/formats/image_frame_opencv.h; sourceTree = ""; }; + C9EBA38BD4AFAC8E00000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; + C9EBA38BD4F269EE00000000 /* lib_idx_file_path_740566D4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_path_740566D4_ios_min15.5.a; path = lib_idx_file_path_740566D4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BD639903100000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; + C9EBA38BD6BF7A0C00000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BD7132F7500000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; + C9EBA38BD7539B8400000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BD82DB00300000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; + C9EBA38BD8640FC700000000 /* advanced_proto_lite_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = advanced_proto_lite_inc.h; path = mediapipe/framework/port/advanced_proto_lite_inc.h; sourceTree = ""; }; + C9EBA38BD9CF443F00000000 /* graph_profiler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_profiler.cc; path = mediapipe/framework/profiler/graph_profiler.cc; sourceTree = ""; }; + C9EBA38BDAC4BB8100000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; + C9EBA38BDAE1885C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BDD48277C00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a; path = lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BDDDCBB2900000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/port/re2.h; sourceTree = ""; }; + C9EBA38BDE42741200000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; + C9EBA38BDE65D38100000000 /* safe_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = safe_int.h; path = mediapipe/framework/deps/safe_int.h; sourceTree = ""; }; + C9EBA38BDE99597300000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; + C9EBA38BDEA0293C00000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; + C9EBA38BE042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage_cv_pixel_buffer.cc; path = mediapipe/gpu/gpu_buffer_storage_cv_pixel_buffer.cc; sourceTree = ""; }; + C9EBA38BE1457C5300000000 /* face_landmarks_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_landmarks_to_render_data_calculator.cc; path = mediapipe/graphs/face_mesh/calculators/face_landmarks_to_render_data_calculator.cc; sourceTree = ""; }; + C9EBA38BE26B5B8600000000 /* tuple.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tuple.h; path = mediapipe/framework/api2/tuple.h; sourceTree = ""; }; + C9EBA38BE2F9462000000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; + C9EBA38BE38A2E1700000000 /* tag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag.h; path = mediapipe/framework/api2/tag.h; sourceTree = ""; }; + C9EBA38BE3D49C8200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BE4456C3100000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; + C9EBA38BE607559C00000000 /* collection_has_min_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_has_min_size_calculator.h; path = mediapipe/calculators/util/collection_has_min_size_calculator.h; sourceTree = ""; }; + C9EBA38BE6734FD200000000 /* topologicalsorter.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = topologicalsorter.cc; path = mediapipe/framework/deps/topologicalsorter.cc; sourceTree = ""; }; + C9EBA38BE6E5F27200000000 /* threadpool_pthread_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool_pthread_impl.cc; path = mediapipe/framework/deps/threadpool_pthread_impl.cc; sourceTree = ""; }; + C9EBA38BE6F665F300000000 /* circular_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = circular_buffer.h; path = mediapipe/framework/profiler/circular_buffer.h; sourceTree = ""; }; + C9EBA38BE7100B5A00000000 /* image_frame.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame.cc; path = mediapipe/framework/formats/image_frame.cc; sourceTree = ""; }; + C9EBA38BE807B54A00000000 /* image.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image.cc; path = mediapipe/framework/formats/image.cc; sourceTree = ""; }; + C9EBA38BE828302500000000 /* constant_side_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = constant_side_packet_calculator.cc; path = mediapipe/calculators/core/constant_side_packet_calculator.cc; sourceTree = ""; }; + C9EBA38BE8AA1C7C00000000 /* lib_idx_profiler_resource_util_09647121_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_09647121_ios_min11.0.a; path = lib_idx_profiler_resource_util_09647121_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BE91AE08600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BEE49609500000000 /* proto_ns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_ns.h; path = mediapipe/framework/port/proto_ns.h; sourceTree = ""; }; + C9EBA38BEED97A0A00000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; + C9EBA38BEF9BE2D900000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; + C9EBA38BEFA8DA8100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BF010336C00000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a; path = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF0ED19A200000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF121E6F100000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; + C9EBA38BF264347B00000000 /* mathutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mathutil.h; path = mediapipe/framework/deps/mathutil.h; sourceTree = ""; }; + C9EBA38BF2BC66A700000000 /* opencv_core_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_core_inc.h; path = mediapipe/framework/port/opencv_core_inc.h; sourceTree = ""; }; + C9EBA38BF2F4752D00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; + C9EBA38BF2F6EF7A00000000 /* registration_token.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration_token.cc; path = mediapipe/framework/deps/registration_token.cc; sourceTree = ""; }; + C9EBA38BF381D01A00000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a; path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF3C6671D00000000 /* transform_tensor_bilinear.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_tensor_bilinear.h; path = mediapipe/util/tflite/operations/transform_tensor_bilinear.h; sourceTree = ""; }; + C9EBA38BF433E56800000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; + C9EBA38BF45C27B300000000 /* image_to_tensor_converter_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_to_tensor_converter_opencv.h; path = mediapipe/calculators/tensor/image_to_tensor_converter_opencv.h; sourceTree = ""; }; + C9EBA38BF4A32DC300000000 /* strong_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = strong_int.h; path = mediapipe/framework/deps/strong_int.h; sourceTree = ""; }; + C9EBA38BF4C6B57E00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF4DBB09F00000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; + C9EBA38BF506777200000000 /* lib_idx_tensor_3731EC48_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensor_3731EC48_ios_min11.0.a; path = lib_idx_tensor_3731EC48_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF55A3E2300000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/port/status.h; sourceTree = ""; }; + C9EBA38BF5C4F8A200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF5D9AD1900000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; + C9EBA38BF60BB7D400000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; + C9EBA38BF673885B00000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/deps/map_util.h; sourceTree = ""; }; + C9EBA38BF6D32D1300000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/port/point2.h; sourceTree = ""; }; + C9EBA38BF74A8D4000000000 /* lib_idx_resource_util_DF96AF63_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_DF96AF63_ios_min11.0.a; path = lib_idx_resource_util_DF96AF63_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF7562AA200000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; + C9EBA38BF7CED4EA00000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a; path = lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BF803EBB100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BF9A814E200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/deps/vector.h; sourceTree = ""; }; + C9EBA38BF9BC7F3700000000 /* canonical_errors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = canonical_errors.h; path = mediapipe/framework/port/canonical_errors.h; sourceTree = ""; }; + C9EBA38BFA091E5200000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BFAE7643A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BFB4ACA3400000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a; path = lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BFC10936C00000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/port/topologicalsorter.h; sourceTree = ""; }; + C9EBA38BFCAD13AA00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_689F8605_ios_min11.0.a; path = lib_idx_tflite_model_loader_689F8605_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BFD0EBEF300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BFE3D856E00000000 /* detections_to_rects_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detections_to_rects_calculator.cc; path = mediapipe/calculators/util/detections_to_rects_calculator.cc; sourceTree = ""; }; + C9EBA38BFE5E839400000000 /* in_order_output_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = in_order_output_stream_handler.h; path = mediapipe/framework/stream_handler/in_order_output_stream_handler.h; sourceTree = ""; }; + C9EBA38BFE962B8A00000000 /* lib_idx_op_resolver_72040923_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_72040923_ios_min15.5.a; path = lib_idx_op_resolver_72040923_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C9EBA38BFEDC5EF900000000 /* registration.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration.cc; path = mediapipe/framework/deps/registration.cc; sourceTree = ""; }; + C9EBA38BFF73BDCB00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/tool/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + C9EBA38BFFA669C400000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; + C9EBA38BFFC5761700000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/port/threadpool.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXGroup section */ - B6073D5100A0230400000000 /* x */ = { + EF9FD80E0073A1CF00000000 /* stream_handler */ = { isa = PBXGroup; children = ( - B6073D5100A0230400000001 /* x */, + C9EBA38B01A7973A00000000 /* BUILD */, + C9EBA38B61B557B900000000 /* default_input_stream_handler.cc */, + C9EBA38B2ECE4E2100000000 /* default_input_stream_handler.h */, + C9EBA38B7DAFBCF400000000 /* fixed_size_input_stream_handler.cc */, + C9EBA38B3C2F923900000000 /* immediate_input_stream_handler.cc */, + C9EBA38BD1A7539900000000 /* in_order_output_stream_handler.cc */, + C9EBA38BFE5E839400000000 /* in_order_output_stream_handler.h */, ); - name = x; + name = stream_handler; sourceTree = ""; }; - B6073D5100A0230400000001 /* x */ = { + EF9FD80E0C0CF92C00000000 /* gpu */ = { isa = PBXGroup; children = ( - B6073D51D9D43D6F00000000 /* mediapipe */, - ); - name = x; - sourceTree = ""; - }; - B6073D510BCCD63300000000 /* calculators */ = { - isa = PBXGroup; - children = ( - B6073D5117D4EEA300000000 /* core */, - B6073D5161E865A700000000 /* image */, - B6073D517D56836F00000000 /* internal */, - B6073D51A67C5B3100000000 /* tensor */, - B6073D5144FF67A600000000 /* tflite */, - B6073D51F77EA18700000000 /* util */, - ); - name = calculators; - sourceTree = ""; - }; - B6073D510BCCD63300000001 /* calculators */ = { - isa = PBXGroup; - children = ( - 8F62469E47AA7F8A00000000 /* BUILD */, - 8F62469EAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc */, - ); - name = calculators; - sourceTree = ""; - }; - B6073D5117D4EEA300000000 /* core */ = { - isa = PBXGroup; - children = ( - 8F62469E2A101FF000000000 /* BUILD */, - 8F62469E7B0088E300000000 /* begin_loop_calculator.cc */, - 8F62469ED21F400300000000 /* begin_loop_calculator.h */, - 8F62469E53BB6A1B00000000 /* clip_vector_size_calculator.cc */, - 8F62469E261F021200000000 /* clip_vector_size_calculator.h */, - 8F62469E267D173700000000 /* constant_side_packet_calculator.cc */, - 8F62469ED0D5BCFD00000000 /* end_loop_calculator.cc */, - 8F62469E20BF236600000000 /* end_loop_calculator.h */, - 8F62469E7079047800000000 /* flow_limiter_calculator.cc */, - 8F62469EB1AC117700000000 /* gate_calculator.cc */, - 8F62469ECD95EE7200000000 /* previous_loopback_calculator.cc */, - 8F62469ED71B607200000000 /* split_proto_list_calculator.cc */, - 8F62469E18FF939300000000 /* split_vector_calculator.cc */, - 8F62469E3355B24600000000 /* split_vector_calculator.h */, - ); - name = core; - sourceTree = ""; - }; - B6073D5117D4EEA300000001 /* core */ = { - isa = PBXGroup; - children = ( - 8F62469EB1E9A57D00000000 /* BUILD */, - 8F62469E50B7221100000000 /* CVFramebuffer.hpp */, - 8F62469E6328969D00000000 /* Context.cpp */, - 8F62469E4EEECC8300000000 /* Context.hpp */, - 8F62469E9A0C486600000000 /* Filter.cpp */, - 8F62469EE68DB5B900000000 /* Filter.hpp */, - 8F62469E36A1BCF500000000 /* FilterGroup.cpp */, - 8F62469EF673763B00000000 /* FilterGroup.hpp */, - 8F62469E5771EFBD00000000 /* Framebuffer.cpp */, - 8F62469EE11EEBC500000000 /* Framebuffer.hpp */, - 8F62469E42538A8300000000 /* FramebufferCache.cpp */, - 8F62469E2F07C29D00000000 /* FramebufferCache.hpp */, - 8F62469ED9FC1F1200000000 /* GLProgram.cpp */, - 8F62469E5426685200000000 /* GLProgram.hpp */, - 8F62469E99A1D41800000000 /* GLThreadDispatch.cpp */, - 8F62469EC8AE2DAC00000000 /* GLThreadDispatch.h */, - 8F62469E82C6800100000000 /* GPUImage-x.h */, - 8F62469EFCCC889200000000 /* GPUImageMacros.h */, - 8F62469E7882FF9000000000 /* GPUImageTarget.h */, - 8F62469E3950B88400000000 /* GPUImageUtil.cpp */, - 8F62469E4907602900000000 /* GPUImageUtil.h */, - 8F62469EC345270B00000000 /* IOSTarget.cpp */, - 8F62469E7F557F5700000000 /* IOSTarget.hpp */, - 8F62469EB8521D3400000000 /* OpipeDispatch.cpp */, - 8F62469E98F29E1100000000 /* OpipeDispatch.hpp */, - 8F62469EDBE5CD1B00000000 /* Ref.cpp */, - 8F62469E46E60CF500000000 /* Ref.hpp */, - 8F62469E403A0ACA00000000 /* Source.cpp */, - 8F62469EA1C5D7DE00000000 /* Source.hpp */, - 8F62469EA688677600000000 /* SourceCamera.cpp */, - 8F62469E22A87E2800000000 /* SourceCamera.hpp */, - 8F62469E4CCA495100000000 /* SourceImage.cpp */, - 8F62469E0B995C7D00000000 /* SourceImage.hpp */, - 8F62469E2E87CC4E00000000 /* Target.cpp */, - 8F62469EEDBFEFFF00000000 /* Target.hpp */, - 8F62469EC7392BFD00000000 /* TargetView.cpp */, - 8F62469EB6FE491A00000000 /* TargetView.hpp */, - 8F62469EFA8D3DEA00000000 /* dispatch_queue.cpp */, - 8F62469EAFAD908E00000000 /* dispatch_queue.h */, - B6073D51547F41C200000000 /* math */, - 8F62469E64A7F94D00000000 /* math.cpp */, - 8F62469E1601B9F400000000 /* math.hpp */, - ); - name = core; - sourceTree = ""; - }; - B6073D511AD359C600000000 /* bazel-tulsi-includes */ = { - isa = PBXGroup; - children = ( - B6073D5100A0230400000000 /* x */, - ); - name = "bazel-tulsi-includes"; - sourceTree = ""; - }; - B6073D5126E799E900000000 /* face_detection */ = { - isa = PBXGroup; - children = ( - 8F62469E2DD9171300000000 /* BUILD */, - 8F62469E4E319F4100000000 /* face_detection_short_range.tflite */, - ); - name = face_detection; - sourceTree = ""; - }; - B6073D5144FF67A600000000 /* tflite */ = { - isa = PBXGroup; - children = ( - 8F62469EAAEBDCD100000000 /* BUILD */, - 8F62469E57CDD24300000000 /* ssd_anchors_calculator.cc */, - 8F62469EC43404B200000000 /* tflite_custom_op_resolver_calculator.cc */, - 8F62469E50FA3B1400000000 /* tflite_model_calculator.cc */, - ); - name = tflite; - sourceTree = ""; - }; - B6073D5144FF67A600000001 /* tflite */ = { - isa = PBXGroup; - children = ( - 8F62469E14D6DD8600000000 /* BUILD */, - 8F62469E00E42C1500000000 /* config.h */, - 8F62469E1370E16B00000000 /* cpu_op_resolver.cc */, - 8F62469E470DC89E00000000 /* cpu_op_resolver.h */, - 8F62469EFD02751100000000 /* op_resolver.cc */, - 8F62469E89917A6900000000 /* op_resolver.h */, - B6073D51BDCD1F6B00000000 /* operations */, - 8F62469E8369D9F900000000 /* tflite_model_loader.cc */, - 8F62469E6661607500000000 /* tflite_model_loader.h */, - ); - name = tflite; - sourceTree = ""; - }; - B6073D51547F41C200000000 /* math */ = { - isa = PBXGroup; - children = ( - 8F62469E8968C08000000000 /* BUILD */, - 8F62469E0592E24D00000000 /* mat4.cpp */, - 8F62469ECB6D125D00000000 /* mat4.hpp */, - 8F62469E01C72EAB00000000 /* mat4.inl */, - 8F62469EB1FDA98700000000 /* math_utils.cpp */, - 8F62469EB16A0B0500000000 /* math_utils.hpp */, - 8F62469E0156E7A600000000 /* vec2.cpp */, - 8F62469E6F3A937000000000 /* vec2.hpp */, - 8F62469E2111801D00000000 /* vec2.inl */, - 8F62469E7FAD39F900000000 /* vec3.cpp */, - 8F62469EDC30573A00000000 /* vec3.hpp */, - 8F62469EC7C4069700000000 /* vec3.inl */, - 8F62469E7A9963A400000000 /* vec4.cpp */, - 8F62469E93A51CF900000000 /* vec4.hpp */, - 8F62469E44C7D79C00000000 /* vec4.inl */, - ); - name = math; - sourceTree = ""; - }; - B6073D5160F5208E00000000 /* beauty */ = { - isa = PBXGroup; - children = ( - B6073D51628F523900000000 /* ios */, - ); - name = beauty; - sourceTree = ""; - }; - B6073D5160F5208E00000001 /* beauty */ = { - isa = PBXGroup; - children = ( - 8F62469E7E422EC300000000 /* BUILD */, - 8F62469E8563DF9500000000 /* face_mesh_beauty_render.cc */, - 8F62469E992468E800000000 /* face_mesh_beauty_render.h */, - 8F62469E4CC6C91400000000 /* face_mesh_module.cc */, - 8F62469E426BAE8A00000000 /* face_mesh_module.h */, - 8F62469EA59EA68600000000 /* face_mesh_module_imp.cc */, - 8F62469EE980F42800000000 /* face_mesh_module_imp.h */, - B6073D51628F523900000001 /* ios */, - ); - name = beauty; - sourceTree = ""; - }; - B6073D5161E865A700000000 /* image */ = { - isa = PBXGroup; - children = ( - 8F62469E0F3F7D7100000000 /* BUILD */, - 8F62469E7D7F06EB00000000 /* image_properties_calculator.cc */, - ); - name = image; - sourceTree = ""; - }; - B6073D51628F523900000000 /* ios */ = { - isa = PBXGroup; - children = ( - B6073D51E2C2B04800000000 /* OlaFaceUnityFramework-intermediates */, - ); - name = ios; - sourceTree = ""; - }; - B6073D51628F523900000001 /* ios */ = { - isa = PBXGroup; - children = ( - 8F62469EC4A7F5F700000000 /* BUILD */, - 8F62469ED999FFBC00000000 /* Info.plist */, - 8F62469EB114B9D600000000 /* OlaFaceUnity.h */, - 8F62469EF4C8279B00000000 /* OlaFaceUnity.mm */, - ); - name = ios; - sourceTree = ""; - }; - B6073D516A890A1B00000000 /* objc */ = { - isa = PBXGroup; - children = ( - 8F62469E004ED87500000000 /* BUILD */, - 8F62469ED30BA54B00000000 /* CFHolder.h */, - 8F62469E9360D7F700000000 /* MPPGraph.h */, - 8F62469EEEE7D66700000000 /* MPPGraph.mm */, - 8F62469EFF81542500000000 /* MPPTimestampConverter.h */, - 8F62469E48E4E18100000000 /* MPPTimestampConverter.mm */, - 8F62469EC1EEAB6200000000 /* NSError+util_status.h */, - 8F62469E998F8A2E00000000 /* NSError+util_status.mm */, - 8F62469E094AB7D000000000 /* Weakify.h */, - 8F62469E4C094F0A00000000 /* util.cc */, - 8F62469EB3AF12A500000000 /* util.h */, - ); - name = objc; - sourceTree = ""; - }; - B6073D516DF9891700000000 /* Indexer */ = { - isa = PBXGroup; - children = ( - 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */, - 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */, - 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */, - 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */, - 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */, - 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */, - 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */, - 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */, - 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */, - 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */, - 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */, - 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */, - 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */, - 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */, - 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */, - 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */, - 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */, - 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */, - 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */, - 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */, - 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */, - 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */, - 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */, - 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */, - 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */, - 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */, - 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */, - 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */, - 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */, - 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */, - 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */, - 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */, - 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */, - 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */, - 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */, - 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */, - 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */, - 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */, - 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */, - 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */, - 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */, - 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */, - 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */, - 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */, - 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */, - 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */, - 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */, - 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */, - 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */, - 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */, - 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */, - 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */, - 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */, - 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */, - 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */, - 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */, - 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */, - 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */, - 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */, - 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */, - 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */, - 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */, - 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */, - 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */, - 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */, - 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */, - 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */, - 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */, - 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */, - 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */, - 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */, - 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */, - 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */, - 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */, - 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */, - 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */, - 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */, - 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */, - 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */, - 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */, - 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */, - 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */, - 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */, - 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */, - 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */, - 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */, - 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */, - 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */, - 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */, - 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */, - ); - name = Indexer; - sourceTree = ""; - }; - B6073D517D56836F00000000 /* internal */ = { - isa = PBXGroup; - children = ( - 8F62469EC5A8384400000000 /* BUILD */, - 8F62469E225F8AC300000000 /* callback_packet_calculator.cc */, - ); - name = internal; - sourceTree = ""; - }; - B6073D5180FFB1C700000000 /* module */ = { - isa = PBXGroup; - children = ( - B6073D5160F5208E00000000 /* beauty */, - ); - name = module; - sourceTree = ""; - }; - B6073D5180FFB1C700000001 /* module */ = { - isa = PBXGroup; - children = ( - B6073D5160F5208E00000001 /* beauty */, - B6073D51BC8F762D00000000 /* common */, - ); - name = module; - sourceTree = ""; - }; - B6073D51860C2AA800000000 /* graphs */ = { - isa = PBXGroup; - children = ( - B6073D51F98D880A00000000 /* face_mesh */, - ); - name = graphs; - sourceTree = ""; - }; - B6073D51A67C5B3100000000 /* tensor */ = { - isa = PBXGroup; - children = ( - 8F62469EBBD68CCB00000000 /* BUILD */, - 8F62469E549B74DB00000000 /* image_to_tensor_calculator.cc */, - 8F62469EA7FB485A00000000 /* image_to_tensor_converter.h */, - 8F62469E635CAFD500000000 /* image_to_tensor_converter_metal.cc */, - 8F62469E1CCA511900000000 /* image_to_tensor_converter_metal.h */, - 8F62469EF332D51F00000000 /* image_to_tensor_converter_opencv.cc */, - 8F62469E5EECF1D200000000 /* image_to_tensor_converter_opencv.h */, - 8F62469E2CF83E7600000000 /* image_to_tensor_utils.cc */, - 8F62469E3099305600000000 /* image_to_tensor_utils.h */, - 8F62469E8FB74E7600000000 /* inference_calculator.cc */, - 8F62469E032AE7D900000000 /* inference_calculator.h */, - 8F62469E29F2D5B300000000 /* inference_calculator_cpu.cc */, - 8F62469E134BBB5F00000000 /* inference_calculator_metal.cc */, - 8F62469E6414206900000000 /* tensors_to_detections_calculator.cc */, - 8F62469ED8BCE6D000000000 /* tensors_to_floats_calculator.cc */, - 8F62469ED84977E600000000 /* tensors_to_landmarks_calculator.cc */, - ); - name = tensor; - sourceTree = ""; - }; - B6073D51ABA9B7E300000000 /* gpu */ = { - isa = PBXGroup; - children = ( - 8F62469E10398DD500000000 /* BUILD */, - 8F62469E3564243100000000 /* MPPGraphGPUData.h */, - 8F62469EBA4BE9D200000000 /* MPPGraphGPUData.mm */, - 8F62469EB4D149AA00000000 /* MPPMetalHelper.h */, - 8F62469E849B03E000000000 /* MPPMetalHelper.mm */, - 8F62469E1046F3BF00000000 /* MPPMetalUtil.h */, - 8F62469EFF18EE3C00000000 /* MPPMetalUtil.mm */, - 8F62469EE2AAAAC700000000 /* attachments.h */, - 8F62469E43717CCB00000000 /* gl_base.h */, - 8F62469EDD869D9E00000000 /* gl_calculator_helper.cc */, - 8F62469E965A610100000000 /* gl_calculator_helper.h */, - 8F62469E5A5CE83A00000000 /* gl_calculator_helper_impl.h */, - 8F62469EC05BE00400000000 /* gl_calculator_helper_impl_common.cc */, - 8F62469ED11949C300000000 /* gl_context.cc */, - 8F62469E754BEB6400000000 /* gl_context.h */, - 8F62469E4AFAD92200000000 /* gl_context_eagl.cc */, - 8F62469E8DC1865400000000 /* gl_context_internal.h */, - 8F62469E1AA4F1AC00000000 /* gl_simple_shaders.cc */, - 8F62469E2226086B00000000 /* gl_simple_shaders.h */, - 8F62469EA3E97E1400000000 /* gl_texture_buffer.cc */, - 8F62469E5825859100000000 /* gl_texture_buffer.h */, - 8F62469EF51362E900000000 /* gl_texture_buffer_pool.cc */, - 8F62469E33969E5B00000000 /* gl_texture_buffer_pool.h */, - 8F62469EEA623A4800000000 /* gl_texture_view.cc */, - 8F62469E1DE1C67300000000 /* gl_texture_view.h */, - 8F62469E8A36159200000000 /* gl_thread_collector.h */, - 8F62469E8EDC082600000000 /* gpu_buffer.cc */, - 8F62469E658A4F0A00000000 /* gpu_buffer.h */, - 8F62469E92E2BF3700000000 /* gpu_buffer_format.cc */, - 8F62469EE545996200000000 /* gpu_buffer_format.h */, - 8F62469E2F39A2D500000000 /* gpu_buffer_multi_pool.cc */, - 8F62469E2E2AC0E200000000 /* gpu_buffer_multi_pool.h */, - 8F62469E2E9744D600000000 /* gpu_buffer_storage.cc */, - 8F62469E831E6AA800000000 /* gpu_buffer_storage.h */, - 8F62469E489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */, - 8F62469EF4DBABD700000000 /* gpu_buffer_storage_cv_pixel_buffer.h */, - 8F62469E2E4BDDE900000000 /* gpu_buffer_storage_image_frame.h */, - 8F62469E984EF97C00000000 /* gpu_service.cc */, - 8F62469EC6F9540300000000 /* gpu_service.h */, - 8F62469E8618537700000000 /* gpu_shared_data_internal.cc */, - 8F62469EABDC185C00000000 /* gpu_shared_data_internal.h */, - 8F62469EE51F86FE00000000 /* graph_support.h */, - 8F62469EBF95A75D00000000 /* image_frame_view.h */, - 8F62469EDAE0FA6B00000000 /* pixel_buffer_pool_util.h */, - 8F62469E357DD06500000000 /* pixel_buffer_pool_util.mm */, - 8F62469E369A201C00000000 /* shader_util.cc */, - 8F62469EAFD40B0000000000 /* shader_util.h */, + C9EBA38BAFF7454F00000000 /* BUILD */, + C9EBA38B2DB210D800000000 /* MPPGraphGPUData.h */, + C9EBA38BA30CE7D000000000 /* MPPGraphGPUData.mm */, + C9EBA38B4FBDBA9600000000 /* MPPMetalHelper.h */, + C9EBA38B74A45FEA00000000 /* MPPMetalHelper.mm */, + C9EBA38BDAC4BB8100000000 /* MPPMetalUtil.h */, + C9EBA38B3BB7F36D00000000 /* MPPMetalUtil.mm */, + C9EBA38BB46123F900000000 /* attachments.h */, + C9EBA38BC655643C00000000 /* gl_base.h */, + C9EBA38BB99FAC6D00000000 /* gl_calculator_helper.cc */, + C9EBA38BDE42741200000000 /* gl_calculator_helper.h */, + C9EBA38BAAEF9A5D00000000 /* gl_calculator_helper_impl.h */, + C9EBA38B0FE70EC600000000 /* gl_calculator_helper_impl_common.cc */, + C9EBA38B4CDCC8E700000000 /* gl_context.cc */, + C9EBA38B7E72F9CB00000000 /* gl_context.h */, + C9EBA38BF4DBB09F00000000 /* gl_context_eagl.cc */, + C9EBA38BCC47E68C00000000 /* gl_context_internal.h */, + C9EBA38BA6E86D0400000000 /* gl_simple_shaders.cc */, + C9EBA38B2269E22300000000 /* gl_simple_shaders.h */, + C9EBA38BF433E56800000000 /* gl_texture_buffer.cc */, + C9EBA38B1417F3C000000000 /* gl_texture_buffer.h */, + C9EBA38B4C68E01800000000 /* gl_texture_buffer_pool.cc */, + C9EBA38B004DE45700000000 /* gl_texture_buffer_pool.h */, + C9EBA38B54B2B79500000000 /* gl_texture_view.cc */, + C9EBA38BF7562AA200000000 /* gl_texture_view.h */, + C9EBA38B6A2F386900000000 /* gl_thread_collector.h */, + C9EBA38BB20E049D00000000 /* gpu_buffer.cc */, + C9EBA38BBC89365D00000000 /* gpu_buffer.h */, + C9EBA38B25A56E7500000000 /* gpu_buffer_format.cc */, + C9EBA38B55E7441C00000000 /* gpu_buffer_format.h */, + C9EBA38B7CAF9C9900000000 /* gpu_buffer_multi_pool.cc */, + C9EBA38B4E80EB1200000000 /* gpu_buffer_multi_pool.h */, + C9EBA38B01F3B5A000000000 /* gpu_buffer_storage.cc */, + C9EBA38BC278B50300000000 /* gpu_buffer_storage.h */, + C9EBA38BE042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc */, + C9EBA38B23C3628900000000 /* gpu_buffer_storage_cv_pixel_buffer.h */, + C9EBA38B7CB9F0A700000000 /* gpu_buffer_storage_image_frame.h */, + C9EBA38BCC83910500000000 /* gpu_service.cc */, + C9EBA38BD639903100000000 /* gpu_service.h */, + C9EBA38B4D6C4C7F00000000 /* gpu_shared_data_internal.cc */, + C9EBA38BA4741C1C00000000 /* gpu_shared_data_internal.h */, + C9EBA38B194C84DC00000000 /* graph_support.h */, + C9EBA38BAB865B6B00000000 /* image_frame_view.h */, + C9EBA38B4971400100000000 /* pixel_buffer_pool_util.h */, + C9EBA38B156896BC00000000 /* pixel_buffer_pool_util.mm */, + C9EBA38BA515D7AD00000000 /* shader_util.cc */, + C9EBA38BBD280FED00000000 /* shader_util.h */, ); name = gpu; sourceTree = ""; }; - B6073D51AFFF10B500000000 /* render */ = { + EF9FD80E0D0083D800000000 /* tool */ = { isa = PBXGroup; children = ( - B6073D5180FFB1C700000000 /* module */, + C9EBA38BFF73BDCB00000000 /* BUILD */, + C9EBA38BC41917A300000000 /* container_util.cc */, + C9EBA38B8D59D9EF00000000 /* container_util.h */, + C9EBA38B891AB9AF00000000 /* fill_packet_set.cc */, + C9EBA38BB770D6AA00000000 /* fill_packet_set.h */, + C9EBA38BA9FEEACC00000000 /* name_util.cc */, + C9EBA38B59F6EA2D00000000 /* name_util.h */, + C9EBA38BB1F58FA100000000 /* options_field_util.cc */, + C9EBA38B7D267CA200000000 /* options_field_util.h */, + C9EBA38B0E36CA6500000000 /* options_map.h */, + C9EBA38B469B0ADD00000000 /* options_registry.cc */, + C9EBA38B8102402E00000000 /* options_registry.h */, + C9EBA38B520F4EF100000000 /* options_syntax_util.cc */, + C9EBA38B675A27C100000000 /* options_syntax_util.h */, + C9EBA38B653148E700000000 /* options_util.cc */, + C9EBA38B8324A2C800000000 /* options_util.h */, + C9EBA38B086B422F00000000 /* packet_generator_wrapper_calculator.cc */, + C9EBA38B8474EEF500000000 /* proto_util_lite.cc */, + C9EBA38B1486CB5C00000000 /* proto_util_lite.h */, + C9EBA38B880E6D6100000000 /* sink.cc */, + C9EBA38B1BDACEEB00000000 /* sink.h */, + C9EBA38BCEEFFADB00000000 /* status_util.cc */, + C9EBA38B62E8CBE400000000 /* status_util.h */, + C9EBA38B83AFE1B600000000 /* subgraph_expansion.cc */, + C9EBA38B547423AA00000000 /* subgraph_expansion.h */, + C9EBA38BBCEAB42A00000000 /* switch_container.cc */, + C9EBA38B80DA5B6200000000 /* switch_demux_calculator.cc */, + C9EBA38B6FA6B02B00000000 /* switch_mux_calculator.cc */, + C9EBA38BCDD4591A00000000 /* tag_map.cc */, + C9EBA38BA7B190CB00000000 /* tag_map.h */, + C9EBA38B26FC899A00000000 /* tag_map_helper.cc */, + C9EBA38B0EC4067F00000000 /* tag_map_helper.h */, + C9EBA38B408026B200000000 /* template_expander.cc */, + C9EBA38B30F1D94C00000000 /* template_expander.h */, + C9EBA38B2AA4CEBE00000000 /* type_util.h */, + C9EBA38B13EBD42600000000 /* validate.cc */, + C9EBA38BA6EB86DB00000000 /* validate.h */, + C9EBA38B6B7D834500000000 /* validate_name.cc */, + C9EBA38B28422E7D00000000 /* validate_name.h */, ); - name = render; + name = tool; sourceTree = ""; }; - B6073D51AFFF10B500000001 /* render */ = { + EF9FD80E0EF62AD900000000 /* annotation */ = { isa = PBXGroup; children = ( - B6073D5117D4EEA300000001 /* core */, - B6073D5180FFB1C700000001 /* module */, + C9EBA38B115F5FC700000000 /* BUILD */, ); - name = render; + name = annotation; sourceTree = ""; }; - B6073D51BC8F762D00000000 /* common */ = { + EF9FD80E1981589B00000000 /* tensor */ = { isa = PBXGroup; children = ( - 8F62469E6E52672200000000 /* BUILD */, - 8F62469EB288401C00000000 /* ola_graph.cc */, - 8F62469EB6285B2000000000 /* ola_graph.h */, + C9EBA38B86F0323A00000000 /* BUILD */, + C9EBA38B7F781A8A00000000 /* image_to_tensor_calculator.cc */, + C9EBA38B702BED5800000000 /* image_to_tensor_converter.h */, + C9EBA38B35928F7E00000000 /* image_to_tensor_converter_metal.cc */, + C9EBA38BAEB6A89F00000000 /* image_to_tensor_converter_metal.h */, + C9EBA38B56552D1100000000 /* image_to_tensor_converter_opencv.cc */, + C9EBA38BF45C27B300000000 /* image_to_tensor_converter_opencv.h */, + C9EBA38BB766CDE400000000 /* image_to_tensor_utils.cc */, + C9EBA38B2317046800000000 /* image_to_tensor_utils.h */, + C9EBA38BD16450D500000000 /* inference_calculator.cc */, + C9EBA38B8AB21CB100000000 /* inference_calculator.h */, + C9EBA38BC5B8FC9C00000000 /* inference_calculator_cpu.cc */, + C9EBA38B26CACA2800000000 /* inference_calculator_metal.cc */, + C9EBA38BB742764B00000000 /* tensors_to_detections_calculator.cc */, + C9EBA38B0CE8B3CB00000000 /* tensors_to_floats_calculator.cc */, + C9EBA38B041A754A00000000 /* tensors_to_landmarks_calculator.cc */, ); - name = common; + name = tensor; sourceTree = ""; }; - B6073D51BDCD1F6B00000000 /* operations */ = { + EF9FD80E1B0AE62200000000 /* deps */ = { isa = PBXGroup; children = ( - 8F62469EBB40D9BF00000000 /* BUILD */, - 8F62469E9298B3CD00000000 /* landmarks_to_transform_matrix.cc */, - 8F62469E7CF00B4E00000000 /* landmarks_to_transform_matrix.h */, - 8F62469ECDEAEE5C00000000 /* max_pool_argmax.cc */, - 8F62469E0CFA3AED00000000 /* max_pool_argmax.h */, - 8F62469EF18A35B600000000 /* max_unpooling.cc */, - 8F62469E3101686800000000 /* max_unpooling.h */, - 8F62469E096C09DF00000000 /* transform_landmarks.cc */, - 8F62469E4863BAE900000000 /* transform_landmarks.h */, - 8F62469E3EF5E91200000000 /* transform_tensor_bilinear.cc */, - 8F62469EA1FC1CB100000000 /* transform_tensor_bilinear.h */, - 8F62469EE7ED8E2C00000000 /* transpose_conv_bias.cc */, - 8F62469E2665A36C00000000 /* transpose_conv_bias.h */, + C9EBA38B139ED0A800000000 /* BUILD */, + C9EBA38B2037524700000000 /* aligned_malloc_and_free.h */, + C9EBA38B02D3CC6900000000 /* canonical_errors.h */, + C9EBA38B5717A8BD00000000 /* clock.cc */, + C9EBA38B9616CB8A00000000 /* clock.h */, + C9EBA38B6449A05600000000 /* file_helpers.cc */, + C9EBA38B983418F800000000 /* file_helpers.h */, + C9EBA38B74A84AF100000000 /* file_path.cc */, + C9EBA38B6FBA195800000000 /* file_path.h */, + C9EBA38BF673885B00000000 /* map_util.h */, + C9EBA38BF264347B00000000 /* mathutil.h */, + C9EBA38B88CF16C500000000 /* monotonic_clock.cc */, + C9EBA38B11935B0B00000000 /* monotonic_clock.h */, + C9EBA38B70EF5FEB00000000 /* no_destructor.h */, + C9EBA38BA740CAE000000000 /* numbers.h */, + C9EBA38B65918E7200000000 /* point2.h */, + C9EBA38B104B31A800000000 /* re2.h */, + C9EBA38B758D0A4200000000 /* rectangle.h */, + C9EBA38BFEDC5EF900000000 /* registration.cc */, + C9EBA38B1488028100000000 /* registration.h */, + C9EBA38BF2F6EF7A00000000 /* registration_token.cc */, + C9EBA38BC0D2CA0900000000 /* registration_token.h */, + C9EBA38B6E45D2D500000000 /* ret_check.cc */, + C9EBA38B9893EFFE00000000 /* ret_check.h */, + C9EBA38BDE65D38100000000 /* safe_int.h */, + C9EBA38B993F10C300000000 /* singleton.h */, + C9EBA38BD01E239500000000 /* source_location.h */, + C9EBA38B1534E9A800000000 /* status.cc */, + C9EBA38BAD990BB500000000 /* status.h */, + C9EBA38B49AA7F2B00000000 /* status_builder.cc */, + C9EBA38B9590DB2200000000 /* status_builder.h */, + C9EBA38B833288FE00000000 /* status_macros.h */, + C9EBA38BF4A32DC300000000 /* strong_int.h */, + C9EBA38BB7DF80B800000000 /* thread_options.h */, + C9EBA38B962B6C3500000000 /* threadpool.h */, + C9EBA38BE6E5F27200000000 /* threadpool_pthread_impl.cc */, + C9EBA38BE6734FD200000000 /* topologicalsorter.cc */, + C9EBA38B40655EE700000000 /* topologicalsorter.h */, + C9EBA38BF9A814E200000000 /* vector.h */, ); - name = operations; + name = deps; sourceTree = ""; }; - B6073D51C5B1B94C00000000 /* modules */ = { + EF9FD80E1BCC0C2D00000000 /* port */ = { isa = PBXGroup; children = ( - B6073D5126E799E900000000 /* face_detection */, - B6073D51FA77839C00000000 /* face_landmark */, + C9EBA38B44ED965D00000000 /* BUILD */, + C9EBA38B63600BBD00000000 /* advanced_proto_inc.h */, + C9EBA38BD8640FC700000000 /* advanced_proto_lite_inc.h */, + C9EBA38BAB44B2BA00000000 /* aligned_malloc_and_free.h */, + C9EBA38BB5CC36C700000000 /* any_proto.h */, + C9EBA38BF9BC7F3700000000 /* canonical_errors.h */, + C9EBA38B769043C800000000 /* core_proto_inc.h */, + C9EBA38B3F6D0D9800000000 /* file_helpers.h */, + C9EBA38BC3939B2500000000 /* integral_types.h */, + C9EBA38B44ABC53B00000000 /* logging.h */, + C9EBA38B21AA742700000000 /* map_util.h */, + C9EBA38B19CC055200000000 /* numbers.h */, + C9EBA38BF2BC66A700000000 /* opencv_core_inc.h */, + C9EBA38B168E8BEC00000000 /* opencv_imgproc_inc.h */, + C9EBA38BF6D32D1300000000 /* point2.h */, + C9EBA38BA717C69F00000000 /* port.h */, + C9EBA38BEE49609500000000 /* proto_ns.h */, + C9EBA38BDDDCBB2900000000 /* re2.h */, + C9EBA38B9066DD6C00000000 /* rectangle.h */, + C9EBA38B8400579B00000000 /* ret_check.h */, + C9EBA38B56DEC5F100000000 /* singleton.h */, + C9EBA38B3EFA289500000000 /* source_location.h */, + C9EBA38BF55A3E2300000000 /* status.h */, + C9EBA38B4D6E7FC300000000 /* status_builder.h */, + C9EBA38B0EDCB81C00000000 /* status_macros.h */, + C9EBA38B8539D02400000000 /* statusor.h */, + C9EBA38BFFC5761700000000 /* threadpool.h */, + C9EBA38BFC10936C00000000 /* topologicalsorter.h */, + C9EBA38B0E7D7EC200000000 /* vector.h */, ); - name = modules; + name = port; sourceTree = ""; }; - B6073D51CAE1C70700000000 /* subgraphs */ = { + EF9FD80E1BE04FFB00000000 /* ios */ = { isa = PBXGroup; children = ( - 8F62469EA699A49F00000000 /* BUILD */, + EF9FD80EB464024900000000 /* framework */, ); - name = subgraphs; + name = ios; sourceTree = ""; }; - B6073D51D9D43D6F00000000 /* mediapipe */ = { + EF9FD80E1BE04FFB00000001 /* ios */ = { isa = PBXGroup; children = ( - B6073D51AFFF10B500000000 /* render */, + EF9FD80EB464024900000002 /* framework */, ); - name = mediapipe; + name = ios; sourceTree = ""; }; - B6073D51D9D43D6F00000001 /* mediapipe */ = { + EF9FD80E1F58424400000000 /* bazel-tulsi-includes */ = { isa = PBXGroup; children = ( - B6073D510BCCD63300000000 /* calculators */, - B6073D51ABA9B7E300000000 /* gpu */, - B6073D51860C2AA800000000 /* graphs */, - B6073D51C5B1B94C00000000 /* modules */, - B6073D516A890A1B00000000 /* objc */, - B6073D51AFFF10B500000001 /* render */, - B6073D51F77EA18700000001 /* util */, + EF9FD80E69DC5A4500000000 /* x */, ); - name = mediapipe; + name = "bazel-tulsi-includes"; sourceTree = ""; }; - B6073D51E2C2B04800000000 /* OlaFaceUnityFramework-intermediates */ = { + EF9FD80E2533FD0100000000 /* graphs */ = { isa = PBXGroup; children = ( - 8F62469EF66CD23100000000 /* Info.plist */, + EF9FD80EE84AF1A800000000 /* face_mesh */, ); - name = "OlaFaceUnityFramework-intermediates"; + name = graphs; sourceTree = ""; }; - B6073D51E306BD5F00000000 /* third_party */ = { + EF9FD80E350DC15F00000000 /* objc */ = { isa = PBXGroup; children = ( - 8F62469EE75E0B9900000000 /* BUILD */, + C9EBA38B5D50D01600000000 /* BUILD */, + C9EBA38B83845FB800000000 /* CFHolder.h */, + C9EBA38B13A3E1FD00000000 /* MPPGraph.h */, + C9EBA38B2B14856B00000000 /* MPPGraph.mm */, + C9EBA38B3275E24500000000 /* MPPTimestampConverter.h */, + C9EBA38B7309A6CF00000000 /* MPPTimestampConverter.mm */, + C9EBA38B63CED78700000000 /* NSError+util_status.h */, + C9EBA38BCF1B8F7800000000 /* NSError+util_status.mm */, + C9EBA38BD7132F7500000000 /* Weakify.h */, + C9EBA38BF2F4752D00000000 /* util.cc */, + C9EBA38B3EA2ACB600000000 /* util.h */, ); - name = third_party; + name = objc; sourceTree = ""; }; - B6073D51EFAF6E4700000000 /* mainGroup */ = { + EF9FD80E39AD841D00000000 /* core */ = { isa = PBXGroup; children = ( - B6073D51F526F47100000000 /* Products */, - B6073D51D9D43D6F00000001 /* mediapipe */, - B6073D51E306BD5F00000000 /* third_party */, + C9EBA38BE3D49C8200000000 /* BUILD */, + C9EBA38B90340E7500000000 /* begin_loop_calculator.cc */, + C9EBA38BE4456C3100000000 /* begin_loop_calculator.h */, + C9EBA38B61B7EE9300000000 /* clip_vector_size_calculator.cc */, + C9EBA38B96C53AF700000000 /* clip_vector_size_calculator.h */, + C9EBA38BE828302500000000 /* constant_side_packet_calculator.cc */, + C9EBA38B0427142700000000 /* end_loop_calculator.cc */, + C9EBA38B30E21AB600000000 /* end_loop_calculator.h */, + C9EBA38BBC8A185A00000000 /* flow_limiter_calculator.cc */, + C9EBA38B08F5F8CC00000000 /* gate_calculator.cc */, + C9EBA38BA1A7A6AB00000000 /* previous_loopback_calculator.cc */, + C9EBA38BBE182A6600000000 /* split_proto_list_calculator.cc */, + C9EBA38B66B5DC2700000000 /* split_vector_calculator.cc */, + C9EBA38B4CAEB53C00000000 /* split_vector_calculator.h */, ); - name = mainGroup; - path = ../../../../..; - sourceTree = SOURCE_ROOT; + name = core; + sourceTree = ""; }; - B6073D51F526F47100000000 /* Products */ = { + EF9FD80E39AD841D00000001 /* core */ = { isa = PBXGroup; children = ( - B6073D516DF9891700000000 /* Indexer */, - 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */, - B6073D511AD359C600000000 /* bazel-tulsi-includes */, - 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */, + C9EBA38B158C7AB800000000 /* BUILD */, + C9EBA38B03F760ED00000000 /* CVFramebuffer.cpp */, + C9EBA38B77278F3F00000000 /* CVFramebuffer.hpp */, + C9EBA38B9165234300000000 /* Context.cpp */, + C9EBA38BBED8F35000000000 /* Context.hpp */, + C9EBA38B385A1C8500000000 /* Filter.cpp */, + C9EBA38B6FE5A40400000000 /* Filter.hpp */, + C9EBA38B9C6B9F6700000000 /* FilterGroup.cpp */, + C9EBA38BF5D9AD1900000000 /* FilterGroup.hpp */, + C9EBA38B6B14FBE400000000 /* Framebuffer.cpp */, + C9EBA38B62F2104200000000 /* Framebuffer.hpp */, + C9EBA38B8884614F00000000 /* FramebufferCache.cpp */, + C9EBA38BCE45B48400000000 /* FramebufferCache.hpp */, + C9EBA38B9CC065F800000000 /* GLProgram.cpp */, + C9EBA38BC3846E8900000000 /* GLProgram.hpp */, + C9EBA38B1B997A6D00000000 /* GLThreadDispatch.cpp */, + C9EBA38B57A481FA00000000 /* GLThreadDispatch.h */, + C9EBA38B8C10B54300000000 /* GPUImage-x.h */, + C9EBA38BE2F9462000000000 /* GPUImageMacros.h */, + C9EBA38B44E5B35800000000 /* GPUImageTarget.h */, + C9EBA38B7A36D66700000000 /* GPUImageUtil.cpp */, + C9EBA38BB226E3E500000000 /* GPUImageUtil.h */, + C9EBA38B61A3AEC600000000 /* IOSTarget.cpp */, + C9EBA38B43942A7E00000000 /* IOSTarget.hpp */, + C9EBA38BB5D3975C00000000 /* OpipeDispatch.cpp */, + C9EBA38BB23861FD00000000 /* OpipeDispatch.hpp */, + C9EBA38BCC9C82C200000000 /* Ref.cpp */, + C9EBA38B76FEEF7C00000000 /* Ref.hpp */, + C9EBA38BB70D8FD100000000 /* Source.cpp */, + C9EBA38BDE99597300000000 /* Source.hpp */, + C9EBA38B2A58F18200000000 /* SourceCamera.cpp */, + C9EBA38BF60BB7D400000000 /* SourceCamera.hpp */, + C9EBA38BDEA0293C00000000 /* SourceImage.cpp */, + C9EBA38B5248E6C500000000 /* SourceImage.hpp */, + C9EBA38BF121E6F100000000 /* Target.cpp */, + C9EBA38B0C10746800000000 /* Target.hpp */, + C9EBA38B167968C300000000 /* TargetView.cpp */, + C9EBA38B6C2D12C800000000 /* TargetView.hpp */, + C9EBA38B5B295F7500000000 /* dispatch_queue.cpp */, + C9EBA38BC94F5F5A00000000 /* dispatch_queue.h */, + EF9FD80E3E7FC6D200000000 /* math */, + C9EBA38BAE5D302600000000 /* math.cpp */, + C9EBA38BD82DB00300000000 /* math.hpp */, + ); + name = core; + sourceTree = ""; + }; + EF9FD80E3B0C529400000000 /* Products */ = { + isa = PBXGroup; + children = ( + EF9FD80E557BBF4F00000000 /* Indexer */, + C9EBA38BC2D4982400000000 /* OlaFaceUnityFramework.framework */, + EF9FD80E1F58424400000000 /* bazel-tulsi-includes */, + C9EBA38B2D84D71E00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, ); name = Products; sourceTree = ""; }; - B6073D51F77EA18700000000 /* util */ = { + EF9FD80E3E7FC6D200000000 /* math */ = { isa = PBXGroup; children = ( - 8F62469E34B8327500000000 /* BUILD */, - 8F62469E9E41D6ED00000000 /* annotation_overlay_calculator.cc */, - 8F62469EFB24DFE200000000 /* association_calculator.h */, - 8F62469EE46A0E9300000000 /* association_norm_rect_calculator.cc */, - 8F62469E841EB37B00000000 /* collection_has_min_size_calculator.cc */, - 8F62469E0FFB16DF00000000 /* collection_has_min_size_calculator.h */, - 8F62469E61F8D8DE00000000 /* detection_projection_calculator.cc */, - 8F62469EA1639D0C00000000 /* detections_to_rects_calculator.cc */, - 8F62469E3087FAEC00000000 /* detections_to_rects_calculator.h */, - 8F62469EBED4CA2400000000 /* detections_to_render_data_calculator.cc */, - 8F62469EA0A3B78B00000000 /* landmark_projection_calculator.cc */, - 8F62469ECCE7F65F00000000 /* landmarks_refinement_calculator.cc */, - 8F62469E3D8600BC00000000 /* landmarks_refinement_calculator.h */, - 8F62469E13423C4400000000 /* landmarks_to_detection_calculator.cc */, - 8F62469EBC1DF28100000000 /* landmarks_to_render_data_calculator.cc */, - 8F62469E7EE2407B00000000 /* landmarks_to_render_data_calculator.h */, - 8F62469E8F068F4700000000 /* local_file_contents_calculator.cc */, - 8F62469E0C5B6D7000000000 /* non_max_suppression_calculator.cc */, - 8F62469E259898F600000000 /* rect_to_render_data_calculator.cc */, - 8F62469E6D2A8B0300000000 /* rect_transformation_calculator.cc */, - 8F62469EBCE7858600000000 /* thresholding_calculator.cc */, - 8F62469E69D807EA00000000 /* to_image_calculator.cc */, + C9EBA38BFAE7643A00000000 /* BUILD */, + C9EBA38B193619E800000000 /* mat4.cpp */, + C9EBA38B3EAEF34300000000 /* mat4.hpp */, + C9EBA38BB64F41C700000000 /* mat4.inl */, + C9EBA38B97A291BC00000000 /* math_utils.cpp */, + C9EBA38B3175A4CA00000000 /* math_utils.hpp */, + C9EBA38BBB7F30E700000000 /* vec2.cpp */, + C9EBA38B1EEDAAB700000000 /* vec2.hpp */, + C9EBA38B93B4871400000000 /* vec2.inl */, + C9EBA38B5C1877A600000000 /* vec3.cpp */, + C9EBA38B1B912E1800000000 /* vec3.hpp */, + C9EBA38B2FC8C29700000000 /* vec3.inl */, + C9EBA38B39E5E8A600000000 /* vec4.cpp */, + C9EBA38BBE2A34B700000000 /* vec4.hpp */, + C9EBA38B196A5D6B00000000 /* vec4.inl */, + ); + name = math; + sourceTree = ""; + }; + EF9FD80E3F862A6000000000 /* face_detection */ = { + isa = PBXGroup; + children = ( + C9EBA38B0D1A45BA00000000 /* BUILD */, + C9EBA38B38A4F6AD00000000 /* face_detection_short_range.tflite */, + ); + name = face_detection; + sourceTree = ""; + }; + EF9FD80E46951C4E00000000 /* face_landmark */ = { + isa = PBXGroup; + children = ( + C9EBA38BF803EBB100000000 /* BUILD */, + C9EBA38B7D35C3EB00000000 /* face_landmark_with_attention.tflite */, + ); + name = face_landmark; + sourceTree = ""; + }; + EF9FD80E535674FA00000000 /* module */ = { + isa = PBXGroup; + children = ( + EF9FD80E66AE847500000000 /* beauty */, + ); + name = module; + sourceTree = ""; + }; + EF9FD80E535674FA00000001 /* module */ = { + isa = PBXGroup; + children = ( + EF9FD80E66AE847500000001 /* beauty */, + EF9FD80ED817D17100000000 /* common */, + ); + name = module; + sourceTree = ""; + }; + EF9FD80E557BBF4F00000000 /* Indexer */ = { + isa = PBXGroup; + children = ( + C9EBA38B4C65DBEC00000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a */, + C9EBA38B195209B400000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a */, + C9EBA38B163FFCB200000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a */, + C9EBA38B434A7C7E00000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a */, + C9EBA38B33EF04E800000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a */, + C9EBA38BBCA54A3A00000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a */, + C9EBA38B1505E2FA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a */, + C9EBA38B6FA0708400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a */, + C9EBA38BF5C4F8A200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a */, + C9EBA38B856E889200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a */, + C9EBA38B831FD45C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a */, + C9EBA38B6D584F4C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a */, + C9EBA38B23DC8F5000000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a */, + C9EBA38B68F79D3600000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a */, + C9EBA38B72426CA600000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a */, + C9EBA38BFA091E5200000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a */, + C9EBA38B234C0F6C00000000 /* lib_idx_core_core-ios_B15523BE_ios_min11.0.a */, + C9EBA38BA33D624200000000 /* lib_idx_core_core-ios_B15523BE_ios_min15.5.a */, + C9EBA38BA679284000000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a */, + C9EBA38BA568C51600000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a */, + C9EBA38B78D51A7E00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a */, + C9EBA38BB84C5CCE00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a */, + C9EBA38BF7CED4EA00000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a */, + C9EBA38BFB4ACA3400000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a */, + C9EBA38B2748771000000000 /* lib_idx_file_path_740566D4_ios_min11.0.a */, + C9EBA38BD4F269EE00000000 /* lib_idx_file_path_740566D4_ios_min15.5.a */, + C9EBA38B420B582E00000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a */, + C9EBA38B1302D6E800000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a */, + C9EBA38B8B6DC24E00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a */, + C9EBA38B49F24B8A00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a */, + C9EBA38B3B18B64A00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a */, + C9EBA38B226657AA00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a */, + C9EBA38B76BC0CD600000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a */, + C9EBA38BA629C1E800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a */, + C9EBA38B54A66D1C00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a */, + C9EBA38B629012EE00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a */, + C9EBA38BA0E750B200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a */, + C9EBA38B2D64C76200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a */, + C9EBA38B729B09E400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a */, + C9EBA38BD0FA2A8400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a */, + C9EBA38BBAF897E200000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a */, + C9EBA38B39AFE7EC00000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a */, + C9EBA38BA0CAC80600000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a */, + C9EBA38B099B45E200000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a */, + C9EBA38B5762E32800000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a */, + C9EBA38B132FBD2C00000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a */, + C9EBA38BBBC10FE200000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a */, + C9EBA38B2D873AE800000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a */, + C9EBA38B28C3D43800000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a */, + C9EBA38B7A752E9000000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a */, + C9EBA38B6919418400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a */, + C9EBA38B55851C0600000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a */, + C9EBA38B85ADE62E00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a */, + C9EBA38BAA9B127200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a */, + C9EBA38BA6E657AE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a */, + C9EBA38B0F8DACCE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a */, + C9EBA38B2255DF3600000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a */, + C9EBA38B68726D3200000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a */, + C9EBA38B577ED22A00000000 /* lib_idx_math_8C8F00BB_ios_min11.0.a */, + C9EBA38B5D88C1C400000000 /* lib_idx_math_8C8F00BB_ios_min15.5.a */, + C9EBA38BA6892EDC00000000 /* lib_idx_matrix_A43B592D_ios_min11.0.a */, + C9EBA38B1CE1D39200000000 /* lib_idx_matrix_A43B592D_ios_min15.5.a */, + C9EBA38BF0ED19A200000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a */, + C9EBA38BF010336C00000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a */, + C9EBA38B8FA98B6200000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a */, + C9EBA38B65A317A000000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a */, + C9EBA38BD7539B8400000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a */, + C9EBA38BB9A2F8CA00000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a */, + C9EBA38B7CF3974400000000 /* lib_idx_olamodule_common_library_511040E9_ios_min11.0.a */, + C9EBA38B83FAA32800000000 /* lib_idx_olamodule_common_library_511040E9_ios_min15.5.a */, + C9EBA38B21F5DD7400000000 /* lib_idx_op_resolver_72040923_ios_min11.0.a */, + C9EBA38BFE962B8A00000000 /* lib_idx_op_resolver_72040923_ios_min15.5.a */, + C9EBA38BC697AAFA00000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a */, + C9EBA38B0C2B90A200000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a */, + C9EBA38BD6BF7A0C00000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a */, + C9EBA38B0708921600000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a */, + C9EBA38BE8AA1C7C00000000 /* lib_idx_profiler_resource_util_09647121_ios_min11.0.a */, + C9EBA38B3318179600000000 /* lib_idx_profiler_resource_util_09647121_ios_min15.5.a */, + C9EBA38BF4C6B57E00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a */, + C9EBA38BDAE1885C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a */, + C9EBA38BF74A8D4000000000 /* lib_idx_resource_util_DF96AF63_ios_min11.0.a */, + C9EBA38BD32E42E600000000 /* lib_idx_resource_util_DF96AF63_ios_min15.5.a */, + C9EBA38BBE50ED1A00000000 /* lib_idx_shader_util_6E7BE0E8_ios_min11.0.a */, + C9EBA38B67CBA0C400000000 /* lib_idx_shader_util_6E7BE0E8_ios_min15.5.a */, + C9EBA38BA6F9610E00000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a */, + C9EBA38BB9EC9D4800000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a */, + C9EBA38BF506777200000000 /* lib_idx_tensor_3731EC48_ios_min11.0.a */, + C9EBA38B8A51A90C00000000 /* lib_idx_tensor_3731EC48_ios_min15.5.a */, + C9EBA38B879D222200000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a */, + C9EBA38B7C73EE9A00000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a */, + C9EBA38B1BA8AC3A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a */, + C9EBA38B3B1F172200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a */, + C9EBA38BAFDA2DAC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a */, + C9EBA38B29F009D000000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a */, + C9EBA38B699CC77A00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a */, + C9EBA38B29E5D2BC00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a */, + C9EBA38BFCAD13AA00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min11.0.a */, + C9EBA38B099C3AEC00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min15.5.a */, + C9EBA38BA4EA8B5400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a */, + C9EBA38BA952909800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a */, + C9EBA38BF381D01A00000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a */, + C9EBA38B01385DD800000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a */, + C9EBA38BE91AE08600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a */, + C9EBA38B323D0BEE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a */, + C9EBA38B26507A8400000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a */, + C9EBA38B9983007000000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a */, + C9EBA38BDD48277C00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a */, + C9EBA38B1D65549A00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a */, + C9EBA38B3799B02A00000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a */, + C9EBA38B7E0C41A600000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a */, + ); + name = Indexer; + sourceTree = ""; + }; + EF9FD80E66AE847500000000 /* beauty */ = { + isa = PBXGroup; + children = ( + EF9FD80E1BE04FFB00000000 /* ios */, + ); + name = beauty; + sourceTree = ""; + }; + EF9FD80E66AE847500000001 /* beauty */ = { + isa = PBXGroup; + children = ( + C9EBA38BA7F8D88F00000000 /* BUILD */, + C9EBA38B0E5CBB7200000000 /* face_mesh_beauty_render.cc */, + C9EBA38B586F6F7B00000000 /* face_mesh_beauty_render.h */, + C9EBA38B896EA7BE00000000 /* face_mesh_module.cc */, + C9EBA38B461E3D9A00000000 /* face_mesh_module.h */, + C9EBA38B3FC5991E00000000 /* face_mesh_module_imp.cc */, + C9EBA38B0D0B97D900000000 /* face_mesh_module_imp.h */, + EF9FD80E1BE04FFB00000001 /* ios */, + ); + name = beauty; + sourceTree = ""; + }; + EF9FD80E69DC5A4500000000 /* x */ = { + isa = PBXGroup; + children = ( + EF9FD80E69DC5A4500000001 /* x */, + ); + name = x; + sourceTree = ""; + }; + EF9FD80E69DC5A4500000001 /* x */ = { + isa = PBXGroup; + children = ( + EF9FD80EDC4E3BAE00000000 /* mediapipe */, + ); + name = x; + sourceTree = ""; + }; + EF9FD80E7468D98F00000000 /* internal */ = { + isa = PBXGroup; + children = ( + C9EBA38B0389EBDF00000000 /* BUILD */, + C9EBA38B2E51696100000000 /* callback_packet_calculator.cc */, + ); + name = internal; + sourceTree = ""; + }; + EF9FD80E75D2EDE600000000 /* OlaFaceUnityFramework-intermediates */ = { + isa = PBXGroup; + children = ( + C9EBA38B78B48F9A00000000 /* Info.plist */, + ); + name = "OlaFaceUnityFramework-intermediates"; + sourceTree = ""; + }; + EF9FD80E8098345B00000000 /* formats */ = { + isa = PBXGroup; + children = ( + C9EBA38B94A5A5B700000000 /* BUILD */, + EF9FD80E0EF62AD900000000 /* annotation */, + C9EBA38BE807B54A00000000 /* image.cc */, + C9EBA38B4627F57600000000 /* image.h */, + C9EBA38BE7100B5A00000000 /* image_frame.cc */, + C9EBA38B64296FF400000000 /* image_frame.h */, + C9EBA38B71F9799600000000 /* image_frame_opencv.cc */, + C9EBA38BD42D824700000000 /* image_frame_opencv.h */, + C9EBA38B7111172300000000 /* image_opencv.cc */, + C9EBA38B4D127A8900000000 /* image_opencv.h */, + C9EBA38B43F1E68200000000 /* location.cc */, + C9EBA38B16C21D1D00000000 /* location.h */, + C9EBA38BBD9BA0EF00000000 /* matrix.cc */, + C9EBA38B2E8E019100000000 /* matrix.h */, + EF9FD80EAC761BBB00000000 /* object_detection */, + C9EBA38BA7A5495900000000 /* tensor.cc */, + C9EBA38B40A6E29700000000 /* tensor.h */, + C9EBA38BC04E125300000000 /* tensor_ahwb.cc */, + C9EBA38B2B400A9C00000000 /* video_stream_header.h */, + ); + name = formats; + sourceTree = ""; + }; + EF9FD80EA533306500000000 /* calculators */ = { + isa = PBXGroup; + children = ( + EF9FD80E39AD841D00000000 /* core */, + EF9FD80EBA3E964500000000 /* image */, + EF9FD80E7468D98F00000000 /* internal */, + EF9FD80E1981589B00000000 /* tensor */, + EF9FD80ECABB441000000000 /* tflite */, + EF9FD80EBD4E462900000000 /* util */, + ); + name = calculators; + sourceTree = ""; + }; + EF9FD80EA533306500000001 /* calculators */ = { + isa = PBXGroup; + children = ( + C9EBA38B5406C25000000000 /* BUILD */, + C9EBA38BE1457C5300000000 /* face_landmarks_to_render_data_calculator.cc */, + ); + name = calculators; + sourceTree = ""; + }; + EF9FD80EA57086CC00000000 /* modules */ = { + isa = PBXGroup; + children = ( + EF9FD80E3F862A6000000000 /* face_detection */, + EF9FD80E46951C4E00000000 /* face_landmark */, + ); + name = modules; + sourceTree = ""; + }; + EF9FD80EAC761BBB00000000 /* object_detection */ = { + isa = PBXGroup; + children = ( + C9EBA38B96E55FFB00000000 /* BUILD */, + ); + name = object_detection; + sourceTree = ""; + }; + EF9FD80EB464024900000000 /* framework */ = { + isa = PBXGroup; + children = ( + EF9FD80E75D2EDE600000000 /* OlaFaceUnityFramework-intermediates */, + ); + name = framework; + sourceTree = ""; + }; + EF9FD80EB464024900000001 /* framework */ = { + isa = PBXGroup; + children = ( + EF9FD80EDCA9B75400000000 /* api2 */, + EF9FD80E1B0AE62200000000 /* deps */, + EF9FD80E8098345B00000000 /* formats */, + EF9FD80E1BCC0C2D00000000 /* port */, + EF9FD80EFFBDEED000000000 /* profiler */, + EF9FD80E0073A1CF00000000 /* stream_handler */, + EF9FD80E0D0083D800000000 /* tool */, + ); + name = framework; + sourceTree = ""; + }; + EF9FD80EB464024900000002 /* framework */ = { + isa = PBXGroup; + children = ( + C9EBA38B67556E8A00000000 /* BUILD */, + C9EBA38B5295A06500000000 /* Info.plist */, + C9EBA38B3BEB289A00000000 /* OlaFaceUnity.h */, + C9EBA38B3EC5DCA500000000 /* OlaFaceUnity.mm */, + ); + name = framework; + sourceTree = ""; + }; + EF9FD80EBA3E964500000000 /* image */ = { + isa = PBXGroup; + children = ( + C9EBA38BFD0EBEF300000000 /* BUILD */, + C9EBA38B88B6477F00000000 /* image_properties_calculator.cc */, + ); + name = image; + sourceTree = ""; + }; + EF9FD80EBD4E462900000000 /* util */ = { + isa = PBXGroup; + children = ( + C9EBA38B15751DAA00000000 /* BUILD */, + C9EBA38B85095B6300000000 /* annotation_overlay_calculator.cc */, + C9EBA38B5350254B00000000 /* association_calculator.h */, + C9EBA38B6E1CB88E00000000 /* association_norm_rect_calculator.cc */, + C9EBA38B02700A4A00000000 /* collection_has_min_size_calculator.cc */, + C9EBA38BE607559C00000000 /* collection_has_min_size_calculator.h */, + C9EBA38B8E64823900000000 /* detection_projection_calculator.cc */, + C9EBA38BFE3D856E00000000 /* detections_to_rects_calculator.cc */, + C9EBA38B1417E4D200000000 /* detections_to_rects_calculator.h */, + C9EBA38B373C8B5300000000 /* detections_to_render_data_calculator.cc */, + C9EBA38B0640609100000000 /* landmark_projection_calculator.cc */, + C9EBA38B6A8EBE1E00000000 /* landmarks_refinement_calculator.cc */, + C9EBA38B5DC383CA00000000 /* landmarks_refinement_calculator.h */, + C9EBA38BB68AAB6100000000 /* landmarks_to_detection_calculator.cc */, + C9EBA38BAF808B4E00000000 /* landmarks_to_render_data_calculator.cc */, + C9EBA38BAF84FD5B00000000 /* landmarks_to_render_data_calculator.h */, + C9EBA38BC730EFED00000000 /* local_file_contents_calculator.cc */, + C9EBA38B958571C200000000 /* non_max_suppression_calculator.cc */, + C9EBA38B97D6686E00000000 /* rect_to_render_data_calculator.cc */, + C9EBA38BA5D40D5600000000 /* rect_transformation_calculator.cc */, + C9EBA38B7334328E00000000 /* thresholding_calculator.cc */, + C9EBA38BC82837B100000000 /* to_image_calculator.cc */, ); name = util; sourceTree = ""; }; - B6073D51F77EA18700000001 /* util */ = { + EF9FD80EBD4E462900000001 /* util */ = { isa = PBXGroup; children = ( - 8F62469EF31678B900000000 /* BUILD */, - 8F62469E1E08E4F200000000 /* annotation_renderer.cc */, - 8F62469EE270DE8600000000 /* annotation_renderer.h */, - 8F62469E53F441A800000000 /* cpu_util.cc */, - 8F62469E1B33088D00000000 /* cpu_util.h */, - 8F62469E3FEF732500000000 /* header_util.cc */, - 8F62469E482738F100000000 /* header_util.h */, - 8F62469E60EAFF9D00000000 /* rectangle_util.cc */, - 8F62469EB21A509200000000 /* rectangle_util.h */, - 8F62469EEC679CE200000000 /* resource_cache.h */, - 8F62469E5D4491B500000000 /* resource_util.cc */, - 8F62469E8EEB36F900000000 /* resource_util.h */, - 8F62469E99A19E9200000000 /* resource_util_apple.cc */, - 8F62469E6E23461400000000 /* resource_util_custom.h */, - 8F62469E758378C800000000 /* resource_util_internal.h */, - B6073D5144FF67A600000001 /* tflite */, + C9EBA38B46DF6A4400000000 /* BUILD */, + C9EBA38BCA41AC6F00000000 /* annotation_renderer.cc */, + C9EBA38BA383D63F00000000 /* annotation_renderer.h */, + C9EBA38B244E885E00000000 /* cpu_util.cc */, + C9EBA38B46113BED00000000 /* cpu_util.h */, + C9EBA38BEED97A0A00000000 /* header_util.cc */, + C9EBA38BAC1BF96E00000000 /* header_util.h */, + C9EBA38B0158CA5400000000 /* rectangle_util.cc */, + C9EBA38B3EE1F17000000000 /* rectangle_util.h */, + C9EBA38B18AD28B200000000 /* resource_cache.h */, + C9EBA38B65E57C6A00000000 /* resource_util.cc */, + C9EBA38B092D415200000000 /* resource_util.h */, + C9EBA38BEF9BE2D900000000 /* resource_util_apple.cc */, + C9EBA38B53F9CB0E00000000 /* resource_util_custom.h */, + C9EBA38B4D97960200000000 /* resource_util_internal.h */, + EF9FD80ECABB441000000001 /* tflite */, ); name = util; sourceTree = ""; }; - B6073D51F98D880A00000000 /* face_mesh */ = { + EF9FD80EBEDD857900000000 /* operations */ = { isa = PBXGroup; children = ( - 8F62469EDED8FF2900000000 /* BUILD */, - B6073D510BCCD63300000001 /* calculators */, - B6073D51CAE1C70700000000 /* subgraphs */, + C9EBA38BB59EF01500000000 /* BUILD */, + C9EBA38B1E91339000000000 /* landmarks_to_transform_matrix.cc */, + C9EBA38BB9D8CAAA00000000 /* landmarks_to_transform_matrix.h */, + C9EBA38B8BDC2B9600000000 /* max_pool_argmax.cc */, + C9EBA38B05926DC100000000 /* max_pool_argmax.h */, + C9EBA38BD2DBF16C00000000 /* max_unpooling.cc */, + C9EBA38BD4AFAC8E00000000 /* max_unpooling.h */, + C9EBA38BCCE4FA9600000000 /* transform_landmarks.cc */, + C9EBA38B08BF64AF00000000 /* transform_landmarks.h */, + C9EBA38BC6F62DEE00000000 /* transform_tensor_bilinear.cc */, + C9EBA38BF3C6671D00000000 /* transform_tensor_bilinear.h */, + C9EBA38B6E2763AD00000000 /* transpose_conv_bias.cc */, + C9EBA38B35BDCF7300000000 /* transpose_conv_bias.h */, + ); + name = operations; + sourceTree = ""; + }; + EF9FD80ECABB441000000000 /* tflite */ = { + isa = PBXGroup; + children = ( + C9EBA38B004CB7C500000000 /* BUILD */, + C9EBA38B2EDD493A00000000 /* ssd_anchors_calculator.cc */, + C9EBA38B8F1A956900000000 /* tflite_custom_op_resolver_calculator.cc */, + C9EBA38BBB054CF600000000 /* tflite_model_calculator.cc */, + ); + name = tflite; + sourceTree = ""; + }; + EF9FD80ECABB441000000001 /* tflite */ = { + isa = PBXGroup; + children = ( + C9EBA38BC9840E9900000000 /* BUILD */, + C9EBA38BBDEE69CE00000000 /* config.h */, + C9EBA38B3D8CDBA400000000 /* cpu_op_resolver.cc */, + C9EBA38B3F10F82C00000000 /* cpu_op_resolver.h */, + C9EBA38BAA3DAAFE00000000 /* op_resolver.cc */, + C9EBA38BBCD7F8FB00000000 /* op_resolver.h */, + EF9FD80EBEDD857900000000 /* operations */, + C9EBA38B54C7579B00000000 /* tflite_model_loader.cc */, + C9EBA38B4363C14800000000 /* tflite_model_loader.h */, + ); + name = tflite; + sourceTree = ""; + }; + EF9FD80ECD1385CA00000000 /* render */ = { + isa = PBXGroup; + children = ( + EF9FD80E535674FA00000000 /* module */, + ); + name = render; + sourceTree = ""; + }; + EF9FD80ECD1385CA00000001 /* render */ = { + isa = PBXGroup; + children = ( + EF9FD80E39AD841D00000001 /* core */, + EF9FD80E535674FA00000001 /* module */, + ); + name = render; + sourceTree = ""; + }; + EF9FD80ED817D17100000000 /* common */ = { + isa = PBXGroup; + children = ( + C9EBA38B761A81BD00000000 /* BUILD */, + C9EBA38B039C71CD00000000 /* ola_graph.cc */, + C9EBA38BFFA669C400000000 /* ola_graph.h */, + ); + name = common; + sourceTree = ""; + }; + EF9FD80EDC4E3BAE00000000 /* mediapipe */ = { + isa = PBXGroup; + children = ( + EF9FD80ECD1385CA00000000 /* render */, + ); + name = mediapipe; + sourceTree = ""; + }; + EF9FD80EDC4E3BAE00000001 /* mediapipe */ = { + isa = PBXGroup; + children = ( + EF9FD80EA533306500000000 /* calculators */, + EF9FD80EB464024900000001 /* framework */, + EF9FD80E0C0CF92C00000000 /* gpu */, + EF9FD80E2533FD0100000000 /* graphs */, + EF9FD80EA57086CC00000000 /* modules */, + EF9FD80E350DC15F00000000 /* objc */, + EF9FD80ECD1385CA00000001 /* render */, + EF9FD80EBD4E462900000001 /* util */, + ); + name = mediapipe; + sourceTree = ""; + }; + EF9FD80EDCA9B75400000000 /* api2 */ = { + isa = PBXGroup; + children = ( + C9EBA38BB96C60C700000000 /* BUILD */, + C9EBA38B4F3C878200000000 /* const_str.h */, + C9EBA38B485A0E0E00000000 /* contract.h */, + C9EBA38B9C74CB9200000000 /* node.cc */, + C9EBA38B2F17EFE600000000 /* node.h */, + C9EBA38B04AC366500000000 /* packet.cc */, + C9EBA38B06294FD900000000 /* packet.h */, + C9EBA38B8026FAEC00000000 /* port.h */, + C9EBA38BE38A2E1700000000 /* tag.h */, + C9EBA38BE26B5B8600000000 /* tuple.h */, + ); + name = api2; + sourceTree = ""; + }; + EF9FD80EE84AF1A800000000 /* face_mesh */ = { + isa = PBXGroup; + children = ( + C9EBA38B9EF2C99D00000000 /* BUILD */, + EF9FD80EA533306500000001 /* calculators */, + EF9FD80EF7C679DE00000000 /* subgraphs */, ); name = face_mesh; sourceTree = ""; }; - B6073D51FA77839C00000000 /* face_landmark */ = { + EF9FD80EF7C679DE00000000 /* subgraphs */ = { isa = PBXGroup; children = ( - 8F62469E915B5F1F00000000 /* BUILD */, - 8F62469E438E204A00000000 /* face_landmark_with_attention.tflite */, + C9EBA38BEFA8DA8100000000 /* BUILD */, ); - name = face_landmark; + name = subgraphs; + sourceTree = ""; + }; + EF9FD80EFF4B215D00000000 /* mainGroup */ = { + isa = PBXGroup; + children = ( + EF9FD80E3B0C529400000000 /* Products */, + EF9FD80EDC4E3BAE00000001 /* mediapipe */, + ); + name = mainGroup; + path = ../../../../../..; + sourceTree = SOURCE_ROOT; + }; + EF9FD80EFFBDEED000000000 /* profiler */ = { + isa = PBXGroup; + children = ( + C9EBA38BD42D49D900000000 /* BUILD */, + C9EBA38BE6F665F300000000 /* circular_buffer.h */, + C9EBA38B9ADB4E5D00000000 /* gl_context_profiler.cc */, + C9EBA38BD9CF443F00000000 /* graph_profiler.cc */, + C9EBA38B2A8C73DC00000000 /* graph_profiler.h */, + C9EBA38BC2F713F900000000 /* graph_tracer.cc */, + C9EBA38B6A77331700000000 /* graph_tracer.h */, + C9EBA38B0D76383B00000000 /* profiler_resource_util.h */, + C9EBA38B5E64B57D00000000 /* profiler_resource_util_common.cc */, + C9EBA38B794C398A00000000 /* profiler_resource_util_ios.cc */, + C9EBA38B61331D3300000000 /* sharded_map.h */, + C9EBA38B44FB42D500000000 /* trace_buffer.h */, + C9EBA38B8C0A8DE100000000 /* trace_builder.cc */, + C9EBA38B4D5AE90800000000 /* trace_builder.h */, + ); + name = profiler; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXLegacyTarget section */ - 281DB351B67384D000000000 /* _bazel_clean_ */ = { + B7165AA05082EB1400000000 /* _bazel_clean_ */ = { isa = PBXLegacyTarget; buildArgumentsString = "\"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" \"bazel-bin\""; - buildConfigurationList = D31CF1F5B5CDCA6B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; + buildConfigurationList = D99810919BA3324F00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; buildPhases = ( ); buildToolPath = "${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_clean.sh"; - buildWorkingDirectory = "${SRCROOT}/../../../../.."; + buildWorkingDirectory = "${SRCROOT}/../../../../../.."; dependencies = ( ); name = _bazel_clean_; @@ -1590,1729 +2276,2207 @@ /* End PBXLegacyTarget section */ /* Begin PBXNativeTarget section */ - D50916B904A520C200000000 /* _idx_math_661952D5_ios_min11.0 */ = { + 87427C8C0035FDA800000000 /* _idx_op_resolver_72040923_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */; + buildConfigurationList = D99810913FFA433000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_72040923_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000017 /* Sources */, + F7F99A12000000000000005F /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_math_661952D5_ios_min11.0; - productName = _idx_math_661952D5_ios_min11.0; - productReference = 8F62469E3216363400000000 /* lib_idx_math_661952D5_ios_min11.0.a */; + name = _idx_op_resolver_72040923_ios_min15.5; + productName = _idx_op_resolver_72040923_ios_min15.5; + productReference = C9EBA38BFE962B8A00000000 /* lib_idx_op_resolver_72040923_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B90A556C3000000000 /* _idx_util_66001351_ios_min11.0 */ = { + 87427C8C01E3AB2200000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */; + buildConfigurationList = D9981091DB04ACBE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000004 /* Sources */, + F7F99A12000000000000000A /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6D76329A9300000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */, ); - name = _idx_util_66001351_ios_min11.0; - productName = _idx_util_66001351_ios_min11.0; - productReference = 8F62469EE10D2C8600000000 /* lib_idx_util_66001351_ios_min11.0.a */; + name = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5; + productName = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5; + productReference = C9EBA38B2D64C76200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B90B74D91800000000 /* _idx_tflite_model_loader_6F62D289_ios_min11.0 */ = { + 87427C8C0347AF6A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */; + buildConfigurationList = D9981091FF8764C900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000041 /* Sources */, + F7F99A120000000000000057 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194508C82B9EF00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D48ADE3E100000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + C40BEB6DA79D913F00000000 /* PBXTargetDependency */, + C40BEB6DEE33FDCD00000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, ); - name = _idx_tflite_model_loader_6F62D289_ios_min11.0; - productName = _idx_tflite_model_loader_6F62D289_ios_min11.0; - productReference = 8F62469E10E53D4400000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min11.0.a */; + name = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5; + productName = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5; + productReference = C9EBA38BAA9B127200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B90BC1B1C600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0 */ = { + 87427C8C03E7714800000000 /* _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */; + buildConfigurationList = D9981091869EC67200000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000050 /* Sources */, + F7F99A120000000000000024 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC1C7634100000000 /* PBXTargetDependency */, + C40BEB6D79100D3300000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6D5A1C6C0300000000 /* PBXTargetDependency */, + C40BEB6DB9ED489100000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6D580182BB00000000 /* PBXTargetDependency */, ); - name = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; - productName = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; - productReference = 8F62469E2451D66600000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0.a */; + name = _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0; + productName = _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0; + productReference = C9EBA38BF5C4F8A200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B91241B0E400000000 /* _idx_inference_calculator_metal_65084AC7_ios_min11.0 */ = { + 87427C8C06BB38E200000000 /* _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */; + buildConfigurationList = D9981091DA39229C00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000046 /* Sources */, + F7F99A12000000000000004C /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194507E562BDF00000000 /* PBXTargetDependency */, - C871945014B7442B00000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C8719450FB58229B00000000 /* PBXTargetDependency */, - C87194504C962DED00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6DD423849F00000000 /* PBXTargetDependency */, + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, ); - name = _idx_inference_calculator_metal_65084AC7_ios_min11.0; - productName = _idx_inference_calculator_metal_65084AC7_ios_min11.0; - productReference = 8F62469ED92E9DBA00000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min11.0.a */; + name = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0; + productName = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0; + productReference = C9EBA38B5762E32800000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B914B7442A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0 */ = { + 87427C8C08B637CE00000000 /* _idx_detection_projection_calculator_C563E307_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */; + buildConfigurationList = D998109109DE8CA100000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_C563E307_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000040 /* Sources */, + F7F99A120000000000000041 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BCE0083900000000 /* PBXTargetDependency */, - C87194500B74D91900000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DEE88637900000000 /* PBXTargetDependency */, ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; - productReference = 8F62469EEB12474400000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0.a */; + name = _idx_detection_projection_calculator_C563E307_ios_min15.5; + productName = _idx_detection_projection_calculator_C563E307_ios_min15.5; + productReference = C9EBA38BB84C5CCE00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B916C7A06E00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0 */ = { + 87427C8C097345B200000000 /* _idx_profiler_resource_util_09647121_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */; + buildConfigurationList = D9981091A37CEAED00000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_09647121_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000039 /* Sources */, + F7F99A120000000000000053 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0BF0DE7F00000000 /* PBXTargetDependency */, ); - name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - productReference = 8F62469E3FBDA1BA00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0.a */; + name = _idx_profiler_resource_util_09647121_ios_min15.5; + productName = _idx_profiler_resource_util_09647121_ios_min15.5; + productReference = C9EBA38B3318179600000000 /* lib_idx_profiler_resource_util_09647121_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B917CF694E00000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5 */ = { + 87427C8C0BD0A8F800000000 /* _idx_tensors_to_detections_calculator_714B0603_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F53F42AD4900000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5" */; + buildConfigurationList = D998109153F1102500000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_714B0603_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000029 /* Sources */, + F7F99A120000000000000065 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0BF0DE7F00000000 /* PBXTargetDependency */, + C40BEB6DEE88637900000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, ); - name = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; - productName = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; - productReference = 8F62469E9A67603600000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5.a */; + name = _idx_tensors_to_detections_calculator_714B0603_ios_min15.5; + productName = _idx_tensors_to_detections_calculator_714B0603_ios_min15.5; + productReference = C9EBA38B7C73EE9A00000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B91918237600000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5 */ = { + 87427C8C0BF0DE7E00000000 /* _idx_file_path_740566D4_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */; + buildConfigurationList = D9981091206851E700000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_740566D4_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000026 /* Sources */, + F7F99A120000000000000019 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; - productName = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; - productReference = 8F62469EC9964E7600000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5.a */; + name = _idx_file_path_740566D4_ios_min15.5; + productName = _idx_file_path_740566D4_ios_min15.5; + productReference = C9EBA38BD4F269EE00000000 /* lib_idx_file_path_740566D4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B91AFB53CA00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5 */ = { + 87427C8C0FCF920600000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */; + buildConfigurationList = D99810910302B42000000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000007 /* Sources */, + F7F99A120000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450507BECC700000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6D997980BB00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; - productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; - productReference = 8F62469E2503320C00000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5.a */; + name = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0; + productName = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0; + productReference = C9EBA38BA0E750B200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B91B5AB1A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min11.0 */ = { + 87427C8C1AB81BE000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */; + buildConfigurationList = D9981091EE88913000000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000038 /* Sources */, + F7F99A12000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945016C7A06F00000000 /* PBXTargetDependency */, - C8719450DCA2423700000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; - productName = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; - productReference = 8F62469E49E053D400000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min11.0.a */; + name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5; + productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5; + productReference = C9EBA38B226657AA00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B91B6277A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min15.5 */ = { + 87427C8C1F62C35000000000 /* _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */; + buildConfigurationList = D9981091411383D300000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000003B /* Sources */, + F7F99A120000000000000004 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450B784310700000000 /* PBXTargetDependency */, - C87194505D80A99B00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; - productName = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; - productReference = 8F62469E68ACC6AC00000000 /* lib_idx_image_to_tensor_calculator_77E4634D_ios_min15.5.a */; + name = _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0; + productName = _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0; + productReference = C9EBA38B54A66D1C00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B925AA7A6000000000 /* _idx_begin_loop_calculator_55C0335F_ios_min15.5 */ = { + 87427C8C22E5C74400000000 /* _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */; + buildConfigurationList = D998109169CBC3AB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000002B /* Sources */, + F7F99A120000000000000036 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_55C0335F_ios_min15.5; - productName = _idx_begin_loop_calculator_55C0335F_ios_min15.5; - productReference = 8F62469E43C533AA00000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min15.5.a */; + name = _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0; + productName = _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0; + productReference = C9EBA38B72426CA600000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B92FCF8C3E00000000 /* _idx_cpu_util_D57AACFF_ios_min15.5 */ = { + 87427C8C24F9083800000000 /* _idx_MPPMetalUtil_B3671FB1_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */; + buildConfigurationList = D9981091D426111D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_B3671FB1_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000011 /* Sources */, + F7F99A12000000000000001A /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D9FE6425F00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_util_D57AACFF_ios_min15.5; - productName = _idx_cpu_util_D57AACFF_ios_min15.5; - productReference = 8F62469E808D9C3C00000000 /* lib_idx_cpu_util_D57AACFF_ios_min15.5.a */; + name = _idx_MPPMetalUtil_B3671FB1_ios_min11.0; + productName = _idx_MPPMetalUtil_B3671FB1_ios_min11.0; + productReference = C9EBA38B33EF04E800000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B932A4BF4A00000000 /* _idx_cpu_op_resolver_E63A3714_ios_min11.0 */ = { + 87427C8C27C7824800000000 /* _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */; + buildConfigurationList = D998109162ED070E00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000002E /* Sources */, + F7F99A120000000000000047 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450C415A01D00000000 /* PBXTargetDependency */, - C8719450F5035E2500000000 /* PBXTargetDependency */, - C8719450F5035E2500000000 /* PBXTargetDependency */, - C8719450F5035E2500000000 /* PBXTargetDependency */, - C8719450C415A01D00000000 /* PBXTargetDependency */, - C871945052EE187D00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_E63A3714_ios_min11.0; - productName = _idx_cpu_op_resolver_E63A3714_ios_min11.0; - productReference = 8F62469E029424C000000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min11.0.a */; + name = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0; + productName = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0; + productReference = C9EBA38B3799B02A00000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B932AD902000000000 /* _idx_cpu_op_resolver_E63A3714_ios_min15.5 */ = { + 87427C8C28AB0AE800000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */; + buildConfigurationList = D9981091F65CF7EF00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000032 /* Sources */, + F7F99A12000000000000000C /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945095D3064100000000 /* PBXTargetDependency */, - C871945095D3064100000000 /* PBXTargetDependency */, - C8719450D320929F00000000 /* PBXTargetDependency */, - C8719450D320929F00000000 /* PBXTargetDependency */, - C8719450600148FB00000000 /* PBXTargetDependency */, - C871945095D3064100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_E63A3714_ios_min15.5; - productName = _idx_cpu_op_resolver_E63A3714_ios_min15.5; - productReference = 8F62469E85ED468800000000 /* lib_idx_cpu_op_resolver_E63A3714_ios_min15.5.a */; + name = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5; + productName = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5; + productReference = C9EBA38BA629C1E800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9395CFE5000000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5 */ = { + 87427C8C28DDC73600000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */; + buildConfigurationList = D99810913E94124500000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000B /* Sources */, + F7F99A120000000000000010 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - productReference = 8F62469E98313BAC00000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5.a */; + name = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5; + productName = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5; + productReference = C9EBA38BDAE1885C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B939FF367E00000000 /* _idx_gl_calculator_helper_6AE62265_ios_min11.0 */ = { + 87427C8C2FFACE0200000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */; + buildConfigurationList = D99810918A85FF0400000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000022 /* Sources */, + F7F99A120000000000000020 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194509D198C3700000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C8719450EEDCEF1900000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBCA1C3700000000 /* PBXTargetDependency */, + C40BEB6DBB8FADF700000000 /* PBXTargetDependency */, ); - name = _idx_gl_calculator_helper_6AE62265_ios_min11.0; - productName = _idx_gl_calculator_helper_6AE62265_ios_min11.0; - productReference = 8F62469E75DC94FA00000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min11.0.a */; + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5; + productReference = C9EBA38B6FA0708400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B93C22A8D400000000 /* _idx_split_vector_calculator_73890910_ios_min11.0 */ = { + 87427C8C31D9088C00000000 /* _idx_math_8C8F00BB_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */; + buildConfigurationList = D99810911C0C0FF700000000 /* Build configuration list for PBXNativeTarget "_idx_math_8C8F00BB_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000004E /* Sources */, + F7F99A120000000000000023 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194508C82B9EF00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_split_vector_calculator_73890910_ios_min11.0; - productName = _idx_split_vector_calculator_73890910_ios_min11.0; - productReference = 8F62469EF3D7B8CE00000000 /* lib_idx_split_vector_calculator_73890910_ios_min11.0.a */; + name = _idx_math_8C8F00BB_ios_min15.5; + productName = _idx_math_8C8F00BB_ios_min15.5; + productReference = C9EBA38B5D88C1C400000000 /* lib_idx_math_8C8F00BB_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B93DC5F44400000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min11.0 */ = { + 87427C8C33F81C8A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */; + buildConfigurationList = D9981091864DBA6C00000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000001E /* Sources */, + F7F99A120000000000000050 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450EEDCEF1900000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C8719450ACE90FE300000000 /* PBXTargetDependency */, - C871945095AF928500000000 /* PBXTargetDependency */, - C871945039FF367F00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, + C40BEB6DFF3A799900000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, ); - name = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; - productName = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; - productReference = 8F62469EDF9B2B7600000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min11.0.a */; + name = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0; + productName = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0; + productReference = C9EBA38B6919418400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B940C1AF2200000000 /* OlaFaceUnityFramework */ = { + 87427C8C33FB39B600000000 /* _idx_tensor_3731EC48_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F71DCC4600000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; + buildConfigurationList = D99810910F27CFE500000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_3731EC48_ios_min15.5" */; buildPhases = ( - 6FB445172B7B339300000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */, + F7F99A12000000000000004A /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + ); + name = _idx_tensor_3731EC48_ios_min15.5; + productName = _idx_tensor_3731EC48_ios_min15.5; + productReference = C9EBA38B8A51A90C00000000 /* lib_idx_tensor_3731EC48_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C37E2E67200000000 /* _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810916D15DF3B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000004D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D48CB51D900000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5; + productName = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5; + productReference = C9EBA38B132FBD2C00000000 /* lib_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C3845B3B200000000 /* _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091BAF0032F00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000037 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5; + productName = _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5; + productReference = C9EBA38BFA091E5200000000 /* lib_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C3980F99000000000 /* _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810911999FB2700000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000002B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DD004C52900000000 /* PBXTargetDependency */, + C40BEB6D6DF286B700000000 /* PBXTargetDependency */, + C40BEB6DEE88637900000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D4F5ADAC500000000 /* PBXTargetDependency */, + C40BEB6DC8F97AE300000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5; + productName = _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5; + productReference = C9EBA38B856E889200000000 /* lib_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C4174C22600000000 /* _idx_split_vector_calculator_7B6F598A_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091E3CE41E000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_7B6F598A_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000062 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DAA9834EF00000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6DDDDFAF0700000000 /* PBXTargetDependency */, + ); + name = _idx_split_vector_calculator_7B6F598A_ios_min11.0; + productName = _idx_split_vector_calculator_7B6F598A_ios_min11.0; + productReference = C9EBA38BA6F9610E00000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C43703CBA00000000 /* _idx_transpose_conv_bias_EED10535_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810912DCC2CAD00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_EED10535_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000003F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_transpose_conv_bias_EED10535_ios_min15.5; + productName = _idx_transpose_conv_bias_EED10535_ios_min15.5; + productReference = C9EBA38B9983007000000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C47DB00A200000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810919EC6E6F100000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000001C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DE533974900000000 /* PBXTargetDependency */, + C40BEB6D7DD4FB7B00000000 /* PBXTargetDependency */, + ); + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0; + productReference = C9EBA38B1505E2FA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C48ADE3E000000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091176029AD00000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000004F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5; + productName = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5; + productReference = C9EBA38B7A752E9000000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C48CB51D800000000 /* _idx_MPPMetalHelper_D2A62E10_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091A662E89E00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D2A62E10_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000016 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DD847AEB500000000 /* PBXTargetDependency */, + ); + name = _idx_MPPMetalHelper_D2A62E10_ios_min15.5; + productName = _idx_MPPMetalHelper_D2A62E10_ios_min15.5; + productReference = C9EBA38B434A7C7E00000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C4F5ADAC400000000 /* _idx_annotation_renderer_FA9E6EC1_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091FD826E3500000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_FA9E6EC1_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000031 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_renderer_FA9E6EC1_ios_min15.5; + productName = _idx_annotation_renderer_FA9E6EC1_ios_min15.5; + productReference = C9EBA38B6D584F4C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5085DB6A00000000 /* _idx_file_helpers_cpu_util_D61E8025_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091D1F933E200000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_D61E8025_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000014 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DBCA3F97900000000 /* PBXTargetDependency */, + ); + name = _idx_file_helpers_cpu_util_D61E8025_ios_min11.0; + productName = _idx_file_helpers_cpu_util_D61E8025_ios_min11.0; + productReference = C9EBA38BF7CED4EA00000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C539639FE00000000 /* _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091C89B990800000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000000E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + ); + name = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5; + productName = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5; + productReference = C9EBA38B1D65549A00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5409991A00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810916FF763E900000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000006D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6DEDE504D100000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D6DF286B700000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6DEFD880E700000000 /* PBXTargetDependency */, + C40BEB6D48ADE3E100000000 /* PBXTargetDependency */, + ); + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5; + productReference = C9EBA38BA952909800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C55826B2C00000000 /* _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810914413412100000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000002E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + ); + name = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5; + productName = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5; + productReference = C9EBA38B39AFE7EC00000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C56483AC200000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109197C4688C00000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000007 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0; + productName = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0; + productReference = C9EBA38BF4C6B57E00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C57176BDA00000000 /* _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810910CE3F25B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000009 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + ); + name = _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5; + productName = _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5; + productReference = C9EBA38B195209B400000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C580182BA00000000 /* _idx_shader_util_6E7BE0E8_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091E679157200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_6E7BE0E8_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000028 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_shader_util_6E7BE0E8_ios_min11.0; + productName = _idx_shader_util_6E7BE0E8_ios_min11.0; + productReference = C9EBA38BBE50ED1A00000000 /* lib_idx_shader_util_6E7BE0E8_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5882B07C00000000 /* _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091DB81584100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000069 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D802AA98100000000 /* PBXTargetDependency */, + C40BEB6D0035FDA900000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5; + productName = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5; + productReference = C9EBA38B29F009D000000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5A1C6C0200000000 /* _idx_gl_calculator_helper_E72AAA43_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810914B1E2F8500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_E72AAA43_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000027 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D580182BB00000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */, + C40BEB6DAB71124700000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + ); + name = _idx_gl_calculator_helper_E72AAA43_ios_min11.0; + productName = _idx_gl_calculator_helper_E72AAA43_ios_min11.0; + productReference = C9EBA38B420B582E00000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5C6CD75200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810914E13061C00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000067 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5; + productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5; + productReference = C9EBA38B3B1F172200000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C5F3FBC0400000000 /* _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091799ADB2000000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000048 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D6658E6D100000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5; + productName = _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5; + productReference = C9EBA38B099B45E200000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6100F87600000000 /* _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091142589D000000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000068 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D7D10E9D700000000 /* PBXTargetDependency */, + C40BEB6DEB9CEB5B00000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0; + productName = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0; + productReference = C9EBA38BAFDA2DAC00000000 /* lib_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6469C0B600000000 /* _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810911D825F4A00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000000 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + ); + name = _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0; + productName = _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0; + productReference = C9EBA38B4C65DBEC00000000 /* lib_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6658E6D000000000 /* _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091F7CAE12F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000004B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D715EEB8700000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5; + productName = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5; + productReference = C9EBA38B2D873AE800000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C669C403400000000 /* _idx_transpose_conv_bias_EED10535_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091978D555A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_EED10535_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000003B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_transpose_conv_bias_EED10535_ios_min11.0; + productName = _idx_transpose_conv_bias_EED10535_ios_min11.0; + productReference = C9EBA38B26507A8400000000 /* lib_idx_transpose_conv_bias_EED10535_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C689B7C4C00000000 /* _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109158B7163200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000049 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + ); + name = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5; + productName = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5; + productReference = C9EBA38B7E0C41A600000000 /* lib_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6A79088C00000000 /* _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810910F480EC100000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000003D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5; + productName = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5; + productReference = C9EBA38BF010336C00000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6A87892C00000000 /* _idx_detection_projection_calculator_C563E307_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810912F68F34600000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_C563E307_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000040 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC1C7634100000000 /* PBXTargetDependency */, + ); + name = _idx_detection_projection_calculator_C563E307_ios_min11.0; + productName = _idx_detection_projection_calculator_C563E307_ios_min11.0; + productReference = C9EBA38B78D51A7E00000000 /* lib_idx_detection_projection_calculator_C563E307_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C6DF286B600000000 /* _idx_gl_calculator_helper_E72AAA43_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091E392089F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_E72AAA43_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000002D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D55826B2D00000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6DC8F97AE300000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + ); + name = _idx_gl_calculator_helper_E72AAA43_ios_min15.5; + productName = _idx_gl_calculator_helper_E72AAA43_ios_min15.5; + productReference = C9EBA38B1302D6E800000000 /* lib_idx_gl_calculator_helper_E72AAA43_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C715EEB8600000000 /* _idx_image_opencv_0CCDA0DE_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091E6B321A000000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_0CCDA0DE_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000043 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + ); + name = _idx_image_opencv_0CCDA0DE_ios_min15.5; + productName = _idx_image_opencv_0CCDA0DE_ios_min15.5; + productReference = C9EBA38BD0FA2A8400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C7193C16200000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810915D7A317B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000054 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D5085DB6B00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6DFA5BFB6500000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6DA68E7D9300000000 /* PBXTargetDependency */, + ); + name = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0; + productName = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0; + productReference = C9EBA38B85ADE62E00000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C71F7BDE000000000 /* _idx_non_max_suppression_calculator_6019C843_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091FCB19BCE00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_6019C843_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000005D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DEE88637900000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + ); + name = _idx_non_max_suppression_calculator_6019C843_ios_min15.5; + productName = _idx_non_max_suppression_calculator_6019C843_ios_min15.5; + productReference = C9EBA38BB9A2F8CA00000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C76329A9200000000 /* _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810911B0E858400000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000011 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + ); + name = _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5; + productName = _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5; + productReference = C9EBA38B0C2B90A200000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C79100D3200000000 /* _idx_gl_simple_shaders_BB6C8515_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109144B6070C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_BB6C8515_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000026 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_gl_simple_shaders_BB6C8515_ios_min11.0; + productName = _idx_gl_simple_shaders_BB6C8515_ios_min11.0; + productReference = C9EBA38B8B6DC24E00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C79C4B16400000000 /* _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091F9A3A05500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000006A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0; + productName = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0; + productReference = C9EBA38B699CC77A00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C7D10E9D600000000 /* _idx_cpu_op_resolver_6A07387A_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109194D11C8600000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_6A07387A_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000038 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DA2D9738700000000 /* PBXTargetDependency */, + C40BEB6DA2D9738700000000 /* PBXTargetDependency */, + C40BEB6DB6FCDEBB00000000 /* PBXTargetDependency */, + C40BEB6D669C403500000000 /* PBXTargetDependency */, + C40BEB6DB6FCDEBB00000000 /* PBXTargetDependency */, + C40BEB6DB6FCDEBB00000000 /* PBXTargetDependency */, + ); + name = _idx_cpu_op_resolver_6A07387A_ios_min11.0; + productName = _idx_cpu_op_resolver_6A07387A_ios_min11.0; + productReference = C9EBA38BA679284000000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C7DD4FB7A00000000 /* _idx_core_core-ios_B15523BE_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091D7E4AE5400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_B15523BE_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000001E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D56483AC300000000 /* PBXTargetDependency */, + C40BEB6D56483AC300000000 /* PBXTargetDependency */, + C40BEB6D9DFAE61B00000000 /* PBXTargetDependency */, + C40BEB6D56483AC300000000 /* PBXTargetDependency */, + ); + name = "_idx_core_core-ios_B15523BE_ios_min11.0"; + productName = "_idx_core_core-ios_B15523BE_ios_min11.0"; + productReference = C9EBA38B234C0F6C00000000 /* lib_idx_core_core-ios_B15523BE_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C802AA98000000000 /* _idx_cpu_op_resolver_6A07387A_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091708F7EFC00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_6A07387A_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000003C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D6A79088D00000000 /* PBXTargetDependency */, + C40BEB6DC3E18DC300000000 /* PBXTargetDependency */, + C40BEB6D6A79088D00000000 /* PBXTargetDependency */, + C40BEB6DC3E18DC300000000 /* PBXTargetDependency */, + C40BEB6D43703CBB00000000 /* PBXTargetDependency */, + C40BEB6DC3E18DC300000000 /* PBXTargetDependency */, + ); + name = _idx_cpu_op_resolver_6A07387A_ios_min15.5; + productName = _idx_cpu_op_resolver_6A07387A_ios_min15.5; + productReference = C9EBA38BA568C51600000000 /* lib_idx_cpu_op_resolver_6A07387A_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C8158E20400000000 /* _idx_tensors_to_detections_calculator_714B0603_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091F164281500000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_714B0603_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000064 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DBCA3F97900000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6DC1C7634100000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_detections_calculator_714B0603_ios_min11.0; + productName = _idx_tensors_to_detections_calculator_714B0603_ios_min11.0; + productReference = C9EBA38B879D222200000000 /* lib_idx_tensors_to_detections_calculator_714B0603_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C85031B7A00000000 /* _idx_image_opencv_0CCDA0DE_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109145B9320D00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_0CCDA0DE_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000042 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + ); + name = _idx_image_opencv_0CCDA0DE_ios_min11.0; + productName = _idx_image_opencv_0CCDA0DE_ios_min11.0; + productReference = C9EBA38B729B09E400000000 /* lib_idx_image_opencv_0CCDA0DE_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C879D440600000000 /* _idx_inference_calculator_metal_1F21F8B4_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091C536DA4200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_1F21F8B4_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000005A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D9FE6425F00000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6DD423849F00000000 /* PBXTargetDependency */, + C40BEB6D7193C16300000000 /* PBXTargetDependency */, + C40BEB6D24F9083900000000 /* PBXTargetDependency */, + ); + name = _idx_inference_calculator_metal_1F21F8B4_ios_min11.0; + productName = _idx_inference_calculator_metal_1F21F8B4_ios_min11.0; + productReference = C9EBA38BA6E657AE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C9425E2A600000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109163A3DE0100000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */; + buildPhases = ( + 2D079B6E5BCCBBBC00000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; + productName = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; + productReference = C9EBA38B2D84D71E00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C997980BA00000000 /* _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810919DF2D70100000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000008 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + ); + name = _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0; + productName = _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0; + productReference = C9EBA38BC697AAFA00000000 /* lib_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C9DFAE61A00000000 /* _idx_math_8C8F00BB_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810913842ED6900000000 /* Build configuration list for PBXNativeTarget "_idx_math_8C8F00BB_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000001F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_math_8C8F00BB_ios_min11.0; + productName = _idx_math_8C8F00BB_ios_min11.0; + productReference = C9EBA38B577ED22A00000000 /* lib_idx_math_8C8F00BB_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8C9FE6425E00000000 /* _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810910602B4F900000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000013 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D6469C0B700000000 /* PBXTargetDependency */, + C40BEB6D5085DB6B00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6D997980BB00000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + ); + name = _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0; + productName = _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0; + productReference = C9EBA38B8FA98B6200000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CA15A40D600000000 /* _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091FCF8D36700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000006B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5; + productName = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5; + productReference = C9EBA38B29E5D2BC00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CA2D9738600000000 /* _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091279B4BE900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000039 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0; + productName = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0; + productReference = C9EBA38BF0ED19A200000000 /* lib_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CA68E7D9200000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810916F8D4BC800000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000004E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0; + productName = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0; + productReference = C9EBA38B28C3D43800000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CA79D913E00000000 /* _idx_file_helpers_cpu_util_D61E8025_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810916F0F249E00000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_D61E8025_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000018 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0BF0DE7F00000000 /* PBXTargetDependency */, + ); + name = _idx_file_helpers_cpu_util_D61E8025_ios_min15.5; + productName = _idx_file_helpers_cpu_util_D61E8025_ios_min15.5; + productReference = C9EBA38BFB4ACA3400000000 /* lib_idx_file_helpers_cpu_util_D61E8025_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CAA9834EE00000000 /* _idx_matrix_A43B592D_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810912BC63E5400000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_A43B592D_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000033 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_matrix_A43B592D_ios_min11.0; + productName = _idx_matrix_A43B592D_ios_min11.0; + productReference = C9EBA38BA6892EDC00000000 /* lib_idx_matrix_A43B592D_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CAB71124600000000 /* _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810919A40A36B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000029 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + ); + name = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0; + productName = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0; + productReference = C9EBA38BBAF897E200000000 /* lib_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CACB7412400000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810910A3A700000000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000052 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D097345B300000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */, + ); + name = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5; + productName = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5; + productReference = C9EBA38B55851C0600000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CACD174D600000000 /* _idx_matrix_A43B592D_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091FCAC757300000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_A43B592D_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000035 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_matrix_A43B592D_ios_min15.5; + productName = _idx_matrix_A43B592D_ios_min15.5; + productReference = C9EBA38B1CE1D39200000000 /* lib_idx_matrix_A43B592D_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CAF00409A00000000 /* _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810916F56B2AF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000044 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DCC1E0EB900000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0; + productName = _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0; + productReference = C9EBA38BA0CAC80600000000 /* lib_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CB6FCDEBA00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091D537BB5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000003A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0; + productReference = C9EBA38BE91AE08600000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CB9A5431C00000000 /* _idx_split_vector_calculator_7B6F598A_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810912280EE9F00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_7B6F598A_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000063 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DACD174D700000000 /* PBXTargetDependency */, + C40BEB6DEDE504D100000000 /* PBXTargetDependency */, + C40BEB6D33FB39B700000000 /* PBXTargetDependency */, + ); + name = _idx_split_vector_calculator_7B6F598A_ios_min15.5; + productName = _idx_split_vector_calculator_7B6F598A_ios_min15.5; + productReference = C9EBA38BB9EC9D4800000000 /* lib_idx_split_vector_calculator_7B6F598A_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CB9ED489000000000 /* _idx_annotation_renderer_FA9E6EC1_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109165F1D6E500000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_FA9E6EC1_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000002A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_renderer_FA9E6EC1_ios_min11.0; + productName = _idx_annotation_renderer_FA9E6EC1_ios_min11.0; + productReference = C9EBA38B831FD45C00000000 /* lib_idx_annotation_renderer_FA9E6EC1_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CBB8FADF600000000 /* _idx_core_core-ios_B15523BE_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091DBF901E900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_B15523BE_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000022 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D28DDC73700000000 /* PBXTargetDependency */, + C40BEB6D28DDC73700000000 /* PBXTargetDependency */, + C40BEB6D28DDC73700000000 /* PBXTargetDependency */, + C40BEB6D31D9088D00000000 /* PBXTargetDependency */, + ); + name = "_idx_core_core-ios_B15523BE_ios_min15.5"; + productName = "_idx_core_core-ios_B15523BE_ios_min15.5"; + productReference = C9EBA38BA33D624200000000 /* lib_idx_core_core-ios_B15523BE_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CBCA3F97800000000 /* _idx_file_path_740566D4_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091BC5C253800000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_740566D4_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000015 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_file_path_740566D4_ios_min11.0; + productName = _idx_file_path_740566D4_ios_min11.0; + productReference = C9EBA38B2748771000000000 /* lib_idx_file_path_740566D4_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CBD80EB0400000000 /* _idx_begin_loop_calculator_A45991B3_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091C63A488F00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_A45991B3_ios_min15.5" */; + buildPhases = ( + F7F99A120000000000000034 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DACD174D700000000 /* PBXTargetDependency */, + ); + name = _idx_begin_loop_calculator_A45991B3_ios_min15.5; + productName = _idx_begin_loop_calculator_A45991B3_ios_min15.5; + productReference = C9EBA38B68F79D3600000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CBEE4279200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109155CE49F000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000066 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + ); + name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0; + productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0; + productReference = C9EBA38B1BA8AC3A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC03B9B8400000000 /* _idx_begin_loop_calculator_A45991B3_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091F5BD61EF00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_A45991B3_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000032 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DAA9834EF00000000 /* PBXTargetDependency */, + ); + name = _idx_begin_loop_calculator_A45991B3_ios_min11.0; + productName = _idx_begin_loop_calculator_A45991B3_ios_min11.0; + productReference = C9EBA38B23DC8F5000000000 /* lib_idx_begin_loop_calculator_A45991B3_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC1C7634000000000 /* _idx_location_image_frame_opencv_31458695_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810910749761C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_31458695_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000025 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, + ); + name = _idx_location_image_frame_opencv_31458695_ios_min11.0; + productName = _idx_location_image_frame_opencv_31458695_ios_min11.0; + productReference = C9EBA38B2255DF3600000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC2A07FBC00000000 /* _idx_MPPMetalUtil_B3671FB1_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810914E739AB200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_B3671FB1_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000001B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DD847AEB500000000 /* PBXTargetDependency */, + ); + name = _idx_MPPMetalUtil_B3671FB1_ios_min15.5; + productName = _idx_MPPMetalUtil_B3671FB1_ios_min15.5; + productReference = C9EBA38BBCA54A3A00000000 /* lib_idx_MPPMetalUtil_B3671FB1_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC2B4F12E00000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091E914EDDA00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000000F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D28DDC73700000000 /* PBXTargetDependency */, + ); + name = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5; + productName = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5; + productReference = C9EBA38B01385DD800000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC3E18DC200000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810911E6D4C3000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000003E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5; + productReference = C9EBA38B323D0BEE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC56051F400000000 /* _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091A923FFDF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000000D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5; + productName = _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5; + productReference = C9EBA38B629012EE00000000 /* lib_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC6CB2F2600000000 /* _idx_non_max_suppression_calculator_6019C843_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109169624A4600000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_6019C843_ios_min11.0" */; + buildPhases = ( + F7F99A12000000000000005C /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC1C7634100000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + ); + name = _idx_non_max_suppression_calculator_6019C843_ios_min11.0; + productName = _idx_non_max_suppression_calculator_6019C843_ios_min11.0; + productReference = C9EBA38BD7539B8400000000 /* lib_idx_non_max_suppression_calculator_6019C843_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CC8F97AE200000000 /* _idx_shader_util_6E7BE0E8_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D99810915E611E0E00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_6E7BE0E8_ios_min15.5" */; + buildPhases = ( + F7F99A12000000000000002F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + ); + name = _idx_shader_util_6E7BE0E8_ios_min15.5; + productName = _idx_shader_util_6E7BE0E8_ios_min15.5; + productReference = C9EBA38B67CBA0C400000000 /* lib_idx_shader_util_6E7BE0E8_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CCBFA7B6C00000000 /* _idx_tensor_3731EC48_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091EA0D0B0700000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_3731EC48_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000046 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + ); + name = _idx_tensor_3731EC48_ios_min11.0; + productName = _idx_tensor_3731EC48_ios_min11.0; + productReference = C9EBA38BF506777200000000 /* lib_idx_tensor_3731EC48_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CCC1E0EB800000000 /* _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = D998109134E923F700000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0" */; + buildPhases = ( + F7F99A120000000000000045 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D85031B7B00000000 /* PBXTargetDependency */, + ); + name = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0; + productName = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0; + productReference = C9EBA38BBBC10FE200000000 /* lib_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + 87427C8CCEDD951E00000000 /* OlaFaceUnityFramework */ = { + isa = PBXNativeTarget; + buildConfigurationList = D9981091ABCAE6CE00000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; + buildPhases = ( + 2D079B6E8F688BF600000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */, + ); + buildRules = ( + ); + dependencies = ( + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); name = OlaFaceUnityFramework; productName = OlaFaceUnityFramework; - productReference = 8F62469E5B357FC400000000 /* OlaFaceUnityFramework.framework */; + productReference = C9EBA38BC2D4982400000000 /* OlaFaceUnityFramework.framework */; productType = "com.apple.product-type.framework"; }; - D50916B94683E49200000000 /* _idx_inference_calculator_metal_65084AC7_ios_min15.5 */ = { + 87427C8CD004C52800000000 /* _idx_gl_simple_shaders_BB6C8515_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */; + buildConfigurationList = D9981091F44D343A00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_BB6C8515_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000047 /* Sources */, + F7F99A12000000000000002C /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450D3EB570900000000 /* PBXTargetDependency */, - C8719450A5AC836500000000 /* PBXTargetDependency */, - C87194508A94473900000000 /* PBXTargetDependency */, - C8719450CF5F5EE700000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_inference_calculator_metal_65084AC7_ios_min15.5; - productName = _idx_inference_calculator_metal_65084AC7_ios_min15.5; - productReference = 8F62469EFFA887E800000000 /* lib_idx_inference_calculator_metal_65084AC7_ios_min15.5.a */; + name = _idx_gl_simple_shaders_BB6C8515_ios_min15.5; + productName = _idx_gl_simple_shaders_BB6C8515_ios_min15.5; + productReference = C9EBA38B49F24B8A00000000 /* lib_idx_gl_simple_shaders_BB6C8515_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B94835E8D400000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5 */ = { + 87427C8CD423849E00000000 /* _idx_MPPMetalHelper_D2A62E10_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */; + buildConfigurationList = D99810919201492200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D2A62E10_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000004D /* Sources */, + F7F99A120000000000000012 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D9FE6425F00000000 /* PBXTargetDependency */, ); - name = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; - productName = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; - productReference = 8F62469E0CEA424A00000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5.a */; + name = _idx_MPPMetalHelper_D2A62E10_ios_min11.0; + productName = _idx_MPPMetalHelper_D2A62E10_ios_min11.0; + productReference = C9EBA38B163FFCB200000000 /* lib_idx_MPPMetalHelper_D2A62E10_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B94A6C65DE00000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min15.5 */ = { + 87427C8CD847AEB400000000 /* _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */; + buildConfigurationList = D998109123F31D3F00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000027 /* Sources */, + F7F99A120000000000000017 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DA79D913F00000000 /* PBXTargetDependency */, + C40BEB6D76329A9300000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D57176BDB00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; - productName = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; - productReference = 8F62469E9C12AC1000000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min15.5.a */; + name = _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5; + productName = _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5; + productReference = C9EBA38B65A317A000000000 /* lib_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B94C962DEC00000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min11.0 */ = { + 87427C8CDBCA1C3600000000 /* _idx_olamodule_common_library_511040E9_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */; + buildConfigurationList = D99810910D29619600000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_511040E9_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000000C /* Sources */, + F7F99A120000000000000021 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450FB58229B00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DA79D913F00000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */, + C40BEB6D76329A9300000000 /* PBXTargetDependency */, ); - name = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; - productName = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; - productReference = 8F62469E17399DDC00000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min11.0.a */; + name = _idx_olamodule_common_library_511040E9_ios_min15.5; + productName = _idx_olamodule_common_library_511040E9_ios_min15.5; + productReference = C9EBA38B83FAA32800000000 /* lib_idx_olamodule_common_library_511040E9_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B94E485F5400000000 /* _idx_split_vector_calculator_73890910_ios_min15.5 */ = { + 87427C8CDBEA0FF400000000 /* _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */; + buildConfigurationList = D998109167D1432700000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000004F /* Sources */, + F7F99A120000000000000005 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BAEEE68700000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, ); - name = _idx_split_vector_calculator_73890910_ios_min15.5; - productName = _idx_split_vector_calculator_73890910_ios_min15.5; - productReference = 8F62469EAF11437800000000 /* lib_idx_split_vector_calculator_73890910_ios_min15.5.a */; + name = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0; + productName = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0; + productReference = C9EBA38BDD48277C00000000 /* lib_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9507BECC600000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5 */ = { + 87427C8CDDDFAF0600000000 /* _idx_resource_util_DF96AF63_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */; + buildConfigurationList = D998109169C5557900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_DF96AF63_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000008 /* Sources */, + F7F99A120000000000000056 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DBCA3F97900000000 /* PBXTargetDependency */, ); - name = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; - productName = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; - productReference = 8F62469ED78C49CA00000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5.a */; + name = _idx_resource_util_DF96AF63_ios_min11.0; + productName = _idx_resource_util_DF96AF63_ios_min11.0; + productReference = C9EBA38BF74A8D4000000000 /* lib_idx_resource_util_DF96AF63_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9519E3A1A00000000 /* _idx_core_84469CC7_ios_min15.5 */ = { + 87427C8CE533974800000000 /* _idx_olamodule_common_library_511040E9_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F59109BFFD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min15.5" */; + buildConfigurationList = D99810919ED2F7CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_511040E9_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000001A /* Sources */, + F7F99A12000000000000001D /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - C8719450FD5CA03100000000 /* PBXTargetDependency */, - C8719450797718E700000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D5085DB6B00000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6DFE17E96100000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6D997980BB00000000 /* PBXTargetDependency */, ); - name = _idx_core_84469CC7_ios_min15.5; - productName = _idx_core_84469CC7_ios_min15.5; - productReference = 8F62469EF57314E600000000 /* lib_idx_core_84469CC7_ios_min15.5.a */; + name = _idx_olamodule_common_library_511040E9_ios_min11.0; + productName = _idx_olamodule_common_library_511040E9_ios_min11.0; + productReference = C9EBA38B7CF3974400000000 /* lib_idx_olamodule_common_library_511040E9_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B952EE187C00000000 /* _idx_transpose_conv_bias_94247583_ios_min11.0 */ = { + 87427C8CEB291B2800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */; + buildConfigurationList = D99810919CFA3F3B00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000031 /* Sources */, + F7F99A12000000000000006C /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D5A1C6C0300000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6DF6B8627B00000000 /* PBXTargetDependency */, + C40BEB6DDDDFAF0700000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6D27C7824900000000 /* PBXTargetDependency */, + C40BEB6DA68E7D9300000000 /* PBXTargetDependency */, ); - name = _idx_transpose_conv_bias_94247583_ios_min11.0; - productName = _idx_transpose_conv_bias_94247583_ios_min11.0; - productReference = 8F62469ECB93143800000000 /* lib_idx_transpose_conv_bias_94247583_ios_min11.0.a */; + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0; + productReference = C9EBA38BA4EA8B5400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B955A38FE400000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0 */ = { + 87427C8CEB9CEB5A00000000 /* _idx_op_resolver_72040923_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */; + buildConfigurationList = D998109144863A9700000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_72040923_ios_min11.0" */; buildPhases = ( - 3E7AC1A6000000000000003E /* Sources */, + F7F99A12000000000000005E /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945016C7A06F00000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - C87194504C962DED00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, ); - name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; - productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; - productReference = 8F62469E741FC72000000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0.a */; + name = _idx_op_resolver_72040923_ios_min11.0; + productName = _idx_op_resolver_72040923_ios_min11.0; + productReference = C9EBA38B21F5DD7400000000 /* lib_idx_op_resolver_72040923_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B955AF4C6400000000 /* _idx_op_resolver_29CCF89E_ios_min11.0 */ = { + 87427C8CEDE504D000000000 /* _idx_resource_util_DF96AF63_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */; + buildConfigurationList = D998109158D446B100000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_DF96AF63_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000004A /* Sources */, + F7F99A120000000000000059 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D0BF0DE7F00000000 /* PBXTargetDependency */, ); - name = _idx_op_resolver_29CCF89E_ios_min11.0; - productName = _idx_op_resolver_29CCF89E_ios_min11.0; - productReference = 8F62469E9F01B81400000000 /* lib_idx_op_resolver_29CCF89E_ios_min11.0.a */; + name = _idx_resource_util_DF96AF63_ios_min15.5; + productName = _idx_resource_util_DF96AF63_ios_min15.5; + productReference = C9EBA38BD32E42E600000000 /* lib_idx_resource_util_DF96AF63_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B95728CE7C00000000 /* _idx_detection_projection_calculator_07107D71_ios_min15.5 */ = { + 87427C8CEE33FDCC00000000 /* _idx_tflite_model_loader_689F8605_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */; + buildConfigurationList = D9981091A5AD7FF900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_689F8605_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000037 /* Sources */, + F7F99A120000000000000058 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DEDE504D100000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, ); - name = _idx_detection_projection_calculator_07107D71_ios_min15.5; - productName = _idx_detection_projection_calculator_07107D71_ios_min15.5; - productReference = 8F62469E3FF92D1600000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min15.5.a */; + name = _idx_tflite_model_loader_689F8605_ios_min15.5; + productName = _idx_tflite_model_loader_689F8605_ios_min15.5; + productReference = C9EBA38B099C3AEC00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B95B3B8F3E00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5 */ = { + 87427C8CEE7F321C00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */; + buildConfigurationList = D99810917A7360E500000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000059 /* Sources */, + F7F99A120000000000000003 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194504835E8D500000000 /* PBXTargetDependency */, - C8719450BAEEE68700000000 /* PBXTargetDependency */, - C871945091B35B4700000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; - productReference = 8F62469E6F05DF7E00000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5.a */; + name = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0; + productName = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0; + productReference = C9EBA38B76BC0CD600000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B95D80A99A00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5 */ = { + 87427C8CEE88637800000000 /* _idx_location_image_frame_opencv_31458695_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */; + buildConfigurationList = D99810914F78F6AB00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_31458695_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000003D /* Sources */, + F7F99A120000000000000030 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + C40BEB6DC56051F500000000 /* PBXTargetDependency */, ); - name = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; - productName = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; - productReference = 8F62469ED2C19F4E00000000 /* lib_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5.a */; + name = _idx_location_image_frame_opencv_31458695_ios_min15.5; + productName = _idx_location_image_frame_opencv_31458695_ios_min15.5; + productReference = C9EBA38B68726D3200000000 /* lib_idx_location_image_frame_opencv_31458695_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B95D81488E00000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0 */ = { + 87427C8CEFD880E600000000 /* _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F52E13CF7C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0" */; + buildConfigurationList = D998109105C04A6100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5" */; buildPhases = ( - 3E7AC1A60000000000000014 /* Sources */, + F7F99A120000000000000061 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450DD40E3B300000000 /* PBXTargetDependency */, - C8719450D2C9CDB900000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */, + C40BEB6D539639FF00000000 /* PBXTargetDependency */, + C40BEB6D48ADE3E100000000 /* PBXTargetDependency */, ); - name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; - productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; - productReference = 8F62469ED3E77BD800000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0.a */; + name = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5; + productName = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5; + productReference = C9EBA38B0708921600000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B9600148FA00000000 /* _idx_transpose_conv_bias_94247583_ios_min15.5 */ = { + 87427C8CF0B5502C00000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */; + buildConfigurationList = D9981091CC28D9ED00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000035 /* Sources */, + F7F99A120000000000000006 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D56483AC300000000 /* PBXTargetDependency */, ); - name = _idx_transpose_conv_bias_94247583_ios_min15.5; - productName = _idx_transpose_conv_bias_94247583_ios_min15.5; - productReference = 8F62469EA94AD89E00000000 /* lib_idx_transpose_conv_bias_94247583_ios_min15.5.a */; + name = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0; + productName = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0; + productReference = C9EBA38BF381D01A00000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B960D0021C00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0 */ = { + 87427C8CF6B8627A00000000 /* _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */; + buildConfigurationList = D9981091C7B8402600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000001 /* Sources */, + F7F99A120000000000000060 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, - C871945080FCD45900000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */, + C40BEB6DA68E7D9300000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, ); - name = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; - productName = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; - productReference = 8F62469E67F72F7400000000 /* lib_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0.a */; + name = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0; + productName = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0; + productReference = C9EBA38BD6BF7A0C00000000 /* lib_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B966C0283200000000 /* _idx_begin_loop_calculator_55C0335F_ios_min11.0 */ = { + 87427C8CF9E04A0000000000 /* _idx_inference_calculator_metal_1F21F8B4_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */; + buildConfigurationList = D9981091B2B1AD4400000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_1F21F8B4_ios_min15.5" */; buildPhases = ( - 3E7AC1A6000000000000002A /* Sources */, + F7F99A12000000000000005B /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */, + C40BEB6D0347AF6B00000000 /* PBXTargetDependency */, + C40BEB6D48CB51D900000000 /* PBXTargetDependency */, + C40BEB6DC2A07FBD00000000 /* PBXTargetDependency */, + C40BEB6DD847AEB500000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_55C0335F_ios_min11.0; - productName = _idx_begin_loop_calculator_55C0335F_ios_min11.0; - productReference = 8F62469ED4FD547400000000 /* lib_idx_begin_loop_calculator_55C0335F_ios_min11.0.a */; + name = _idx_inference_calculator_metal_1F21F8B4_ios_min15.5; + productName = _idx_inference_calculator_metal_1F21F8B4_ios_min15.5; + productReference = C9EBA38B0F8DACCE00000000 /* lib_idx_inference_calculator_metal_1F21F8B4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - D50916B96D62510400000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0 */ = { + 87427C8CFA5BFB6400000000 /* _idx_tflite_model_loader_689F8605_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */; + buildConfigurationList = D9981091E34EC7A400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_689F8605_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000016 /* Sources */, + F7F99A120000000000000055 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, + C40BEB6DDDDFAF0700000000 /* PBXTargetDependency */, ); - name = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - productName = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - productReference = 8F62469EADA7E74800000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0.a */; + name = _idx_tflite_model_loader_689F8605_ios_min11.0; + productName = _idx_tflite_model_loader_689F8605_ios_min11.0; + productReference = C9EBA38BFCAD13AA00000000 /* lib_idx_tflite_model_loader_689F8605_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B97190044400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5 */ = { + 87427C8CFE17E96000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F569831F3800000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5" */; + buildConfigurationList = D9981091C7FF016200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000019 /* Sources */, + F7F99A120000000000000002 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450519E3A1B00000000 /* PBXTargetDependency */, - C8719450B474037D00000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */, + C40BEB6D1F62C35100000000 /* PBXTargetDependency */, + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */, + C40BEB6D0FCF920700000000 /* PBXTargetDependency */, + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */, ); - name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; - productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; - productReference = 8F62469EBEF81DBA00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5.a */; + name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0; + productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0; + productReference = C9EBA38B3B18B64A00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - D50916B97245140600000000 /* _idx_detection_projection_calculator_07107D71_ios_min11.0 */ = { + 87427C8CFF3A799800000000 /* _idx_profiler_resource_util_09647121_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */; + buildConfigurationList = D9981091F078F13D00000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_09647121_ios_min11.0" */; buildPhases = ( - 3E7AC1A60000000000000036 /* Sources */, + F7F99A120000000000000051 /* Sources */, ); buildRules = ( ); dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, + C40BEB6D5082EB1500000000 /* PBXTargetDependency */, + C40BEB6DBCA3F97900000000 /* PBXTargetDependency */, ); - name = _idx_detection_projection_calculator_07107D71_ios_min11.0; - productName = _idx_detection_projection_calculator_07107D71_ios_min11.0; - productReference = 8F62469ECE8AEA1800000000 /* lib_idx_detection_projection_calculator_07107D71_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9728267EC00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000054 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945055AF4C6500000000 /* PBXTargetDependency */, - C871945032A4BF4B00000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; - productName = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; - productReference = 8F62469E674B854C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B979337D3200000000 /* _idx_MPPGraphGPUData_DE328030_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000000 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPGraphGPUData_DE328030_ios_min11.0; - productName = _idx_MPPGraphGPUData_DE328030_ios_min11.0; - productReference = 8F62469ED1F0DC8C00000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9797718E600000000 /* _idx_math_661952D5_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000001C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_math_661952D5_ios_min15.5; - productName = _idx_math_661952D5_ios_min15.5; - productReference = 8F62469E64AF57E400000000 /* lib_idx_math_661952D5_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B97A50F2DE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000057 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; - productName = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; - productReference = 8F62469E07AA7C9800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B97A8A9E1600000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000002C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; - productName = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; - productReference = 8F62469EA6CEF2BC00000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B97E562BDE00000000 /* _idx_MPPMetalUtil_622319D3_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000012 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450FB58229B00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalUtil_622319D3_ios_min11.0; - productName = _idx_MPPMetalUtil_622319D3_ios_min11.0; - productReference = 8F62469E8F2DAC9800000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B980FCD45800000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C4CBD0A700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000005 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, - ); - name = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; - productName = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; - productReference = 8F62469E5202380400000000 /* lib_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9814C45F000000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000058 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945039FF367F00000000 /* PBXTargetDependency */, - C87194508AC3922B00000000 /* PBXTargetDependency */, - C87194508C82B9EF00000000 /* PBXTargetDependency */, - ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; - productReference = 8F62469E6CEE53C200000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B98A94473800000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000000F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450CF5F5EE700000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; - productName = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; - productReference = 8F62469E5BC465A400000000 /* lib_idx_MPPMetalHelper_8A6739B5_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B98AC3922A00000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000004C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; - productName = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; - productReference = 8F62469E085F8F9000000000 /* lib_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B98C82B9EE00000000 /* _idx_resource_util_0C14DDDC_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000042 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_resource_util_0C14DDDC_ios_min11.0; - productName = _idx_resource_util_0C14DDDC_ios_min11.0; - productReference = 8F62469E8B3041AE00000000 /* lib_idx_resource_util_0C14DDDC_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B991B35B4600000000 /* _idx_gl_calculator_helper_6AE62265_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5840DC56100000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000028 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450EC4DADE300000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C871945017CF694F00000000 /* PBXTargetDependency */, - ); - name = _idx_gl_calculator_helper_6AE62265_ios_min15.5; - productName = _idx_gl_calculator_helper_6AE62265_ios_min15.5; - productReference = 8F62469EAE2EAF7600000000 /* lib_idx_gl_calculator_helper_6AE62265_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B992DAA70A00000000 /* _idx_util_66001351_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000009 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_util_66001351_ios_min15.5; - productName = _idx_util_66001351_ios_min15.5; - productReference = 8F62469EA4CF090C00000000 /* lib_idx_util_66001351_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B995AF928400000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000021 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; - productName = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; - productReference = 8F62469E0EA9897400000000 /* lib_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B995D3064000000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000033 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; - productReference = 8F62469E0CD245CA00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B995D8B8F800000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000003F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, - C87194508A94473900000000 /* PBXTargetDependency */, - C87194505D80A99B00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; - productName = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; - productReference = 8F62469E589A330C00000000 /* lib_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9984088FC00000000 /* _idx_MPPGraphGPUData_DE328030_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000006 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, - ); - name = _idx_MPPGraphGPUData_DE328030_ios_min15.5; - productName = _idx_MPPGraphGPUData_DE328030_ios_min15.5; - productReference = 8F62469EB1085FB600000000 /* lib_idx_MPPGraphGPUData_DE328030_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B99B71962800000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000056 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; - productName = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; - productReference = 8F62469E7371AF6400000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B99D198C3600000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000023 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - ); - name = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; - productName = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; - productReference = 8F62469EC53CE65200000000 /* lib_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9A5AC836400000000 /* _idx_MPPMetalUtil_622319D3_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000013 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450CF5F5EE700000000 /* PBXTargetDependency */, - ); - name = _idx_MPPMetalUtil_622319D3_ios_min15.5; - productName = _idx_MPPMetalUtil_622319D3_ios_min15.5; - productReference = 8F62469E2BADC1D200000000 /* lib_idx_MPPMetalUtil_622319D3_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9ACE90FE200000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000020 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; - productName = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; - productReference = 8F62469E610A735200000000 /* lib_idx_annotation_renderer_1DCBFDF7_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9B1E8A01A00000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000024 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C8719450EC4DADE300000000 /* PBXTargetDependency */, - C87194501918237700000000 /* PBXTargetDependency */, - C87194504A6C65DF00000000 /* PBXTargetDependency */, - C871945091B35B4700000000 /* PBXTargetDependency */, - ); - name = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; - productName = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; - productReference = 8F62469E013DE90000000000 /* lib_idx_annotation_overlay_calculator_7772C341_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9B474037C00000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000001D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450507BECC700000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, - ); - name = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; - productName = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; - productReference = 8F62469E7C7EAFF400000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9B784310600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000003C /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194505D80A99B00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; - productName = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; - productReference = 8F62469EA6A3680800000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9B897142A00000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000002D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; - productName = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; - productReference = 8F62469EBC7F293600000000 /* lib_idx_clip_vector_size_calculator_B472A55B_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9BAB5C57E00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000003 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; - productName = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; - productReference = 8F62469EEFDC836800000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9BAEEE68600000000 /* _idx_resource_util_0C14DDDC_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000045 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_resource_util_0C14DDDC_ios_min15.5; - productName = _idx_resource_util_0C14DDDC_ios_min15.5; - productReference = 8F62469E9075CB4E00000000 /* lib_idx_resource_util_0C14DDDC_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9BCE0083800000000 /* _idx_cpu_util_D57AACFF_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000000E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_cpu_util_D57AACFF_ios_min11.0; - productName = _idx_cpu_util_D57AACFF_ios_min11.0; - productReference = 8F62469EEB9B4B7E00000000 /* lib_idx_cpu_util_D57AACFF_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9C0CFCF1600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000053 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; - productReference = 8F62469ECE781BC400000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9C415A01C00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000002F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; - productName = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; - productReference = 8F62469E888D533E00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9C4F8B64000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000000A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, - C87194501AFB53CB00000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, - C8719450395CFE5100000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - productReference = 8F62469EB9DEA8D000000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9C9AA16CE00000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000049 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; - productName = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; - productReference = 8F62469EB3DBCBD400000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9CB8F507C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000002 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - C871945060D0021D00000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, - C8719450BAB5C57F00000000 /* PBXTargetDependency */, - ); - name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; - productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; - productReference = 8F62469E3AE818C400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9CF5F5EE600000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000010 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450984088FD00000000 /* PBXTargetDependency */, - C8719450C4F8B64100000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, - C871945092DAA70B00000000 /* PBXTargetDependency */, - C8719450507BECC700000000 /* PBXTargetDependency */, - ); - name = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; - productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; - productReference = 8F62469E1E79ACEC00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9D093389A00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000055 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945032AD902100000000 /* PBXTargetDependency */, - C8719450D2A53B2100000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; - productName = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; - productReference = 8F62469E8E4BB78C00000000 /* lib_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9D2A53B2000000000 /* _idx_op_resolver_29CCF89E_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000004B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_op_resolver_29CCF89E_ios_min15.5; - productName = _idx_op_resolver_29CCF89E_ios_min15.5; - productReference = 8F62469E51E896DC00000000 /* lib_idx_op_resolver_29CCF89E_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9D2C9CDB800000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000018 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, - C8719450BCE0083900000000 /* PBXTargetDependency */, - C871945080FCD45900000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - ); - name = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; - productName = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; - productReference = 8F62469E62CE283E00000000 /* lib_idx_olamodule_common_library_9ADAC3A9_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9D320929E00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000034 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; - productName = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; - productReference = 8F62469E66FF33FC00000000 /* lib_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9D3EB570800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000043 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450E5D2ED5700000000 /* PBXTargetDependency */, - C87194502FCF8C3F00000000 /* PBXTargetDependency */, - ); - name = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; - productName = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; - productReference = 8F62469E6AB872C600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9DCA2423600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000003A /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C871945016C7A06F00000000 /* PBXTargetDependency */, - ); - name = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; - productName = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; - productReference = 8F62469E5A86F8CA00000000 /* lib_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9DD40E3B200000000 /* _idx_core_84469CC7_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F51058894C00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000015 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - C871945004A520C300000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - C87194506D62510500000000 /* PBXTargetDependency */, - ); - name = _idx_core_84469CC7_ios_min11.0; - productName = _idx_core_84469CC7_ios_min11.0; - productReference = 8F62469E85C9056E00000000 /* lib_idx_core_84469CC7_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9E5D2ED5600000000 /* _idx_tflite_model_loader_6F62D289_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000044 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450BAEEE68700000000 /* PBXTargetDependency */, - ); - name = _idx_tflite_model_loader_6F62D289_ios_min15.5; - productName = _idx_tflite_model_loader_6F62D289_ios_min15.5; - productReference = 8F62469E909C31C200000000 /* lib_idx_tflite_model_loader_6F62D289_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9E673FEC600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000051 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; - productName = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; - productReference = 8F62469E8BDFD12800000000 /* lib_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9EAE9058600000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000048 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; - productName = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; - productReference = 8F62469E4BC5B6E000000000 /* lib_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9EC4DADE200000000 /* _idx_shader_util_209E4ED9_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */; - buildPhases = ( - 3E7AC1A60000000000000025 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_shader_util_209E4ED9_ios_min15.5; - productName = _idx_shader_util_209E4ED9_ios_min15.5; - productReference = 8F62469EB86681C200000000 /* lib_idx_shader_util_209E4ED9_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9EE60A18000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000052 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; - productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; - productReference = 8F62469EFEC0AA7A00000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9EEDCEF1800000000 /* _idx_shader_util_209E4ED9_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000001F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_shader_util_209E4ED9_ios_min11.0; - productName = _idx_shader_util_209E4ED9_ios_min11.0; - productReference = 8F62469EB31F330C00000000 /* lib_idx_shader_util_209E4ED9_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9F5035E2400000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */; - buildPhases = ( - 3E7AC1A60000000000000030 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; - productReference = 8F62469E9713725000000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9F55B29BE00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */; - buildPhases = ( - 6FB44517DF15FC4C00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; - productName = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; - productReference = 8F62469E7D01462600000000 /* libmediapipe-render-module-beauty-ios-OlaFaceUnityLibrary.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9FB58229A00000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */; - buildPhases = ( - 3E7AC1A6000000000000000D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - C8719450CB8F507D00000000 /* PBXTargetDependency */, - C871945080FCD45900000000 /* PBXTargetDependency */, - C8719450BCE0083900000000 /* PBXTargetDependency */, - C871945079337D3300000000 /* PBXTargetDependency */, - C87194500A556C3100000000 /* PBXTargetDependency */, - ); - name = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; - productName = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; - productReference = 8F62469E2B9C383A00000000 /* lib_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - D50916B9FD5CA03000000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */; - buildPhases = ( - 3E7AC1A6000000000000001B /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - C8719450B67384D100000000 /* PBXTargetDependency */, - ); - name = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; - productName = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; - productReference = 8F62469E6562E89600000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5.a */; + name = _idx_profiler_resource_util_09647121_ios_min11.0; + productName = _idx_profiler_resource_util_09647121_ios_min11.0; + productReference = C9EBA38BE8AA1C7C00000000 /* lib_idx_profiler_resource_util_09647121_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 22488B02D730B92B00000000 /* Project object */ = { + AF4586354B21A60D00000000 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 0710; LastUpgradeCheck = 1000; }; - buildConfigurationList = D31CF1F5704127CA00000000 /* Build configuration list for PBXProject "OlaFaceUnity" */; + buildConfigurationList = D99810918E7EC9F000000000 /* Build configuration list for PBXProject "FaceUnityFramework" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); - mainGroup = B6073D51EFAF6E4700000000 /* mainGroup */; + mainGroup = EF9FD80EFF4B215D00000000 /* mainGroup */; targets = ( - D50916B940C1AF2200000000 /* OlaFaceUnityFramework */, - 281DB351B67384D000000000 /* _bazel_clean_ */, - D50916B979337D3200000000 /* _idx_MPPGraphGPUData_DE328030_ios_min11.0 */, - D50916B9984088FC00000000 /* _idx_MPPGraphGPUData_DE328030_ios_min15.5 */, - D50916B94C962DEC00000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min11.0 */, - D50916B98A94473800000000 /* _idx_MPPMetalHelper_8A6739B5_ios_min15.5 */, - D50916B97E562BDE00000000 /* _idx_MPPMetalUtil_622319D3_ios_min11.0 */, - D50916B9A5AC836400000000 /* _idx_MPPMetalUtil_622319D3_ios_min15.5 */, - D50916B95D81488E00000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0 */, - D50916B97190044400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5 */, - D50916B93DC5F44400000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min11.0 */, - D50916B9B1E8A01A00000000 /* _idx_annotation_overlay_calculator_7772C341_ios_min15.5 */, - D50916B9ACE90FE200000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min11.0 */, - D50916B94A6C65DE00000000 /* _idx_annotation_renderer_1DCBFDF7_ios_min15.5 */, - D50916B966C0283200000000 /* _idx_begin_loop_calculator_55C0335F_ios_min11.0 */, - D50916B925AA7A6000000000 /* _idx_begin_loop_calculator_55C0335F_ios_min15.5 */, - D50916B97A8A9E1600000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min11.0 */, - D50916B9B897142A00000000 /* _idx_clip_vector_size_calculator_B472A55B_ios_min15.5 */, - D50916B9DD40E3B200000000 /* _idx_core_84469CC7_ios_min11.0 */, - D50916B9519E3A1A00000000 /* _idx_core_84469CC7_ios_min15.5 */, - D50916B932A4BF4A00000000 /* _idx_cpu_op_resolver_E63A3714_ios_min11.0 */, - D50916B932AD902000000000 /* _idx_cpu_op_resolver_E63A3714_ios_min15.5 */, - D50916B9BCE0083800000000 /* _idx_cpu_util_D57AACFF_ios_min11.0 */, - D50916B92FCF8C3E00000000 /* _idx_cpu_util_D57AACFF_ios_min15.5 */, - D50916B97245140600000000 /* _idx_detection_projection_calculator_07107D71_ios_min11.0 */, - D50916B95728CE7C00000000 /* _idx_detection_projection_calculator_07107D71_ios_min15.5 */, - D50916B939FF367E00000000 /* _idx_gl_calculator_helper_6AE62265_ios_min11.0 */, - D50916B991B35B4600000000 /* _idx_gl_calculator_helper_6AE62265_ios_min15.5 */, - D50916B995AF928400000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0 */, - D50916B91918237600000000 /* _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5 */, - D50916B960D0021C00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0 */, - D50916B91AFB53CA00000000 /* _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5 */, - D50916B9CB8F507C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0 */, - D50916B9C4F8B64000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5 */, - D50916B9BAB5C57E00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0 */, - D50916B9395CFE5000000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5 */, - D50916B99D198C3600000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0 */, - D50916B917CF694E00000000 /* _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5 */, - D50916B91B5AB1A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min11.0 */, - D50916B91B6277A200000000 /* _idx_image_to_tensor_calculator_77E4634D_ios_min15.5 */, - D50916B955A38FE400000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0 */, - D50916B995D8B8F800000000 /* _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5 */, - D50916B9DCA2423600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0 */, - D50916B9B784310600000000 /* _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5 */, - D50916B914B7442A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0 */, - D50916B9D3EB570800000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5 */, - D50916B91241B0E400000000 /* _idx_inference_calculator_metal_65084AC7_ios_min11.0 */, - D50916B94683E49200000000 /* _idx_inference_calculator_metal_65084AC7_ios_min15.5 */, - D50916B904A520C200000000 /* _idx_math_661952D5_ios_min11.0 */, - D50916B9797718E600000000 /* _idx_math_661952D5_ios_min15.5 */, - D50916B9C415A01C00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0 */, - D50916B9D320929E00000000 /* _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5 */, - D50916B9FB58229A00000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0 */, - D50916B9CF5F5EE600000000 /* _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5 */, - D50916B9EAE9058600000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0 */, - D50916B9C9AA16CE00000000 /* _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5 */, - D50916B9D2C9CDB800000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min11.0 */, - D50916B9B474037C00000000 /* _idx_olamodule_common_library_9ADAC3A9_ios_min15.5 */, - D50916B955AF4C6400000000 /* _idx_op_resolver_29CCF89E_ios_min11.0 */, - D50916B9D2A53B2000000000 /* _idx_op_resolver_29CCF89E_ios_min15.5 */, - D50916B980FCD45800000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0 */, - D50916B9507BECC600000000 /* _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5 */, - D50916B98AC3922A00000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0 */, - D50916B94835E8D400000000 /* _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5 */, - D50916B916C7A06E00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0 */, - D50916B95D80A99A00000000 /* _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5 */, - D50916B96D62510400000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0 */, - D50916B9FD5CA03000000000 /* _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5 */, - D50916B98C82B9EE00000000 /* _idx_resource_util_0C14DDDC_ios_min11.0 */, - D50916B9BAEEE68600000000 /* _idx_resource_util_0C14DDDC_ios_min15.5 */, - D50916B9EEDCEF1800000000 /* _idx_shader_util_209E4ED9_ios_min11.0 */, - D50916B9EC4DADE200000000 /* _idx_shader_util_209E4ED9_ios_min15.5 */, - D50916B93C22A8D400000000 /* _idx_split_vector_calculator_73890910_ios_min11.0 */, - D50916B94E485F5400000000 /* _idx_split_vector_calculator_73890910_ios_min15.5 */, - D50916B90BC1B1C600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0 */, - D50916B9E673FEC600000000 /* _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5 */, - D50916B9EE60A18000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0 */, - D50916B9C0CFCF1600000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5 */, - D50916B9728267EC00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0 */, - D50916B9D093389A00000000 /* _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5 */, - D50916B99B71962800000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0 */, - D50916B97A50F2DE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5 */, - D50916B90B74D91800000000 /* _idx_tflite_model_loader_6F62D289_ios_min11.0 */, - D50916B9E5D2ED5600000000 /* _idx_tflite_model_loader_6F62D289_ios_min15.5 */, - D50916B9814C45F000000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0 */, - D50916B95B3B8F3E00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5 */, - D50916B9F5035E2400000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0 */, - D50916B995D3064000000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5 */, - D50916B952EE187C00000000 /* _idx_transpose_conv_bias_94247583_ios_min11.0 */, - D50916B9600148FA00000000 /* _idx_transpose_conv_bias_94247583_ios_min15.5 */, - D50916B90A556C3000000000 /* _idx_util_66001351_ios_min11.0 */, - D50916B992DAA70A00000000 /* _idx_util_66001351_ios_min15.5 */, - D50916B9F55B29BE00000000 /* mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary */, + 87427C8CCEDD951E00000000 /* OlaFaceUnityFramework */, + B7165AA05082EB1400000000 /* _bazel_clean_ */, + 87427C8C6469C0B600000000 /* _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0 */, + 87427C8C57176BDA00000000 /* _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5 */, + 87427C8CD423849E00000000 /* _idx_MPPMetalHelper_D2A62E10_ios_min11.0 */, + 87427C8C48CB51D800000000 /* _idx_MPPMetalHelper_D2A62E10_ios_min15.5 */, + 87427C8C24F9083800000000 /* _idx_MPPMetalUtil_B3671FB1_ios_min11.0 */, + 87427C8CC2A07FBC00000000 /* _idx_MPPMetalUtil_B3671FB1_ios_min15.5 */, + 87427C8C47DB00A200000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0 */, + 87427C8C2FFACE0200000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5 */, + 87427C8C03E7714800000000 /* _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0 */, + 87427C8C3980F99000000000 /* _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5 */, + 87427C8CB9ED489000000000 /* _idx_annotation_renderer_FA9E6EC1_ios_min11.0 */, + 87427C8C4F5ADAC400000000 /* _idx_annotation_renderer_FA9E6EC1_ios_min15.5 */, + 87427C8CC03B9B8400000000 /* _idx_begin_loop_calculator_A45991B3_ios_min11.0 */, + 87427C8CBD80EB0400000000 /* _idx_begin_loop_calculator_A45991B3_ios_min15.5 */, + 87427C8C22E5C74400000000 /* _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0 */, + 87427C8C3845B3B200000000 /* _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5 */, + 87427C8C7DD4FB7A00000000 /* _idx_core_core-ios_B15523BE_ios_min11.0 */, + 87427C8CBB8FADF600000000 /* _idx_core_core-ios_B15523BE_ios_min15.5 */, + 87427C8C7D10E9D600000000 /* _idx_cpu_op_resolver_6A07387A_ios_min11.0 */, + 87427C8C802AA98000000000 /* _idx_cpu_op_resolver_6A07387A_ios_min15.5 */, + 87427C8C6A87892C00000000 /* _idx_detection_projection_calculator_C563E307_ios_min11.0 */, + 87427C8C08B637CE00000000 /* _idx_detection_projection_calculator_C563E307_ios_min15.5 */, + 87427C8C5085DB6A00000000 /* _idx_file_helpers_cpu_util_D61E8025_ios_min11.0 */, + 87427C8CA79D913E00000000 /* _idx_file_helpers_cpu_util_D61E8025_ios_min15.5 */, + 87427C8CBCA3F97800000000 /* _idx_file_path_740566D4_ios_min11.0 */, + 87427C8C0BF0DE7E00000000 /* _idx_file_path_740566D4_ios_min15.5 */, + 87427C8C5A1C6C0200000000 /* _idx_gl_calculator_helper_E72AAA43_ios_min11.0 */, + 87427C8C6DF286B600000000 /* _idx_gl_calculator_helper_E72AAA43_ios_min15.5 */, + 87427C8C79100D3200000000 /* _idx_gl_simple_shaders_BB6C8515_ios_min11.0 */, + 87427C8CD004C52800000000 /* _idx_gl_simple_shaders_BB6C8515_ios_min15.5 */, + 87427C8CFE17E96000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0 */, + 87427C8C1AB81BE000000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5 */, + 87427C8CEE7F321C00000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0 */, + 87427C8C28AB0AE800000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5 */, + 87427C8C1F62C35000000000 /* _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0 */, + 87427C8CC56051F400000000 /* _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5 */, + 87427C8C0FCF920600000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0 */, + 87427C8C01E3AB2200000000 /* _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5 */, + 87427C8C85031B7A00000000 /* _idx_image_opencv_0CCDA0DE_ios_min11.0 */, + 87427C8C715EEB8600000000 /* _idx_image_opencv_0CCDA0DE_ios_min15.5 */, + 87427C8CAB71124600000000 /* _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0 */, + 87427C8C55826B2C00000000 /* _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5 */, + 87427C8CAF00409A00000000 /* _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0 */, + 87427C8C5F3FBC0400000000 /* _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5 */, + 87427C8C06BB38E200000000 /* _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0 */, + 87427C8C37E2E67200000000 /* _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5 */, + 87427C8CCC1E0EB800000000 /* _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0 */, + 87427C8C6658E6D000000000 /* _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5 */, + 87427C8CA68E7D9200000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0 */, + 87427C8C48ADE3E000000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5 */, + 87427C8C33F81C8A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0 */, + 87427C8CACB7412400000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5 */, + 87427C8C7193C16200000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0 */, + 87427C8C0347AF6A00000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5 */, + 87427C8C879D440600000000 /* _idx_inference_calculator_metal_1F21F8B4_ios_min11.0 */, + 87427C8CF9E04A0000000000 /* _idx_inference_calculator_metal_1F21F8B4_ios_min15.5 */, + 87427C8CC1C7634000000000 /* _idx_location_image_frame_opencv_31458695_ios_min11.0 */, + 87427C8CEE88637800000000 /* _idx_location_image_frame_opencv_31458695_ios_min15.5 */, + 87427C8C9DFAE61A00000000 /* _idx_math_8C8F00BB_ios_min11.0 */, + 87427C8C31D9088C00000000 /* _idx_math_8C8F00BB_ios_min15.5 */, + 87427C8CAA9834EE00000000 /* _idx_matrix_A43B592D_ios_min11.0 */, + 87427C8CACD174D600000000 /* _idx_matrix_A43B592D_ios_min15.5 */, + 87427C8CA2D9738600000000 /* _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0 */, + 87427C8C6A79088C00000000 /* _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5 */, + 87427C8C9FE6425E00000000 /* _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0 */, + 87427C8CD847AEB400000000 /* _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5 */, + 87427C8CC6CB2F2600000000 /* _idx_non_max_suppression_calculator_6019C843_ios_min11.0 */, + 87427C8C71F7BDE000000000 /* _idx_non_max_suppression_calculator_6019C843_ios_min15.5 */, + 87427C8CE533974800000000 /* _idx_olamodule_common_library_511040E9_ios_min11.0 */, + 87427C8CDBCA1C3600000000 /* _idx_olamodule_common_library_511040E9_ios_min15.5 */, + 87427C8CEB9CEB5A00000000 /* _idx_op_resolver_72040923_ios_min11.0 */, + 87427C8C0035FDA800000000 /* _idx_op_resolver_72040923_ios_min15.5 */, + 87427C8C997980BA00000000 /* _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0 */, + 87427C8C76329A9200000000 /* _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5 */, + 87427C8CF6B8627A00000000 /* _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0 */, + 87427C8CEFD880E600000000 /* _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5 */, + 87427C8CFF3A799800000000 /* _idx_profiler_resource_util_09647121_ios_min11.0 */, + 87427C8C097345B200000000 /* _idx_profiler_resource_util_09647121_ios_min15.5 */, + 87427C8C56483AC200000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0 */, + 87427C8C28DDC73600000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5 */, + 87427C8CDDDFAF0600000000 /* _idx_resource_util_DF96AF63_ios_min11.0 */, + 87427C8CEDE504D000000000 /* _idx_resource_util_DF96AF63_ios_min15.5 */, + 87427C8C580182BA00000000 /* _idx_shader_util_6E7BE0E8_ios_min11.0 */, + 87427C8CC8F97AE200000000 /* _idx_shader_util_6E7BE0E8_ios_min15.5 */, + 87427C8C4174C22600000000 /* _idx_split_vector_calculator_7B6F598A_ios_min11.0 */, + 87427C8CB9A5431C00000000 /* _idx_split_vector_calculator_7B6F598A_ios_min15.5 */, + 87427C8CCBFA7B6C00000000 /* _idx_tensor_3731EC48_ios_min11.0 */, + 87427C8C33FB39B600000000 /* _idx_tensor_3731EC48_ios_min15.5 */, + 87427C8C8158E20400000000 /* _idx_tensors_to_detections_calculator_714B0603_ios_min11.0 */, + 87427C8C0BD0A8F800000000 /* _idx_tensors_to_detections_calculator_714B0603_ios_min15.5 */, + 87427C8CBEE4279200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0 */, + 87427C8C5C6CD75200000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5 */, + 87427C8C6100F87600000000 /* _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0 */, + 87427C8C5882B07C00000000 /* _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5 */, + 87427C8C79C4B16400000000 /* _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0 */, + 87427C8CA15A40D600000000 /* _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5 */, + 87427C8CFA5BFB6400000000 /* _idx_tflite_model_loader_689F8605_ios_min11.0 */, + 87427C8CEE33FDCC00000000 /* _idx_tflite_model_loader_689F8605_ios_min15.5 */, + 87427C8CEB291B2800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0 */, + 87427C8C5409991A00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5 */, + 87427C8CF0B5502C00000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0 */, + 87427C8CC2B4F12E00000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5 */, + 87427C8CB6FCDEBA00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0 */, + 87427C8CC3E18DC200000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5 */, + 87427C8C669C403400000000 /* _idx_transpose_conv_bias_EED10535_ios_min11.0 */, + 87427C8C43703CBA00000000 /* _idx_transpose_conv_bias_EED10535_ios_min15.5 */, + 87427C8CDBEA0FF400000000 /* _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0 */, + 87427C8C539639FE00000000 /* _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5 */, + 87427C8C27C7824800000000 /* _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0 */, + 87427C8C689B7C4C00000000 /* _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5 */, + 87427C8C9425E2A600000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */, ); }; /* End PBXProject section */ /* Begin PBXShellScriptBuildPhase section */ - 6FB445172B7B339300000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework */ = { + 2D079B6E5BCCBBBC00000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 0; files = ( @@ -3320,15 +4484,15 @@ inputPaths = ( "$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)", ); - name = "build //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework"; + name = "build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; - shellScript = "set -e\ncd \"${SRCROOT}/../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios:OlaFaceUnityFramework --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + shellScript = "set -e\ncd \"${SRCROOT}/../../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; showEnvVarsInLog = 1; }; - 6FB44517DF15FC4C00000000 /* build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary */ = { + 2D079B6E8F688BF600000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 0; files = ( @@ -3336,1114 +4500,1462 @@ inputPaths = ( "$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)", ); - name = "build //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary"; + name = "build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; - shellScript = "set -e\ncd \"${SRCROOT}/../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + shellScript = "set -e\ncd \"${SRCROOT}/../../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; showEnvVarsInLog = 1; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 3E7AC1A60000000000000000 /* Sources */ = { + F7F99A120000000000000000 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCBA4BE9D200000000 /* MPPGraphGPUData.mm in gpu */, - 49B7A4FC8618537700000000 /* gpu_shared_data_internal.cc in gpu */, + 292131E0A30CE7D000000000 /* MPPGraphGPUData.mm in gpu */, + 292131E04D6C4C7F00000000 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000001 /* Sources */ = { + F7F99A120000000000000001 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2F39A2D500000000 /* gpu_buffer_multi_pool.cc in gpu */, - 49B7A4FCD11949C300000000 /* gl_context.cc in gpu */, - 49B7A4FC4AFAD92200000000 /* gl_context_eagl.cc in gpu */, + 292131E0E807B54A00000000 /* image.cc in formats */, + 292131E04CDCC8E700000000 /* gl_context.cc in gpu */, + 292131E0F4DBB09F00000000 /* gl_context_eagl.cc in gpu */, + 292131E07CAF9C9900000000 /* gpu_buffer_multi_pool.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000002 /* Sources */ = { + F7F99A120000000000000002 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC489C692A00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, - 49B7A4FCA3E97E1400000000 /* gl_texture_buffer.cc in gpu */, - 49B7A4FCF51362E900000000 /* gl_texture_buffer_pool.cc in gpu */, - 49B7A4FCEA623A4800000000 /* gl_texture_view.cc in gpu */, - 49B7A4FC8EDC082600000000 /* gpu_buffer.cc in gpu */, + 292131E0E042E11F00000000 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, + 292131E0F433E56800000000 /* gl_texture_buffer.cc in gpu */, + 292131E04C68E01800000000 /* gl_texture_buffer_pool.cc in gpu */, + 292131E054B2B79500000000 /* gl_texture_view.cc in gpu */, + 292131E0B20E049D00000000 /* gpu_buffer.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000003 /* Sources */ = { + F7F99A120000000000000003 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2E9744D600000000 /* gpu_buffer_storage.cc in gpu */, - 49B7A4FC92E2BF3700000000 /* gpu_buffer_format.cc in gpu */, + 292131E001F3B5A000000000 /* gpu_buffer_storage.cc in gpu */, + 292131E025A56E7500000000 /* gpu_buffer_format.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000004 /* Sources */ = { + F7F99A120000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC4C094F0A00000000 /* util.cc in objc */, + 292131E0E7100B5A00000000 /* image_frame.cc in formats */, + 292131E0C2F713F900000000 /* graph_tracer.cc in profiler */, + 292131E08C0A8DE100000000 /* trace_builder.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000005 /* Sources */ = { + F7F99A120000000000000005 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC357DD06500000000 /* pixel_buffer_pool_util.mm in gpu */, + 292131E0F2F4752D00000000 /* util.cc in objc */, + 292131E0891AB9AF00000000 /* fill_packet_set.cc in tool */, + 292131E09C74CB9200000000 /* node.cc in api2 */, + 292131E004AC366500000000 /* packet.cc in api2 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000006 /* Sources */ = { + F7F99A120000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCBA4BE9D200000001 /* MPPGraphGPUData.mm in gpu */, - 49B7A4FC8618537700000001 /* gpu_shared_data_internal.cc in gpu */, + 292131E0E6734FD200000000 /* topologicalsorter.cc in deps */, + 292131E05717A8BD00000000 /* clock.cc in deps */, + 292131E088CF16C500000000 /* monotonic_clock.cc in deps */, + 292131E0FEDC5EF900000000 /* registration.cc in deps */, + 292131E06E45D2D500000000 /* ret_check.cc in deps */, + 292131E01534E9A800000000 /* status.cc in deps */, + 292131E049AA7F2B00000000 /* status_builder.cc in deps */, + 292131E0CEEFFADB00000000 /* status_util.cc in tool */, + 292131E0E6E5F27200000000 /* threadpool_pthread_impl.cc in deps */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000007 /* Sources */ = { + F7F99A120000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2F39A2D500000001 /* gpu_buffer_multi_pool.cc in gpu */, - 49B7A4FCD11949C300000001 /* gl_context.cc in gpu */, - 49B7A4FC4AFAD92200000001 /* gl_context_eagl.cc in gpu */, + 292131E0F2F6EF7A00000000 /* registration_token.cc in deps */, + 292131E0AE5D302600000000 /* math.cpp in core */, + 292131E07A36D66700000000 /* GPUImageUtil.cpp in core */, + 292131E0CC9C82C200000000 /* Ref.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000008 /* Sources */ = { + F7F99A120000000000000008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC357DD06500000001 /* pixel_buffer_pool_util.mm in gpu */, + 292131E0156896BC00000000 /* pixel_buffer_pool_util.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000009 /* Sources */ = { + F7F99A120000000000000009 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC4C094F0A00000001 /* util.cc in objc */, + 292131E0A30CE7D000000001 /* MPPGraphGPUData.mm in gpu */, + 292131E04D6C4C7F00000001 /* gpu_shared_data_internal.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000A /* Sources */ = { + F7F99A12000000000000000A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC489C692A00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, - 49B7A4FCA3E97E1400000001 /* gl_texture_buffer.cc in gpu */, - 49B7A4FCF51362E900000001 /* gl_texture_buffer_pool.cc in gpu */, - 49B7A4FCEA623A4800000001 /* gl_texture_view.cc in gpu */, - 49B7A4FC8EDC082600000001 /* gpu_buffer.cc in gpu */, + 292131E0E807B54A00000001 /* image.cc in formats */, + 292131E04CDCC8E700000001 /* gl_context.cc in gpu */, + 292131E0F4DBB09F00000001 /* gl_context_eagl.cc in gpu */, + 292131E07CAF9C9900000001 /* gpu_buffer_multi_pool.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000B /* Sources */ = { + F7F99A12000000000000000B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC2E9744D600000001 /* gpu_buffer_storage.cc in gpu */, - 49B7A4FC92E2BF3700000001 /* gpu_buffer_format.cc in gpu */, + 292131E0E042E11F00000001 /* gpu_buffer_storage_cv_pixel_buffer.cc in gpu */, + 292131E0F433E56800000001 /* gl_texture_buffer.cc in gpu */, + 292131E04C68E01800000001 /* gl_texture_buffer_pool.cc in gpu */, + 292131E054B2B79500000001 /* gl_texture_view.cc in gpu */, + 292131E0B20E049D00000001 /* gpu_buffer.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000C /* Sources */ = { + F7F99A12000000000000000C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC849B03E000000000 /* MPPMetalHelper.mm in gpu */, + 292131E001F3B5A000000001 /* gpu_buffer_storage.cc in gpu */, + 292131E025A56E7500000001 /* gpu_buffer_format.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000D /* Sources */ = { + F7F99A12000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCEEE7D66700000000 /* MPPGraph.mm in objc */, - 49B7A4FC48E4E18100000000 /* MPPTimestampConverter.mm in objc */, - 49B7A4FC998F8A2E00000000 /* NSError+util_status.mm in objc */, + 292131E0E7100B5A00000001 /* image_frame.cc in formats */, + 292131E0C2F713F900000001 /* graph_tracer.cc in profiler */, + 292131E08C0A8DE100000001 /* trace_builder.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000E /* Sources */ = { + F7F99A12000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53F441A800000000 /* cpu_util.cc in util */, + 292131E0F2F4752D00000001 /* util.cc in objc */, + 292131E0891AB9AF00000001 /* fill_packet_set.cc in tool */, + 292131E09C74CB9200000001 /* node.cc in api2 */, + 292131E004AC366500000001 /* packet.cc in api2 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000000F /* Sources */ = { + F7F99A12000000000000000F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC849B03E000000001 /* MPPMetalHelper.mm in gpu */, + 292131E0E6734FD200000001 /* topologicalsorter.cc in deps */, + 292131E05717A8BD00000001 /* clock.cc in deps */, + 292131E088CF16C500000001 /* monotonic_clock.cc in deps */, + 292131E0FEDC5EF900000001 /* registration.cc in deps */, + 292131E06E45D2D500000001 /* ret_check.cc in deps */, + 292131E01534E9A800000001 /* status.cc in deps */, + 292131E049AA7F2B00000001 /* status_builder.cc in deps */, + 292131E0CEEFFADB00000001 /* status_util.cc in tool */, + 292131E0E6E5F27200000001 /* threadpool_pthread_impl.cc in deps */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000010 /* Sources */ = { + F7F99A120000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCEEE7D66700000001 /* MPPGraph.mm in objc */, - 49B7A4FC48E4E18100000001 /* MPPTimestampConverter.mm in objc */, - 49B7A4FC998F8A2E00000001 /* NSError+util_status.mm in objc */, + 292131E0F2F6EF7A00000001 /* registration_token.cc in deps */, + 292131E0AE5D302600000001 /* math.cpp in core */, + 292131E07A36D66700000001 /* GPUImageUtil.cpp in core */, + 292131E0CC9C82C200000001 /* Ref.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000011 /* Sources */ = { + F7F99A120000000000000011 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53F441A800000001 /* cpu_util.cc in util */, + 292131E0156896BC00000001 /* pixel_buffer_pool_util.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000012 /* Sources */ = { + F7F99A120000000000000012 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCFF18EE3C00000000 /* MPPMetalUtil.mm in gpu */, + 292131E074A45FEA00000000 /* MPPMetalHelper.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000013 /* Sources */ = { + F7F99A120000000000000013 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCFF18EE3C00000001 /* MPPMetalUtil.mm in gpu */, + 292131E02B14856B00000000 /* MPPGraph.mm in objc */, + 292131E07309A6CF00000000 /* MPPTimestampConverter.mm in objc */, + 292131E0CF1B8F7800000000 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000014 /* Sources */ = { + F7F99A120000000000000014 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF4C8279B00000000 /* OlaFaceUnity.mm in ios */, - 49B7A4FC4CC6C91400000000 /* face_mesh_module.cc in beauty */, - 49B7A4FC8563DF9500000000 /* face_mesh_beauty_render.cc in beauty */, - 49B7A4FCA59EA68600000000 /* face_mesh_module_imp.cc in beauty */, + 292131E06449A05600000000 /* file_helpers.cc in deps */, + 292131E0244E885E00000000 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000015 /* Sources */ = { + F7F99A120000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC42538A8300000000 /* FramebufferCache.cpp in core */, - 49B7A4FC5771EFBD00000000 /* Framebuffer.cpp in core */, - 49B7A4FC2E87CC4E00000000 /* Target.cpp in core */, - 49B7A4FC6328969D00000000 /* Context.cpp in core */, - 49B7A4FC9A0C486600000000 /* Filter.cpp in core */, - 49B7A4FCD9FC1F1200000000 /* GLProgram.cpp in core */, - 49B7A4FC403A0ACA00000000 /* Source.cpp in core */, - 49B7A4FC4CCA495100000000 /* SourceImage.cpp in core */, - 49B7A4FCC345270B00000000 /* IOSTarget.cpp in core */, - 49B7A4FCA688677600000000 /* SourceCamera.cpp in core */, - 49B7A4FCC7392BFD00000000 /* TargetView.cpp in core */, - 49B7A4FC36A1BCF500000000 /* FilterGroup.cpp in core */, - 49B7A4FCFA8D3DEA00000000 /* dispatch_queue.cpp in core */, - 49B7A4FC99A1D41800000000 /* GLThreadDispatch.cpp in core */, - 49B7A4FCB8521D3400000000 /* OpipeDispatch.cpp in core */, + 292131E074A84AF100000000 /* file_path.cc in deps */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000016 /* Sources */ = { + F7F99A120000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCDBE5CD1B00000000 /* Ref.cpp in core */, - 49B7A4FC64A7F94D00000000 /* math.cpp in core */, - 49B7A4FC3950B88400000000 /* GPUImageUtil.cpp in core */, + 292131E074A45FEA00000001 /* MPPMetalHelper.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000017 /* Sources */ = { + F7F99A120000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC0592E24D00000000 /* mat4.cpp in math */, - 49B7A4FCB1FDA98700000000 /* math_utils.cpp in math */, - 49B7A4FC0156E7A600000000 /* vec2.cpp in math */, - 49B7A4FC7FAD39F900000000 /* vec3.cpp in math */, - 49B7A4FC7A9963A400000000 /* vec4.cpp in math */, + 292131E02B14856B00000001 /* MPPGraph.mm in objc */, + 292131E07309A6CF00000001 /* MPPTimestampConverter.mm in objc */, + 292131E0CF1B8F7800000001 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000018 /* Sources */ = { + F7F99A120000000000000018 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCB288401C00000000 /* ola_graph.cc in common */, + 292131E06449A05600000001 /* file_helpers.cc in deps */, + 292131E0244E885E00000001 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000019 /* Sources */ = { + F7F99A120000000000000019 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF4C8279B00000001 /* OlaFaceUnity.mm in ios */, - 49B7A4FC4CC6C91400000001 /* face_mesh_module.cc in beauty */, - 49B7A4FC8563DF9500000001 /* face_mesh_beauty_render.cc in beauty */, - 49B7A4FCA59EA68600000001 /* face_mesh_module_imp.cc in beauty */, + 292131E074A84AF100000001 /* file_path.cc in deps */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001A /* Sources */ = { + F7F99A12000000000000001A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC42538A8300000001 /* FramebufferCache.cpp in core */, - 49B7A4FC5771EFBD00000001 /* Framebuffer.cpp in core */, - 49B7A4FC2E87CC4E00000001 /* Target.cpp in core */, - 49B7A4FC6328969D00000001 /* Context.cpp in core */, - 49B7A4FC9A0C486600000001 /* Filter.cpp in core */, - 49B7A4FCD9FC1F1200000001 /* GLProgram.cpp in core */, - 49B7A4FC403A0ACA00000001 /* Source.cpp in core */, - 49B7A4FC4CCA495100000001 /* SourceImage.cpp in core */, - 49B7A4FCC345270B00000001 /* IOSTarget.cpp in core */, - 49B7A4FCA688677600000001 /* SourceCamera.cpp in core */, - 49B7A4FCC7392BFD00000001 /* TargetView.cpp in core */, - 49B7A4FC36A1BCF500000001 /* FilterGroup.cpp in core */, - 49B7A4FCFA8D3DEA00000001 /* dispatch_queue.cpp in core */, - 49B7A4FC99A1D41800000001 /* GLThreadDispatch.cpp in core */, - 49B7A4FCB8521D3400000001 /* OpipeDispatch.cpp in core */, + 292131E03BB7F36D00000000 /* MPPMetalUtil.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001B /* Sources */ = { + F7F99A12000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCDBE5CD1B00000001 /* Ref.cpp in core */, - 49B7A4FC64A7F94D00000001 /* math.cpp in core */, - 49B7A4FC3950B88400000001 /* GPUImageUtil.cpp in core */, + 292131E03BB7F36D00000001 /* MPPMetalUtil.mm in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001C /* Sources */ = { + F7F99A12000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC0592E24D00000001 /* mat4.cpp in math */, - 49B7A4FCB1FDA98700000001 /* math_utils.cpp in math */, - 49B7A4FC0156E7A600000001 /* vec2.cpp in math */, - 49B7A4FC7FAD39F900000001 /* vec3.cpp in math */, - 49B7A4FC7A9963A400000001 /* vec4.cpp in math */, + 292131E03EC5DCA500000000 /* OlaFaceUnity.mm in framework */, + 292131E0896EA7BE00000000 /* face_mesh_module.cc in beauty */, + 292131E00E5CBB7200000000 /* face_mesh_beauty_render.cc in beauty */, + 292131E03FC5991E00000000 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001D /* Sources */ = { + F7F99A12000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCB288401C00000001 /* ola_graph.cc in common */, + 292131E0039C71CD00000000 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001E /* Sources */ = { + F7F99A12000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC9E41D6ED00000000 /* annotation_overlay_calculator.cc in util */, + 292131E08884614F00000000 /* FramebufferCache.cpp in core */, + 292131E06B14FBE400000000 /* Framebuffer.cpp in core */, + 292131E0F121E6F100000000 /* Target.cpp in core */, + 292131E09165234300000000 /* Context.cpp in core */, + 292131E0385A1C8500000000 /* Filter.cpp in core */, + 292131E09CC065F800000000 /* GLProgram.cpp in core */, + 292131E0B70D8FD100000000 /* Source.cpp in core */, + 292131E0DEA0293C00000000 /* SourceImage.cpp in core */, + 292131E061A3AEC600000000 /* IOSTarget.cpp in core */, + 292131E003F760ED00000000 /* CVFramebuffer.cpp in core */, + 292131E02A58F18200000000 /* SourceCamera.cpp in core */, + 292131E0167968C300000000 /* TargetView.cpp in core */, + 292131E09C6B9F6700000000 /* FilterGroup.cpp in core */, + 292131E05B295F7500000000 /* dispatch_queue.cpp in core */, + 292131E01B997A6D00000000 /* GLThreadDispatch.cpp in core */, + 292131E0B5D3975C00000000 /* OpipeDispatch.cpp in core */, + 292131E08884614F00000001 /* FramebufferCache.cpp in core */, + 292131E06B14FBE400000001 /* Framebuffer.cpp in core */, + 292131E0F121E6F100000001 /* Target.cpp in core */, + 292131E09165234300000001 /* Context.cpp in core */, + 292131E0385A1C8500000001 /* Filter.cpp in core */, + 292131E09CC065F800000001 /* GLProgram.cpp in core */, + 292131E0B70D8FD100000001 /* Source.cpp in core */, + 292131E0DEA0293C00000001 /* SourceImage.cpp in core */, + 292131E061A3AEC600000001 /* IOSTarget.cpp in core */, + 292131E003F760ED00000001 /* CVFramebuffer.cpp in core */, + 292131E02A58F18200000001 /* SourceCamera.cpp in core */, + 292131E0167968C300000001 /* TargetView.cpp in core */, + 292131E09C6B9F6700000001 /* FilterGroup.cpp in core */, + 292131E05B295F7500000001 /* dispatch_queue.cpp in core */, + 292131E01B997A6D00000001 /* GLThreadDispatch.cpp in core */, + 292131E0B5D3975C00000001 /* OpipeDispatch.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000001F /* Sources */ = { + F7F99A12000000000000001F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC369A201C00000000 /* shader_util.cc in gpu */, + 292131E0193619E800000000 /* mat4.cpp in math */, + 292131E097A291BC00000000 /* math_utils.cpp in math */, + 292131E0BB7F30E700000000 /* vec2.cpp in math */, + 292131E05C1877A600000000 /* vec3.cpp in math */, + 292131E039E5E8A600000000 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000020 /* Sources */ = { + F7F99A120000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1E08E4F200000000 /* annotation_renderer.cc in util */, + 292131E03EC5DCA500000001 /* OlaFaceUnity.mm in framework */, + 292131E0896EA7BE00000001 /* face_mesh_module.cc in beauty */, + 292131E00E5CBB7200000001 /* face_mesh_beauty_render.cc in beauty */, + 292131E03FC5991E00000001 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000021 /* Sources */ = { + F7F99A120000000000000021 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1AA4F1AC00000000 /* gl_simple_shaders.cc in gpu */, + 292131E0039C71CD00000001 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000022 /* Sources */ = { + F7F99A120000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCDD869D9E00000000 /* gl_calculator_helper.cc in gpu */, - 49B7A4FCC05BE00400000000 /* gl_calculator_helper_impl_common.cc in gpu */, + 292131E08884614F00000002 /* FramebufferCache.cpp in core */, + 292131E06B14FBE400000002 /* Framebuffer.cpp in core */, + 292131E0F121E6F100000002 /* Target.cpp in core */, + 292131E09165234300000002 /* Context.cpp in core */, + 292131E0385A1C8500000002 /* Filter.cpp in core */, + 292131E09CC065F800000002 /* GLProgram.cpp in core */, + 292131E0B70D8FD100000002 /* Source.cpp in core */, + 292131E0DEA0293C00000002 /* SourceImage.cpp in core */, + 292131E061A3AEC600000002 /* IOSTarget.cpp in core */, + 292131E003F760ED00000002 /* CVFramebuffer.cpp in core */, + 292131E02A58F18200000002 /* SourceCamera.cpp in core */, + 292131E0167968C300000002 /* TargetView.cpp in core */, + 292131E09C6B9F6700000002 /* FilterGroup.cpp in core */, + 292131E05B295F7500000002 /* dispatch_queue.cpp in core */, + 292131E01B997A6D00000002 /* GLThreadDispatch.cpp in core */, + 292131E0B5D3975C00000002 /* OpipeDispatch.cpp in core */, + 292131E08884614F00000003 /* FramebufferCache.cpp in core */, + 292131E06B14FBE400000003 /* Framebuffer.cpp in core */, + 292131E0F121E6F100000003 /* Target.cpp in core */, + 292131E09165234300000003 /* Context.cpp in core */, + 292131E0385A1C8500000003 /* Filter.cpp in core */, + 292131E09CC065F800000003 /* GLProgram.cpp in core */, + 292131E0B70D8FD100000003 /* Source.cpp in core */, + 292131E0DEA0293C00000003 /* SourceImage.cpp in core */, + 292131E061A3AEC600000003 /* IOSTarget.cpp in core */, + 292131E003F760ED00000003 /* CVFramebuffer.cpp in core */, + 292131E02A58F18200000003 /* SourceCamera.cpp in core */, + 292131E0167968C300000003 /* TargetView.cpp in core */, + 292131E09C6B9F6700000003 /* FilterGroup.cpp in core */, + 292131E05B295F7500000003 /* dispatch_queue.cpp in core */, + 292131E01B997A6D00000003 /* GLThreadDispatch.cpp in core */, + 292131E0B5D3975C00000003 /* OpipeDispatch.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000023 /* Sources */ = { + F7F99A120000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7D7F06EB00000000 /* image_properties_calculator.cc in image */, - 49B7A4FC984EF97C00000000 /* gpu_service.cc in gpu */, + 292131E0193619E800000001 /* mat4.cpp in math */, + 292131E097A291BC00000001 /* math_utils.cpp in math */, + 292131E0BB7F30E700000001 /* vec2.cpp in math */, + 292131E05C1877A600000001 /* vec3.cpp in math */, + 292131E039E5E8A600000001 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000024 /* Sources */ = { + F7F99A120000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC9E41D6ED00000001 /* annotation_overlay_calculator.cc in util */, + 292131E085095B6300000000 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000025 /* Sources */ = { + F7F99A120000000000000025 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC369A201C00000001 /* shader_util.cc in gpu */, + 292131E043F1E68200000000 /* location.cc in formats */, + 292131E071F9799600000000 /* image_frame_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000026 /* Sources */ = { + F7F99A120000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1AA4F1AC00000001 /* gl_simple_shaders.cc in gpu */, + 292131E0A6E86D0400000000 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000027 /* Sources */ = { + F7F99A120000000000000027 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1E08E4F200000001 /* annotation_renderer.cc in util */, + 292131E0B99FAC6D00000000 /* gl_calculator_helper.cc in gpu */, + 292131E00FE70EC600000000 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000028 /* Sources */ = { + F7F99A120000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCDD869D9E00000001 /* gl_calculator_helper.cc in gpu */, - 49B7A4FCC05BE00400000001 /* gl_calculator_helper_impl_common.cc in gpu */, + 292131E0A515D7AD00000000 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000029 /* Sources */ = { + F7F99A120000000000000029 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7D7F06EB00000001 /* image_properties_calculator.cc in image */, - 49B7A4FC984EF97C00000001 /* gpu_service.cc in gpu */, + 292131E088B6477F00000000 /* image_properties_calculator.cc in image */, + 292131E0CC83910500000000 /* gpu_service.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002A /* Sources */ = { + F7F99A12000000000000002A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7B0088E300000000 /* begin_loop_calculator.cc in core */, + 292131E0CA41AC6F00000000 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002B /* Sources */ = { + F7F99A12000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC7B0088E300000001 /* begin_loop_calculator.cc in core */, + 292131E085095B6300000001 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002C /* Sources */ = { + F7F99A12000000000000002C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53BB6A1B00000000 /* clip_vector_size_calculator.cc in core */, + 292131E0A6E86D0400000001 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002D /* Sources */ = { + F7F99A12000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC53BB6A1B00000001 /* clip_vector_size_calculator.cc in core */, + 292131E0B99FAC6D00000001 /* gl_calculator_helper.cc in gpu */, + 292131E00FE70EC600000001 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002E /* Sources */ = { + F7F99A12000000000000002E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1370E16B00000000 /* cpu_op_resolver.cc in tflite */, + 292131E088B6477F00000001 /* image_properties_calculator.cc in image */, + 292131E0CC83910500000001 /* gpu_service.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000002F /* Sources */ = { + F7F99A12000000000000002F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF18A35B600000000 /* max_unpooling.cc in operations */, - 49B7A4FCCDEAEE5C00000000 /* max_pool_argmax.cc in operations */, + 292131E0A515D7AD00000001 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000030 /* Sources */ = { + F7F99A120000000000000030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC3EF5E91200000000 /* transform_tensor_bilinear.cc in operations */, - 49B7A4FC9298B3CD00000000 /* landmarks_to_transform_matrix.cc in operations */, - 49B7A4FC096C09DF00000000 /* transform_landmarks.cc in operations */, + 292131E043F1E68200000001 /* location.cc in formats */, + 292131E071F9799600000001 /* image_frame_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000031 /* Sources */ = { + F7F99A120000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCE7ED8E2C00000000 /* transpose_conv_bias.cc in operations */, + 292131E0CA41AC6F00000001 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000032 /* Sources */ = { + F7F99A120000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC1370E16B00000001 /* cpu_op_resolver.cc in tflite */, + 292131E090340E7500000000 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000033 /* Sources */ = { + F7F99A120000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC3EF5E91200000001 /* transform_tensor_bilinear.cc in operations */, - 49B7A4FC9298B3CD00000001 /* landmarks_to_transform_matrix.cc in operations */, - 49B7A4FC096C09DF00000001 /* transform_landmarks.cc in operations */, + 292131E0BD9BA0EF00000000 /* matrix.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000034 /* Sources */ = { + F7F99A120000000000000034 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF18A35B600000001 /* max_unpooling.cc in operations */, - 49B7A4FCCDEAEE5C00000001 /* max_pool_argmax.cc in operations */, + 292131E090340E7500000001 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000035 /* Sources */ = { + F7F99A120000000000000035 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCE7ED8E2C00000001 /* transpose_conv_bias.cc in operations */, + 292131E0BD9BA0EF00000001 /* matrix.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000036 /* Sources */ = { + F7F99A120000000000000036 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC61F8D8DE00000000 /* detection_projection_calculator.cc in util */, + 292131E061B7EE9300000000 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000037 /* Sources */ = { + F7F99A120000000000000037 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC61F8D8DE00000001 /* detection_projection_calculator.cc in util */, + 292131E061B7EE9300000001 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000038 /* Sources */ = { + F7F99A120000000000000038 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC549B74DB00000000 /* image_to_tensor_calculator.cc in tensor */, + 292131E03D8CDBA400000000 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000039 /* Sources */ = { + F7F99A120000000000000039 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC60EAFF9D00000000 /* rectangle_util.cc in util */, - 49B7A4FC225F8AC300000000 /* callback_packet_calculator.cc in internal */, - 49B7A4FC2CF83E7600000000 /* image_to_tensor_utils.cc in tensor */, + 292131E0D2DBF16C00000000 /* max_unpooling.cc in operations */, + 292131E08BDC2B9600000000 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003A /* Sources */ = { + F7F99A12000000000000003A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF332D51F00000000 /* image_to_tensor_converter_opencv.cc in tensor */, + 292131E0C6F62DEE00000000 /* transform_tensor_bilinear.cc in operations */, + 292131E01E91339000000000 /* landmarks_to_transform_matrix.cc in operations */, + 292131E0CCE4FA9600000000 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003B /* Sources */ = { + F7F99A12000000000000003B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC549B74DB00000001 /* image_to_tensor_calculator.cc in tensor */, + 292131E06E2763AD00000000 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003C /* Sources */ = { + F7F99A12000000000000003C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCF332D51F00000001 /* image_to_tensor_converter_opencv.cc in tensor */, + 292131E03D8CDBA400000001 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003D /* Sources */ = { + F7F99A12000000000000003D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC60EAFF9D00000001 /* rectangle_util.cc in util */, - 49B7A4FC225F8AC300000001 /* callback_packet_calculator.cc in internal */, - 49B7A4FC2CF83E7600000001 /* image_to_tensor_utils.cc in tensor */, + 292131E0D2DBF16C00000001 /* max_unpooling.cc in operations */, + 292131E08BDC2B9600000001 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003E /* Sources */ = { + F7F99A12000000000000003E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC635CAFD500000000 /* image_to_tensor_converter_metal.cc in tensor */, + 292131E0C6F62DEE00000001 /* transform_tensor_bilinear.cc in operations */, + 292131E01E91339000000001 /* landmarks_to_transform_matrix.cc in operations */, + 292131E0CCE4FA9600000001 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000003F /* Sources */ = { + F7F99A12000000000000003F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC635CAFD500000001 /* image_to_tensor_converter_metal.cc in tensor */, + 292131E06E2763AD00000001 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000040 /* Sources */ = { + F7F99A120000000000000040 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC8FB74E7600000000 /* inference_calculator.cc in tensor */, - 49B7A4FC29F2D5B300000000 /* inference_calculator_cpu.cc in tensor */, + 292131E08E64823900000000 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000041 /* Sources */ = { + F7F99A120000000000000041 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC8369D9F900000000 /* tflite_model_loader.cc in tflite */, + 292131E08E64823900000001 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000042 /* Sources */ = { + F7F99A120000000000000042 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC5D4491B500000000 /* resource_util.cc in util */, - 49B7A4FC99A19E9200000000 /* resource_util_apple.cc in util */, + 292131E07111172300000000 /* image_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000043 /* Sources */ = { + F7F99A120000000000000043 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC8FB74E7600000001 /* inference_calculator.cc in tensor */, - 49B7A4FC29F2D5B300000001 /* inference_calculator_cpu.cc in tensor */, + 292131E07111172300000001 /* image_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000044 /* Sources */ = { + F7F99A120000000000000044 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC8369D9F900000001 /* tflite_model_loader.cc in tflite */, + 292131E07F781A8A00000000 /* image_to_tensor_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000045 /* Sources */ = { + F7F99A120000000000000045 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC5D4491B500000001 /* resource_util.cc in util */, - 49B7A4FC99A19E9200000001 /* resource_util_apple.cc in util */, + 292131E056552D1100000000 /* image_to_tensor_converter_opencv.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000046 /* Sources */ = { + F7F99A120000000000000046 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC134BBB5F00000000 /* inference_calculator_metal.cc in tensor */, + 292131E0A7A5495900000000 /* tensor.cc in formats */, + 292131E0C04E125300000000 /* tensor_ahwb.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000047 /* Sources */ = { + F7F99A120000000000000047 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC134BBB5F00000001 /* inference_calculator_metal.cc in tensor */, + 292131E06B7D834500000000 /* validate_name.cc in tool */, + 292131E02E51696100000000 /* callback_packet_calculator.cc in internal */, + 292131E0B766CDE400000000 /* image_to_tensor_utils.cc in tensor */, + 292131E0A9FEEACC00000000 /* name_util.cc in tool */, + 292131E0B1F58FA100000000 /* options_field_util.cc in tool */, + 292131E0469B0ADD00000000 /* options_registry.cc in tool */, + 292131E0520F4EF100000000 /* options_syntax_util.cc in tool */, + 292131E0653148E700000000 /* options_util.cc in tool */, + 292131E0086B422F00000000 /* packet_generator_wrapper_calculator.cc in tool */, + 292131E08474EEF500000000 /* proto_util_lite.cc in tool */, + 292131E00158CA5400000000 /* rectangle_util.cc in util */, + 292131E083AFE1B600000000 /* subgraph_expansion.cc in tool */, + 292131E0CDD4591A00000000 /* tag_map.cc in tool */, + 292131E026FC899A00000000 /* tag_map_helper.cc in tool */, + 292131E0408026B200000000 /* template_expander.cc in tool */, + 292131E013EBD42600000000 /* validate.cc in tool */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000048 /* Sources */ = { + F7F99A120000000000000048 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC0C5B6D7000000000 /* non_max_suppression_calculator.cc in util */, + 292131E07F781A8A00000001 /* image_to_tensor_calculator.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000049 /* Sources */ = { + F7F99A120000000000000049 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC0C5B6D7000000001 /* non_max_suppression_calculator.cc in util */, + 292131E06B7D834500000001 /* validate_name.cc in tool */, + 292131E02E51696100000001 /* callback_packet_calculator.cc in internal */, + 292131E0B766CDE400000001 /* image_to_tensor_utils.cc in tensor */, + 292131E0A9FEEACC00000001 /* name_util.cc in tool */, + 292131E0B1F58FA100000001 /* options_field_util.cc in tool */, + 292131E0469B0ADD00000001 /* options_registry.cc in tool */, + 292131E0520F4EF100000001 /* options_syntax_util.cc in tool */, + 292131E0653148E700000001 /* options_util.cc in tool */, + 292131E0086B422F00000001 /* packet_generator_wrapper_calculator.cc in tool */, + 292131E08474EEF500000001 /* proto_util_lite.cc in tool */, + 292131E00158CA5400000001 /* rectangle_util.cc in util */, + 292131E083AFE1B600000001 /* subgraph_expansion.cc in tool */, + 292131E0CDD4591A00000001 /* tag_map.cc in tool */, + 292131E026FC899A00000001 /* tag_map_helper.cc in tool */, + 292131E0408026B200000001 /* template_expander.cc in tool */, + 292131E013EBD42600000001 /* validate.cc in tool */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004A /* Sources */ = { + F7F99A12000000000000004A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCFD02751100000000 /* op_resolver.cc in tflite */, + 292131E0A7A5495900000001 /* tensor.cc in formats */, + 292131E0C04E125300000001 /* tensor_ahwb.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004B /* Sources */ = { + F7F99A12000000000000004B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCFD02751100000001 /* op_resolver.cc in tflite */, + 292131E056552D1100000001 /* image_to_tensor_converter_opencv.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004C /* Sources */ = { + F7F99A12000000000000004C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCCD95EE7200000000 /* previous_loopback_calculator.cc in core */, - 49B7A4FC3FEF732500000000 /* header_util.cc in util */, + 292131E035928F7E00000000 /* image_to_tensor_converter_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004D /* Sources */ = { + F7F99A12000000000000004D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCCD95EE7200000001 /* previous_loopback_calculator.cc in core */, - 49B7A4FC3FEF732500000001 /* header_util.cc in util */, + 292131E035928F7E00000001 /* image_to_tensor_converter_metal.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004E /* Sources */ = { + F7F99A12000000000000004E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC18FF939300000000 /* split_vector_calculator.cc in core */, + 292131E03C2F923900000000 /* immediate_input_stream_handler.cc in stream_handler */, + 292131E061B557B900000000 /* default_input_stream_handler.cc in stream_handler */, + 292131E07DAFBCF400000000 /* fixed_size_input_stream_handler.cc in stream_handler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A6000000000000004F /* Sources */ = { + F7F99A12000000000000004F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC18FF939300000001 /* split_vector_calculator.cc in core */, + 292131E03C2F923900000001 /* immediate_input_stream_handler.cc in stream_handler */, + 292131E061B557B900000001 /* default_input_stream_handler.cc in stream_handler */, + 292131E07DAFBCF400000001 /* fixed_size_input_stream_handler.cc in stream_handler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000050 /* Sources */ = { + F7F99A120000000000000050 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC6414206900000000 /* tensors_to_detections_calculator.cc in tensor */, + 292131E0D1A7539900000000 /* in_order_output_stream_handler.cc in stream_handler */, + 292131E0D9CF443F00000000 /* graph_profiler.cc in profiler */, + 292131E09ADB4E5D00000000 /* gl_context_profiler.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000051 /* Sources */ = { + F7F99A120000000000000051 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC6414206900000001 /* tensors_to_detections_calculator.cc in tensor */, + 292131E05E64B57D00000000 /* profiler_resource_util_common.cc in profiler */, + 292131E0794C398A00000000 /* profiler_resource_util_ios.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000052 /* Sources */ = { + F7F99A120000000000000052 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCD84977E600000000 /* tensors_to_landmarks_calculator.cc in tensor */, - 49B7A4FCD8BCE6D000000000 /* tensors_to_floats_calculator.cc in tensor */, + 292131E0D1A7539900000001 /* in_order_output_stream_handler.cc in stream_handler */, + 292131E0D9CF443F00000001 /* graph_profiler.cc in profiler */, + 292131E09ADB4E5D00000001 /* gl_context_profiler.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000053 /* Sources */ = { + F7F99A120000000000000053 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCD84977E600000001 /* tensors_to_landmarks_calculator.cc in tensor */, - 49B7A4FCD8BCE6D000000001 /* tensors_to_floats_calculator.cc in tensor */, + 292131E05E64B57D00000001 /* profiler_resource_util_common.cc in profiler */, + 292131E0794C398A00000001 /* profiler_resource_util_ios.cc in profiler */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000054 /* Sources */ = { + F7F99A120000000000000054 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCC43404B200000000 /* tflite_custom_op_resolver_calculator.cc in tflite */, + 292131E0D16450D500000000 /* inference_calculator.cc in tensor */, + 292131E0C5B8FC9C00000000 /* inference_calculator_cpu.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000055 /* Sources */ = { + F7F99A120000000000000055 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FCC43404B200000001 /* tflite_custom_op_resolver_calculator.cc in tflite */, + 292131E054C7579B00000000 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000056 /* Sources */ = { + F7F99A120000000000000056 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC50FA3B1400000000 /* tflite_model_calculator.cc in tflite */, - 49B7A4FCD0D5BCFD00000000 /* end_loop_calculator.cc in core */, + 292131E065E57C6A00000000 /* resource_util.cc in util */, + 292131E0EF9BE2D900000000 /* resource_util_apple.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000057 /* Sources */ = { + F7F99A120000000000000057 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC50FA3B1400000001 /* tflite_model_calculator.cc in tflite */, - 49B7A4FCD0D5BCFD00000001 /* end_loop_calculator.cc in core */, + 292131E0D16450D500000001 /* inference_calculator.cc in tensor */, + 292131E0C5B8FC9C00000001 /* inference_calculator_cpu.cc in tensor */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000058 /* Sources */ = { + F7F99A120000000000000058 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC69D807EA00000000 /* to_image_calculator.cc in util */, - 49B7A4FCE46A0E9300000000 /* association_norm_rect_calculator.cc in util */, - 49B7A4FC841EB37B00000000 /* collection_has_min_size_calculator.cc in util */, - 49B7A4FC267D173700000000 /* constant_side_packet_calculator.cc in core */, - 49B7A4FCA1639D0C00000000 /* detections_to_rects_calculator.cc in util */, - 49B7A4FCBED4CA2400000000 /* detections_to_render_data_calculator.cc in util */, - 49B7A4FCAF368E8800000000 /* face_landmarks_to_render_data_calculator.cc in calculators */, - 49B7A4FC7079047800000000 /* flow_limiter_calculator.cc in core */, - 49B7A4FCB1AC117700000000 /* gate_calculator.cc in core */, - 49B7A4FCA0A3B78B00000000 /* landmark_projection_calculator.cc in util */, - 49B7A4FCCCE7F65F00000000 /* landmarks_refinement_calculator.cc in util */, - 49B7A4FC13423C4400000000 /* landmarks_to_detection_calculator.cc in util */, - 49B7A4FCBC1DF28100000000 /* landmarks_to_render_data_calculator.cc in util */, - 49B7A4FC8F068F4700000000 /* local_file_contents_calculator.cc in util */, - 49B7A4FC259898F600000000 /* rect_to_render_data_calculator.cc in util */, - 49B7A4FC6D2A8B0300000000 /* rect_transformation_calculator.cc in util */, - 49B7A4FCD71B607200000000 /* split_proto_list_calculator.cc in core */, - 49B7A4FC57CDD24300000000 /* ssd_anchors_calculator.cc in tflite */, - 49B7A4FCBCE7858600000000 /* thresholding_calculator.cc in util */, + 292131E054C7579B00000001 /* tflite_model_loader.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7AC1A60000000000000059 /* Sources */ = { + F7F99A120000000000000059 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - 49B7A4FC69D807EA00000001 /* to_image_calculator.cc in util */, - 49B7A4FCE46A0E9300000001 /* association_norm_rect_calculator.cc in util */, - 49B7A4FC841EB37B00000001 /* collection_has_min_size_calculator.cc in util */, - 49B7A4FC267D173700000001 /* constant_side_packet_calculator.cc in core */, - 49B7A4FCA1639D0C00000001 /* detections_to_rects_calculator.cc in util */, - 49B7A4FCBED4CA2400000001 /* detections_to_render_data_calculator.cc in util */, - 49B7A4FCAF368E8800000001 /* face_landmarks_to_render_data_calculator.cc in calculators */, - 49B7A4FC7079047800000001 /* flow_limiter_calculator.cc in core */, - 49B7A4FCB1AC117700000001 /* gate_calculator.cc in core */, - 49B7A4FCA0A3B78B00000001 /* landmark_projection_calculator.cc in util */, - 49B7A4FCCCE7F65F00000001 /* landmarks_refinement_calculator.cc in util */, - 49B7A4FC13423C4400000001 /* landmarks_to_detection_calculator.cc in util */, - 49B7A4FCBC1DF28100000001 /* landmarks_to_render_data_calculator.cc in util */, - 49B7A4FC8F068F4700000001 /* local_file_contents_calculator.cc in util */, - 49B7A4FC259898F600000001 /* rect_to_render_data_calculator.cc in util */, - 49B7A4FC6D2A8B0300000001 /* rect_transformation_calculator.cc in util */, - 49B7A4FCD71B607200000001 /* split_proto_list_calculator.cc in core */, - 49B7A4FC57CDD24300000001 /* ssd_anchors_calculator.cc in tflite */, - 49B7A4FCBCE7858600000001 /* thresholding_calculator.cc in util */, + 292131E065E57C6A00000001 /* resource_util.cc in util */, + 292131E0EF9BE2D900000001 /* resource_util_apple.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E026CACA2800000000 /* inference_calculator_metal.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E026CACA2800000001 /* inference_calculator_metal.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0958571C200000000 /* non_max_suppression_calculator.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0958571C200000001 /* non_max_suppression_calculator.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0AA3DAAFE00000000 /* op_resolver.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000005F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0AA3DAAFE00000001 /* op_resolver.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000060 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0A1A7A6AB00000000 /* previous_loopback_calculator.cc in core */, + 292131E0EED97A0A00000000 /* header_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000061 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0A1A7A6AB00000001 /* previous_loopback_calculator.cc in core */, + 292131E0EED97A0A00000001 /* header_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000062 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E066B5DC2700000000 /* split_vector_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000063 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E066B5DC2700000001 /* split_vector_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000064 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0B742764B00000000 /* tensors_to_detections_calculator.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000065 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0B742764B00000001 /* tensors_to_detections_calculator.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000066 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0041A754A00000000 /* tensors_to_landmarks_calculator.cc in tensor */, + 292131E00CE8B3CB00000000 /* tensors_to_floats_calculator.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000067 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0041A754A00000001 /* tensors_to_landmarks_calculator.cc in tensor */, + 292131E00CE8B3CB00000001 /* tensors_to_floats_calculator.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000068 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E08F1A956900000000 /* tflite_custom_op_resolver_calculator.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A120000000000000069 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E08F1A956900000001 /* tflite_custom_op_resolver_calculator.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000006A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0BB054CF600000000 /* tflite_model_calculator.cc in tflite */, + 292131E00427142700000000 /* end_loop_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000006B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0BB054CF600000001 /* tflite_model_calculator.cc in tflite */, + 292131E00427142700000001 /* end_loop_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000006C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0C82837B100000000 /* to_image_calculator.cc in util */, + 292131E06E1CB88E00000000 /* association_norm_rect_calculator.cc in util */, + 292131E002700A4A00000000 /* collection_has_min_size_calculator.cc in util */, + 292131E0E828302500000000 /* constant_side_packet_calculator.cc in core */, + 292131E0C41917A300000000 /* container_util.cc in tool */, + 292131E0FE3D856E00000000 /* detections_to_rects_calculator.cc in util */, + 292131E0373C8B5300000000 /* detections_to_render_data_calculator.cc in util */, + 292131E0E1457C5300000000 /* face_landmarks_to_render_data_calculator.cc in calculators */, + 292131E0BC8A185A00000000 /* flow_limiter_calculator.cc in core */, + 292131E008F5F8CC00000000 /* gate_calculator.cc in core */, + 292131E00640609100000000 /* landmark_projection_calculator.cc in util */, + 292131E06A8EBE1E00000000 /* landmarks_refinement_calculator.cc in util */, + 292131E0B68AAB6100000000 /* landmarks_to_detection_calculator.cc in util */, + 292131E0AF808B4E00000000 /* landmarks_to_render_data_calculator.cc in util */, + 292131E0C730EFED00000000 /* local_file_contents_calculator.cc in util */, + 292131E097D6686E00000000 /* rect_to_render_data_calculator.cc in util */, + 292131E0A5D40D5600000000 /* rect_transformation_calculator.cc in util */, + 292131E0880E6D6100000000 /* sink.cc in tool */, + 292131E0BE182A6600000000 /* split_proto_list_calculator.cc in core */, + 292131E02EDD493A00000000 /* ssd_anchors_calculator.cc in tflite */, + 292131E0BCEAB42A00000000 /* switch_container.cc in tool */, + 292131E080DA5B6200000000 /* switch_demux_calculator.cc in tool */, + 292131E06FA6B02B00000000 /* switch_mux_calculator.cc in tool */, + 292131E07334328E00000000 /* thresholding_calculator.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7F99A12000000000000006D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + 292131E0C82837B100000001 /* to_image_calculator.cc in util */, + 292131E06E1CB88E00000001 /* association_norm_rect_calculator.cc in util */, + 292131E002700A4A00000001 /* collection_has_min_size_calculator.cc in util */, + 292131E0E828302500000001 /* constant_side_packet_calculator.cc in core */, + 292131E0C41917A300000001 /* container_util.cc in tool */, + 292131E0FE3D856E00000001 /* detections_to_rects_calculator.cc in util */, + 292131E0373C8B5300000001 /* detections_to_render_data_calculator.cc in util */, + 292131E0E1457C5300000001 /* face_landmarks_to_render_data_calculator.cc in calculators */, + 292131E0BC8A185A00000001 /* flow_limiter_calculator.cc in core */, + 292131E008F5F8CC00000001 /* gate_calculator.cc in core */, + 292131E00640609100000001 /* landmark_projection_calculator.cc in util */, + 292131E06A8EBE1E00000001 /* landmarks_refinement_calculator.cc in util */, + 292131E0B68AAB6100000001 /* landmarks_to_detection_calculator.cc in util */, + 292131E0AF808B4E00000001 /* landmarks_to_render_data_calculator.cc in util */, + 292131E0C730EFED00000001 /* local_file_contents_calculator.cc in util */, + 292131E097D6686E00000001 /* rect_to_render_data_calculator.cc in util */, + 292131E0A5D40D5600000001 /* rect_transformation_calculator.cc in util */, + 292131E0880E6D6100000001 /* sink.cc in tool */, + 292131E0BE182A6600000001 /* split_proto_list_calculator.cc in core */, + 292131E02EDD493A00000001 /* ssd_anchors_calculator.cc in tflite */, + 292131E0BCEAB42A00000001 /* switch_container.cc in tool */, + 292131E080DA5B6200000001 /* switch_demux_calculator.cc in tool */, + 292131E06FA6B02B00000001 /* switch_mux_calculator.cc in tool */, + 292131E07334328E00000001 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - C871945004A520C300000000 /* PBXTargetDependency */ = { + C40BEB6D0035FDA900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F04A520C300000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B00035FDA900000000 /* PBXContainerItemProxy */; }; - C87194500A556C3100000000 /* PBXTargetDependency */ = { + C40BEB6D01E3AB2300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F0A556C3100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B001E3AB2300000000 /* PBXContainerItemProxy */; }; - C87194500B74D91900000000 /* PBXTargetDependency */ = { + C40BEB6D0347AF6B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F0B74D91900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B00347AF6B00000000 /* PBXContainerItemProxy */; }; - C871945014B7442B00000000 /* PBXTargetDependency */ = { + C40BEB6D097345B300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F14B7442B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0097345B300000000 /* PBXContainerItemProxy */; }; - C871945016C7A06F00000000 /* PBXTargetDependency */ = { + C40BEB6D0BF0DE7F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F16C7A06F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B00BF0DE7F00000000 /* PBXContainerItemProxy */; }; - C871945017CF694F00000000 /* PBXTargetDependency */ = { + C40BEB6D0FCF920700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F17CF694F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B00FCF920700000000 /* PBXContainerItemProxy */; }; - C87194501918237700000000 /* PBXTargetDependency */ = { + C40BEB6D1AB81BE100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F1918237700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B01AB81BE100000000 /* PBXContainerItemProxy */; }; - C87194501AFB53CB00000000 /* PBXTargetDependency */ = { + C40BEB6D1F62C35100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F1AFB53CB00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B01F62C35100000000 /* PBXContainerItemProxy */; }; - C87194502FCF8C3F00000000 /* PBXTargetDependency */ = { + C40BEB6D24F9083900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F2FCF8C3F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B024F9083900000000 /* PBXContainerItemProxy */; }; - C871945032A4BF4B00000000 /* PBXTargetDependency */ = { + C40BEB6D27C7824900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F32A4BF4B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B027C7824900000000 /* PBXContainerItemProxy */; }; - C871945032AD902100000000 /* PBXTargetDependency */ = { + C40BEB6D28AB0AE900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F32AD902100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B028AB0AE900000000 /* PBXContainerItemProxy */; }; - C8719450395CFE5100000000 /* PBXTargetDependency */ = { + C40BEB6D28DDC73700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F395CFE5100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B028DDC73700000000 /* PBXContainerItemProxy */; }; - C871945039FF367F00000000 /* PBXTargetDependency */ = { + C40BEB6D31D9088D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F39FF367F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B031D9088D00000000 /* PBXContainerItemProxy */; }; - C87194504835E8D500000000 /* PBXTargetDependency */ = { + C40BEB6D33FB39B700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F4835E8D500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B033FB39B700000000 /* PBXContainerItemProxy */; }; - C87194504A6C65DF00000000 /* PBXTargetDependency */ = { + C40BEB6D43703CBB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F4A6C65DF00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B043703CBB00000000 /* PBXContainerItemProxy */; }; - C87194504C962DED00000000 /* PBXTargetDependency */ = { + C40BEB6D48ADE3E100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F4C962DED00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B048ADE3E100000000 /* PBXContainerItemProxy */; }; - C8719450507BECC700000000 /* PBXTargetDependency */ = { + C40BEB6D48CB51D900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F507BECC700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B048CB51D900000000 /* PBXContainerItemProxy */; }; - C8719450519E3A1B00000000 /* PBXTargetDependency */ = { + C40BEB6D4F5ADAC500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F519E3A1B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B04F5ADAC500000000 /* PBXContainerItemProxy */; }; - C871945052EE187D00000000 /* PBXTargetDependency */ = { + C40BEB6D5082EB1500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F52EE187D00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B05082EB1500000000 /* PBXContainerItemProxy */; }; - C871945055AF4C6500000000 /* PBXTargetDependency */ = { + C40BEB6D5085DB6B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F55AF4C6500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B05085DB6B00000000 /* PBXContainerItemProxy */; }; - C87194505D80A99B00000000 /* PBXTargetDependency */ = { + C40BEB6D539639FF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F5D80A99B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0539639FF00000000 /* PBXContainerItemProxy */; }; - C8719450600148FB00000000 /* PBXTargetDependency */ = { + C40BEB6D55826B2D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F600148FB00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B055826B2D00000000 /* PBXContainerItemProxy */; }; - C871945060D0021D00000000 /* PBXTargetDependency */ = { + C40BEB6D56483AC300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F60D0021D00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B056483AC300000000 /* PBXContainerItemProxy */; }; - C87194506D62510500000000 /* PBXTargetDependency */ = { + C40BEB6D57176BDB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F6D62510500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B057176BDB00000000 /* PBXContainerItemProxy */; }; - C871945079337D3300000000 /* PBXTargetDependency */ = { + C40BEB6D580182BB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F79337D3300000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0580182BB00000000 /* PBXContainerItemProxy */; }; - C8719450797718E700000000 /* PBXTargetDependency */ = { + C40BEB6D5A1C6C0300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F797718E700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B05A1C6C0300000000 /* PBXContainerItemProxy */; }; - C87194507E562BDF00000000 /* PBXTargetDependency */ = { + C40BEB6D6469C0B700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F7E562BDF00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B06469C0B700000000 /* PBXContainerItemProxy */; }; - C871945080FCD45900000000 /* PBXTargetDependency */ = { + C40BEB6D6658E6D100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F80FCD45900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B06658E6D100000000 /* PBXContainerItemProxy */; }; - C87194508A94473900000000 /* PBXTargetDependency */ = { + C40BEB6D669C403500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F8A94473900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0669C403500000000 /* PBXContainerItemProxy */; }; - C87194508AC3922B00000000 /* PBXTargetDependency */ = { + C40BEB6D689B7C4D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F8AC3922B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0689B7C4D00000000 /* PBXContainerItemProxy */; }; - C87194508C82B9EF00000000 /* PBXTargetDependency */ = { + C40BEB6D6A79088D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F8C82B9EF00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B06A79088D00000000 /* PBXContainerItemProxy */; }; - C871945091B35B4700000000 /* PBXTargetDependency */ = { + C40BEB6D6DF286B700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F91B35B4700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B06DF286B700000000 /* PBXContainerItemProxy */; }; - C871945092DAA70B00000000 /* PBXTargetDependency */ = { + C40BEB6D715EEB8700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F92DAA70B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0715EEB8700000000 /* PBXContainerItemProxy */; }; - C871945095AF928500000000 /* PBXTargetDependency */ = { + C40BEB6D7193C16300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F95AF928500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B07193C16300000000 /* PBXContainerItemProxy */; }; - C871945095D3064100000000 /* PBXTargetDependency */ = { + C40BEB6D76329A9300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F95D3064100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B076329A9300000000 /* PBXContainerItemProxy */; }; - C8719450984088FD00000000 /* PBXTargetDependency */ = { + C40BEB6D79100D3300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F984088FD00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B079100D3300000000 /* PBXContainerItemProxy */; }; - C87194509D198C3700000000 /* PBXTargetDependency */ = { + C40BEB6D7D10E9D700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235F9D198C3700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B07D10E9D700000000 /* PBXContainerItemProxy */; }; - C8719450A5AC836500000000 /* PBXTargetDependency */ = { + C40BEB6D7DD4FB7B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FA5AC836500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B07DD4FB7B00000000 /* PBXContainerItemProxy */; }; - C8719450ACE90FE300000000 /* PBXTargetDependency */ = { + C40BEB6D802AA98100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FACE90FE300000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0802AA98100000000 /* PBXContainerItemProxy */; }; - C8719450B474037D00000000 /* PBXTargetDependency */ = { + C40BEB6D85031B7B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FB474037D00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B085031B7B00000000 /* PBXContainerItemProxy */; }; - C8719450B67384D100000000 /* PBXTargetDependency */ = { + C40BEB6D997980BB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FB67384D100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0997980BB00000000 /* PBXContainerItemProxy */; }; - C8719450B784310700000000 /* PBXTargetDependency */ = { + C40BEB6D9DFAE61B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FB784310700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B09DFAE61B00000000 /* PBXContainerItemProxy */; }; - C8719450BAB5C57F00000000 /* PBXTargetDependency */ = { + C40BEB6D9FE6425F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FBAB5C57F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B09FE6425F00000000 /* PBXContainerItemProxy */; }; - C8719450BAEEE68700000000 /* PBXTargetDependency */ = { + C40BEB6DA2D9738700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FBAEEE68700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0A2D9738700000000 /* PBXContainerItemProxy */; }; - C8719450BCE0083900000000 /* PBXTargetDependency */ = { + C40BEB6DA68E7D9300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FBCE0083900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0A68E7D9300000000 /* PBXContainerItemProxy */; }; - C8719450C415A01D00000000 /* PBXTargetDependency */ = { + C40BEB6DA79D913F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FC415A01D00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0A79D913F00000000 /* PBXContainerItemProxy */; }; - C8719450C4F8B64100000000 /* PBXTargetDependency */ = { + C40BEB6DAA9834EF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FC4F8B64100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0AA9834EF00000000 /* PBXContainerItemProxy */; }; - C8719450CB8F507D00000000 /* PBXTargetDependency */ = { + C40BEB6DAB71124700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FCB8F507D00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0AB71124700000000 /* PBXContainerItemProxy */; }; - C8719450CF5F5EE700000000 /* PBXTargetDependency */ = { + C40BEB6DACD174D700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FCF5F5EE700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0ACD174D700000000 /* PBXContainerItemProxy */; }; - C8719450D2A53B2100000000 /* PBXTargetDependency */ = { + C40BEB6DB6FCDEBB00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FD2A53B2100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0B6FCDEBB00000000 /* PBXContainerItemProxy */; }; - C8719450D2C9CDB900000000 /* PBXTargetDependency */ = { + C40BEB6DB9ED489100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FD2C9CDB900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0B9ED489100000000 /* PBXContainerItemProxy */; }; - C8719450D320929F00000000 /* PBXTargetDependency */ = { + C40BEB6DBB8FADF700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FD320929F00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0BB8FADF700000000 /* PBXContainerItemProxy */; }; - C8719450D3EB570900000000 /* PBXTargetDependency */ = { + C40BEB6DBCA3F97900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FD3EB570900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0BCA3F97900000000 /* PBXContainerItemProxy */; }; - C8719450DCA2423700000000 /* PBXTargetDependency */ = { + C40BEB6DC1C7634100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FDCA2423700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C1C7634100000000 /* PBXContainerItemProxy */; }; - C8719450DD40E3B300000000 /* PBXTargetDependency */ = { + C40BEB6DC2A07FBD00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FDD40E3B300000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C2A07FBD00000000 /* PBXContainerItemProxy */; }; - C8719450E5D2ED5700000000 /* PBXTargetDependency */ = { + C40BEB6DC2B4F12F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FE5D2ED5700000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C2B4F12F00000000 /* PBXContainerItemProxy */; }; - C8719450EC4DADE300000000 /* PBXTargetDependency */ = { + C40BEB6DC3E18DC300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FEC4DADE300000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C3E18DC300000000 /* PBXContainerItemProxy */; }; - C8719450EEDCEF1900000000 /* PBXTargetDependency */ = { + C40BEB6DC56051F500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FEEDCEF1900000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C56051F500000000 /* PBXContainerItemProxy */; }; - C8719450F5035E2500000000 /* PBXTargetDependency */ = { + C40BEB6DC8F97AE300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FF5035E2500000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0C8F97AE300000000 /* PBXContainerItemProxy */; }; - C8719450FB58229B00000000 /* PBXTargetDependency */ = { + C40BEB6DCBFA7B6D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FFB58229B00000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0CBFA7B6D00000000 /* PBXContainerItemProxy */; }; - C8719450FD5CA03100000000 /* PBXTargetDependency */ = { + C40BEB6DCC1E0EB900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 7571235FFD5CA03100000000 /* PBXContainerItemProxy */; + targetProxy = C2BE56B0CC1E0EB900000000 /* PBXContainerItemProxy */; + }; + C40BEB6DD004C52900000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0D004C52900000000 /* PBXContainerItemProxy */; + }; + C40BEB6DD423849F00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0D423849F00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DD847AEB500000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0D847AEB500000000 /* PBXContainerItemProxy */; + }; + C40BEB6DDBCA1C3700000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0DBCA1C3700000000 /* PBXContainerItemProxy */; + }; + C40BEB6DDBEA0FF500000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0DBEA0FF500000000 /* PBXContainerItemProxy */; + }; + C40BEB6DDDDFAF0700000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0DDDFAF0700000000 /* PBXContainerItemProxy */; + }; + C40BEB6DE533974900000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0E533974900000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEB9CEB5B00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EB9CEB5B00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEDE504D100000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EDE504D100000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEE33FDCD00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EE33FDCD00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEE7F321D00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EE7F321D00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEE88637900000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EE88637900000000 /* PBXContainerItemProxy */; + }; + C40BEB6DEFD880E700000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0EFD880E700000000 /* PBXContainerItemProxy */; + }; + C40BEB6DF0B5502D00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0F0B5502D00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DF6B8627B00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0F6B8627B00000000 /* PBXContainerItemProxy */; + }; + C40BEB6DFA5BFB6500000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0FA5BFB6500000000 /* PBXContainerItemProxy */; + }; + C40BEB6DFE17E96100000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0FE17E96100000000 /* PBXContainerItemProxy */; + }; + C40BEB6DFF3A799900000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = C2BE56B0FF3A799900000000 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - C75F0BC26AFB9FA200000000 /* __TulsiTestRunner_Debug */ = { + D837910613790E9200000000 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -4481,17 +5993,17 @@ TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; - TULSI_PROJECT = OlaFaceUnity; + TULSI_PROJECT = FaceUnityFramework; TULSI_VERSION = 0.20220209.88; - TULSI_WR = "${SRCROOT}/../../../../.."; + TULSI_WR = "${SRCROOT}/../../../../../.."; }; name = __TulsiTestRunner_Debug; }; - C75F0BC26AFB9FA200000001 /* __TulsiTestRunner_Debug */ = { + D837910613790E9200000001 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; DEBUG_INFORMATION_FORMAT = dwarf; FRAMEWORK_SEARCH_PATHS = ""; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -4507,1294 +6019,36 @@ SDKROOT = iphoneos; SWIFT_INSTALL_OBJC_HEADER = NO; SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Debug; }; - C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */ = { + D837910613790E9200000002 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; DEBUG_INFORMATION_FORMAT = dwarf; FRAMEWORK_SEARCH_PATHS = ""; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; OTHER_SWIFT_FLAGS = "--version"; - PRODUCT_NAME = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; + PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; SWIFT_INSTALL_OBJC_HEADER = NO; SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Debug; }; - C75F0BC2D33FB0ED00000000 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - DONT_RUN_SWIFT_STDLIB_TOOL = YES; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/Library/Frameworks"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = "$(TULSI_EXECUTION_ROOT) $(TULSI_WR)/bazel-bin $(TULSI_WR)/bazel-genfiles $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x"; - ONLY_ACTIVE_ARCH = YES; - PYTHONIOENCODING = utf8; - SDKROOT = iphoneos; - TULSI_BWRS = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; - TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; - TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; - TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; - TULSI_PROJECT = OlaFaceUnity; - TULSI_VERSION = 0.20220209.88; - TULSI_WR = "${SRCROOT}/../../../../.."; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000001 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework"; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_BUNDLE_IDENTIFIER = com.ola.olarender.develop; - PRODUCT_NAME = OlaFaceUnityFramework; - SDKROOT = iphoneos; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; - TULSI_XCODE_VERSION = 13.4.1.13F100; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000002 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000003 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000004 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000005 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000006 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000007 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000008 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000009 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000000F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000010 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000011 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000012 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000013 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000014 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000015 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000016 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000017 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_core_84469CC7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000018 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000019 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_core_84469CC7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000001F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000020 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000021 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000022 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000023 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000024 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000025 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000026 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000027 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000028 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000029 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000002F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000030 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000031 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000032 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000033 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000034 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000035 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000036 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000037 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000038 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000039 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000003F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000040 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000041 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000042 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000043 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000044 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000045 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000046 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000047 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000048 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000049 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000004F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000050 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000051 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000052 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000053 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000054 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000055 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000056 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000057 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000058 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED00000059 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000005A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000005B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C75F0BC2D33FB0ED0000005C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary"; - DEBUG_INFORMATION_FORMAT = dwarf; - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; - SDKROOT = iphoneos; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; - TULSI_XCODE_VERSION = 13.4.1.13F100; - }; - name = Release; - }; - C75F0BC2D434672300000000 /* Debug */ = { + D837910633808EC000000000 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -5827,17 +6081,17 @@ TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; - TULSI_PROJECT = OlaFaceUnity; + TULSI_PROJECT = FaceUnityFramework; TULSI_VERSION = 0.20220209.88; - TULSI_WR = "${SRCROOT}/../../../../.."; + TULSI_WR = "${SRCROOT}/../../../../../.."; }; name = Debug; }; - C75F0BC2D434672300000001 /* Debug */ = { + D837910633808EC000000001 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; @@ -5845,1214 +6099,3000 @@ PRODUCT_BUNDLE_IDENTIFIER = com.ola.olarender.develop; PRODUCT_NAME = OlaFaceUnityFramework; SDKROOT = iphoneos; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = Debug; }; - C75F0BC2D434672300000002 /* Debug */ = { + D837910633808EC000000002 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000003 /* Debug */ = { + D837910633808EC000000003 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000004 /* Debug */ = { + D837910633808EC000000004 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000005 /* Debug */ = { + D837910633808EC000000005 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000006 /* Debug */ = { + D837910633808EC000000006 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000007 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000007 /* Debug */ = { + D837910633808EC000000008 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000009 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000000A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000008 /* Debug */ = { + D837910633808EC00000000B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_DE328030_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000009 /* Debug */ = { + D837910633808EC00000000C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000000A /* Debug */ = { + D837910633808EC00000000D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000000E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000000F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000010 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000000B /* Debug */ = { + D837910633808EC000000011 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000012 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000013 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_util_66001351_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000000C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000000E /* Debug */ = { + D837910633808EC000000014 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_D2A62E10_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000000F /* Debug */ = { + D837910633808EC000000015 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000010 /* Debug */ = { + D837910633808EC000000016 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_helpers_cpu_util_D61E8025_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000011 /* Debug */ = { + D837910633808EC000000017 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_740566D4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000018 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalHelper_8A6739B5_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_D2A62E10_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000012 /* Debug */ = { + D837910633808EC000000019 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_mediapipe_framework_ios_596FA5D1_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000013 /* Debug */ = { + D837910633808EC00000001A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_util_D57AACFF_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_helpers_cpu_util_D61E8025_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000014 /* Debug */ = { + D837910633808EC00000001B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_740566D4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000001C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_B3671FB1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000015 /* Debug */ = { + D837910633808EC00000001D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPMetalUtil_622319D3_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_B3671FB1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000016 /* Debug */ = { + D837910633808EC00000001E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000017 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_core_84469CC7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000018 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000019 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000001A /* Debug */ = { + D837910633808EC00000001F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_511040E9_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000001B /* Debug */ = { + D837910633808EC000000020 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_B15523BE_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000021 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_8C8F00BB_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000022 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000001C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_core_84469CC7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000001D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000001E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_math_661952D5_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000001F /* Debug */ = { + D837910633808EC000000023 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_9ADAC3A9_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_511040E9_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000020 /* Debug */ = { + D837910633808EC000000024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_B15523BE_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000025 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_8C8F00BB_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000026 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000021 /* Debug */ = { + D837910633808EC000000027 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_location_image_frame_opencv_31458695_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000028 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_BB6C8515_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000029 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_E72AAA43_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000002A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_6E7BE0E8_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000022 /* Debug */ = { + D837910633808EC00000002B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000002C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_FA9E6EC1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000023 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000024 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000025 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000026 /* Debug */ = { + D837910633808EC00000002D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_7772C341_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000027 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_209E4ED9_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000028 /* Debug */ = { + D837910633808EC00000002E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_2CB9CEAD_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_BB6C8515_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000029 /* Debug */ = { + D837910633808EC00000002F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_E72AAA43_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000030 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000031 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_6E7BE0E8_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000032 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_location_image_frame_opencv_31458695_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000033 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_1DCBFDF7_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_FA9E6EC1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000002A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_calculator_helper_6AE62265_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000002B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000002C /* Debug */ = { + D837910633808EC000000034 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_A45991B3_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000002D /* Debug */ = { + D837910633808EC000000035 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_matrix_A43B592D_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000036 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_begin_loop_calculator_55C0335F_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_A45991B3_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000002E /* Debug */ = { + D837910633808EC000000037 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_matrix_A43B592D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000038 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000002F /* Debug */ = { + D837910633808EC000000039 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_clip_vector_size_calculator_B472A55B_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000030 /* Debug */ = { + D837910633808EC00000003A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_6A07387A_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000031 /* Debug */ = { + D837910633808EC00000003B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000032 /* Debug */ = { + D837910633808EC00000003C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000033 /* Debug */ = { + D837910633808EC00000003D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_EED10535_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000034 /* Debug */ = { + D837910633808EC00000003E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_cpu_op_resolver_E63A3714_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_6A07387A_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000035 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000036 /* Debug */ = { + D837910633808EC00000003F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000037 /* Debug */ = { + D837910633808EC000000040 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000041 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_transpose_conv_bias_94247583_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_EED10535_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000038 /* Debug */ = { + D837910633808EC000000042 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_C563E307_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000039 /* Debug */ = { + D837910633808EC000000043 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_detection_projection_calculator_07107D71_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_C563E307_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000003A /* Debug */ = { + D837910633808EC000000044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_opencv_0CCDA0DE_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_opencv_0CCDA0DE_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000046 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000003B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000003C /* Debug */ = { + D837910633808EC000000047 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000003D /* Debug */ = { + D837910633808EC000000048 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensor_3731EC48_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000049 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000004A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_calculator_77E4634D_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000003E /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000003F /* Debug */ = { + D837910633808EC00000004B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000040 /* Debug */ = { + D837910633808EC00000004C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000041 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensor_3731EC48_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000042 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000043 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000044 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000045 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000046 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_loader_6F62D289_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000047 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-ObjC++ -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_resource_util_0C14DDDC_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000048 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D434672300000049 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_inference_calculator_metal_65084AC7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000004A /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C75F0BC2D43467230000004B /* Debug */ = { + D837910633808EC00000004D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_non_max_suppression_calculator_E0C32C58_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000004C /* Debug */ = { + D837910633808EC00000004E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000004F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000050 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000051 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000052 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000053 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_profiler_resource_util_09647121_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000054 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000055 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_profiler_resource_util_09647121_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000056 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000057 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_689F8605_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000058 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_DF96AF63_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000059 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_689F8605_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_DF96AF63_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_1F21F8B4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_1F21F8B4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_6019C843_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC00000005F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_6019C843_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + D837910633808EC000000060 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_72040923_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000004D /* Debug */ = { + D837910633808EC000000061 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_op_resolver_29CCF89E_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_72040923_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000004E /* Debug */ = { + D837910633808EC000000062 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000004F /* Debug */ = { + D837910633808EC000000063 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000050 /* Debug */ = { + D837910633808EC000000064 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_7B6F598A_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000051 /* Debug */ = { + D837910633808EC000000065 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_split_vector_calculator_73890910_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_7B6F598A_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000052 /* Debug */ = { + D837910633808EC000000066 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_714B0603_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000053 /* Debug */ = { + D837910633808EC000000067 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_714B0603_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000054 /* Debug */ = { + D837910633808EC000000068 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000055 /* Debug */ = { + D837910633808EC000000069 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000056 /* Debug */ = { + D837910633808EC00000006A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000057 /* Debug */ = { + D837910633808EC00000006B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=5 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000058 /* Debug */ = { + D837910633808EC00000006C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D434672300000059 /* Debug */ = { + D837910633808EC00000006D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000005A /* Debug */ = { + D837910633808EC00000006E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000005B /* Debug */ = { + D837910633808EC00000006F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C75F0BC2D43467230000005C /* Debug */ = { + D837910633808EC000000070 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = Debug; }; - C75F0BC2FEC462CF00000000 /* __TulsiTestRunner_Release */ = { + D837910674E31B1300000000 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + DONT_RUN_SWIFT_STDLIB_TOOL = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = "$(PLATFORM_DIR)/Developer/Library/Frameworks"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = "$(TULSI_EXECUTION_ROOT) $(TULSI_WR)/bazel-bin $(TULSI_WR)/bazel-genfiles $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x"; + ONLY_ACTIVE_ARCH = YES; + PYTHONIOENCODING = utf8; + SDKROOT = iphoneos; + TULSI_BWRS = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; + TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; + TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; + TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; + TULSI_PROJECT = FaceUnityFramework; + TULSI_VERSION = 0.20220209.88; + TULSI_WR = "${SRCROOT}/../../../../../.."; + }; + name = Release; + }; + D837910674E31B1300000001 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; + DEBUG_INFORMATION_FORMAT = dwarf; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_BUNDLE_IDENTIFIER = com.ola.olarender.develop; + PRODUCT_NAME = OlaFaceUnityFramework; + SDKROOT = iphoneos; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; + TULSI_XCODE_VERSION = 13.4.1.13F100; + }; + name = Release; + }; + D837910674E31B1300000002 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_66A7DCA2_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000003 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000004 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000005 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000006 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_F2FC562A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000007 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000008 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000009 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F205E19B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPGraphGPUData_66A7DCA2_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000000F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_frame_graph_tracer_F2FC562A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000010 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000011 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000012 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000013 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_pixel_buffer_pool_util_F205E19B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000014 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_D2A62E10_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000015 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_5986A1C8_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000016 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_helpers_cpu_util_D61E8025_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000017 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_740566D4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000018 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalHelper_D2A62E10_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000019 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_5986A1C8_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_helpers_cpu_util_D61E8025_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_file_path_740566D4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_B3671FB1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_MPPMetalUtil_B3671FB1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000001F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_511040E9_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000020 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_B15523BE_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000021 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_8C8F00BB_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000022 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000023 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_511040E9_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = "_idx_core_core-ios_B15523BE_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000025 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_math_8C8F00BB_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000026 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_2BB85F60_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000027 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_location_image_frame_opencv_31458695_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000028 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_BB6C8515_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000029 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_E72AAA43_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_6E7BE0E8_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_FA9E6EC1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_2BB85F60_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_simple_shaders_BB6C8515_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000002F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_gl_calculator_helper_E72AAA43_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000030 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000031 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_6E7BE0E8_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000032 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_location_image_frame_opencv_31458695_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000033 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_FA9E6EC1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000034 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_A45991B3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000035 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_matrix_A43B592D_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000036 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_A45991B3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000037 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_matrix_A43B592D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000038 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B5FA9164_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000039 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_B5FA9164_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_6A07387A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_EED10535_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_6A07387A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000003F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000040 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000041 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_EED10535_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000042 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_C563E307_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000043 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_C563E307_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_opencv_0CCDA0DE_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_opencv_0CCDA0DE_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000046 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_3BB999B2_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000047 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000048 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensor_3731EC48_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000049 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_calculator_3BB999B2_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensor_3731EC48_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000004F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000050 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000051 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000052 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000053 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_profiler_resource_util_09647121_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000054 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000055 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_profiler_resource_util_09647121_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000056 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000057 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_689F8605_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000058 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_DF96AF63_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000059 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_689F8605_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_DF96AF63_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_1F21F8B4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_inference_calculator_metal_1F21F8B4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_6019C843_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000005F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_non_max_suppression_calculator_6019C843_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000060 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_72040923_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000061 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_72040923_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000062 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000063 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000064 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_7B6F598A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000065 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_7B6F598A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000066 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_714B0603_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000067 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_detections_calculator_714B0603_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000068 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000069 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B130000006F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + D837910674E31B1300000070 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; + DEBUG_INFORMATION_FORMAT = dwarf; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; + SDKROOT = iphoneos; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; + TULSI_XCODE_VERSION = 13.4.1.13F100; + }; + name = Release; + }; + D8379106EC2605EC00000000 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -7090,17 +9130,17 @@ TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; - TULSI_PROJECT = OlaFaceUnity; + TULSI_PROJECT = FaceUnityFramework; TULSI_VERSION = 0.20220209.88; - TULSI_WR = "${SRCROOT}/../../../../.."; + TULSI_WR = "${SRCROOT}/../../../../../.."; }; name = __TulsiTestRunner_Release; }; - C75F0BC2FEC462CF00000001 /* __TulsiTestRunner_Release */ = { + D8379106EC2605EC00000001 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityFramework"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; DEBUG_INFORMATION_FORMAT = dwarf; FRAMEWORK_SEARCH_PATHS = ""; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -7116,31 +9156,31 @@ SDKROOT = iphoneos; SWIFT_INSTALL_OBJC_HEADER = NO; SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Release; }; - C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */ = { + D8379106EC2605EC00000002 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios:OlaFaceUnityLibrary"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; DEBUG_INFORMATION_FORMAT = dwarf; FRAMEWORK_SEARCH_PATHS = ""; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; OTHER_SWIFT_FLAGS = "--version"; - PRODUCT_NAME = "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary"; + PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; SWIFT_INSTALL_OBJC_HEADER = NO; SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Release; @@ -7148,763 +9188,923 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - D31CF1F503CB892C00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min15.5" */ = { + D99810910302B42000000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000051 /* Debug */, - C75F0BC2D33FB0ED00000051 /* Release */, + D837910633808EC000000003 /* Debug */, + D837910674E31B1300000003 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F50421972E00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min11.0" */ = { + D998109105C04A6100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000030 /* Debug */, - C75F0BC2D33FB0ED00000030 /* Release */, + D837910633808EC000000063 /* Debug */, + D837910674E31B1300000063 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F507002AA600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min15.5" */ = { + D99810910602B4F900000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_5986A1C8_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000045 /* Debug */, - C75F0BC2D33FB0ED00000045 /* Release */, + D837910633808EC000000015 /* Debug */, + D837910674E31B1300000015 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5073F4E6E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min11.0" */ = { + D99810910749761C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_31458695_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000006 /* Debug */, - C75F0BC2D33FB0ED00000006 /* Release */, + D837910633808EC000000027 /* Debug */, + D837910674E31B1300000027 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F50931EF1C00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_F2E69557_ios_min11.0" */ = { + D998109109DE8CA100000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_C563E307_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000042 /* Debug */, - C75F0BC2D33FB0ED00000042 /* Release */, + D837910633808EC000000043 /* Debug */, + D837910674E31B1300000043 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F50DE3243100000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min11.0" */ = { + D99810910A3A700000000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004E /* Debug */, - C75F0BC2D33FB0ED0000004E /* Release */, + D837910633808EC000000054 /* Debug */, + D837910674E31B1300000054 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F50FD9148A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min11.0" */ = { + D99810910CE3F25B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_66A7DCA2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000033 /* Debug */, - C75F0BC2D33FB0ED00000033 /* Release */, + D837910633808EC00000000B /* Debug */, + D837910674E31B130000000B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F51058894C00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min11.0" */ = { + D99810910D29619600000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_511040E9_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000017 /* Debug */, - C75F0BC2D33FB0ED00000017 /* Release */, + D837910633808EC000000023 /* Debug */, + D837910674E31B1300000023 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5108ED90400000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min15.5" */ = { + D99810910F27CFE500000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_3731EC48_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001E /* Debug */, - C75F0BC2D33FB0ED0000001E /* Release */, + D837910633808EC00000004C /* Debug */, + D837910674E31B130000004C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F51CCE08FA00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min15.5" */ = { + D99810910F480EC100000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000009 /* Debug */, - C75F0BC2D33FB0ED00000009 /* Release */, + D837910633808EC00000003F /* Debug */, + D837910674E31B130000003F /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F51D5FFF0A00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min15.5" */ = { + D9981091142589D000000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000053 /* Debug */, - C75F0BC2D33FB0ED00000053 /* Release */, + D837910633808EC00000006A /* Debug */, + D837910674E31B130000006A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5240434D500000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min11.0" */ = { + D9981091176029AD00000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000018 /* Debug */, - C75F0BC2D33FB0ED00000018 /* Release */, + D837910633808EC000000051 /* Debug */, + D837910674E31B1300000051 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5260C68A100000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min11.0" */ = { + D99810911999FB2700000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_2BB85F60_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004C /* Debug */, - C75F0BC2D33FB0ED0000004C /* Release */, + D837910633808EC00000002D /* Debug */, + D837910674E31B130000002D /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5294E870200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min11.0" */ = { + D99810911B0E858400000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F205E19B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000024 /* Debug */, - C75F0BC2D33FB0ED00000024 /* Release */, + D837910633808EC000000013 /* Debug */, + D837910674E31B1300000013 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F52A49F50200000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_6BB9B6DA_ios_min15.5" */ = { + D99810911C0C0FF700000000 /* Build configuration list for PBXNativeTarget "_idx_math_8C8F00BB_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004F /* Debug */, - C75F0BC2D33FB0ED0000004F /* Release */, + D837910633808EC000000025 /* Debug */, + D837910674E31B1300000025 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F52BE3F25400000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_E63A3714_ios_min15.5" */ = { + D99810911D825F4A00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_66A7DCA2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000034 /* Debug */, - C75F0BC2D33FB0ED00000034 /* Release */, + D837910633808EC000000002 /* Debug */, + D837910674E31B1300000002 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F52E13CF7C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min11.0" */ = { + D99810911E6D4C3000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000016 /* Debug */, - C75F0BC2D33FB0ED00000016 /* Release */, + D837910633808EC000000040 /* Debug */, + D837910674E31B1300000040 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F52E2F18FB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min11.0" */ = { + D9981091206851E700000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_740566D4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002E /* Debug */, - C75F0BC2D33FB0ED0000002E /* Release */, + D837910633808EC00000001B /* Debug */, + D837910674E31B130000001B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5382419CD00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min15.5" */ = { + D99810912280EE9F00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_7B6F598A_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000008 /* Debug */, - C75F0BC2D33FB0ED00000008 /* Release */, + D837910633808EC000000065 /* Debug */, + D837910674E31B1300000065 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F53C8EC2F100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min15.5" */ = { + D998109123F31D3F00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_5986A1C8_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000013 /* Debug */, - C75F0BC2D33FB0ED00000013 /* Release */, + D837910633808EC000000019 /* Debug */, + D837910674E31B1300000019 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F53DC2F8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min15.5" */ = { + D9981091279B4BE900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_25DAAE20_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000059 /* Debug */, - C75F0BC2D33FB0ED00000059 /* Release */, + D837910633808EC00000003B /* Debug */, + D837910674E31B130000003B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F53F42AD4900000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min15.5" */ = { + D99810912BC63E5400000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_A43B592D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002B /* Debug */, - C75F0BC2D33FB0ED0000002B /* Release */, + D837910633808EC000000035 /* Debug */, + D837910674E31B1300000035 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F540FA78C200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min11.0" */ = { + D99810912DCC2CAD00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_EED10535_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003A /* Debug */, - C75F0BC2D33FB0ED0000003A /* Release */, + D837910633808EC000000041 /* Debug */, + D837910674E31B1300000041 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5426068CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min15.5" */ = { + D99810912F68F34600000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_C563E307_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001F /* Debug */, - C75F0BC2D33FB0ED0000001F /* Release */, + D837910633808EC000000042 /* Debug */, + D837910674E31B1300000042 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5470F13F900000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min11.0" */ = { + D998109134E923F700000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_B2729C51_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004A /* Debug */, - C75F0BC2D33FB0ED0000004A /* Release */, + D837910633808EC000000047 /* Debug */, + D837910674E31B1300000047 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F54D78F78700000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_DE328030_ios_min11.0" */ = { + D99810913842ED6900000000 /* Build configuration list for PBXNativeTarget "_idx_math_8C8F00BB_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000002 /* Debug */, - C75F0BC2D33FB0ED00000002 /* Release */, + D837910633808EC000000021 /* Debug */, + D837910674E31B1300000021 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F54DC1F93000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_B4C99DEA_ios_min11.0" */ = { + D99810913E94124500000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000052 /* Debug */, - C75F0BC2D33FB0ED00000052 /* Release */, + D837910633808EC000000012 /* Debug */, + D837910674E31B1300000012 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F54EEBF9AD00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min11.0" */ = { + D99810913FFA433000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_72040923_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000044 /* Debug */, - C75F0BC2D33FB0ED00000044 /* Release */, + D837910633808EC000000061 /* Debug */, + D837910674E31B1300000061 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5563270AB00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min15.5" */ = { + D9981091411383D300000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_F2FC562A_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000C /* Debug */, - C75F0BC2D33FB0ED0000000C /* Release */, + D837910633808EC000000006 /* Debug */, + D837910674E31B1300000006 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5584994EA00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min11.0" */ = { + D99810914413412100000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005A /* Debug */, - C75F0BC2D33FB0ED0000005A /* Release */, + D837910633808EC000000030 /* Debug */, + D837910674E31B1300000030 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F55A1A765300000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min11.0" */ = { + D998109144863A9700000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_72040923_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000022 /* Debug */, - C75F0BC2D33FB0ED00000022 /* Release */, + D837910633808EC000000060 /* Debug */, + D837910674E31B1300000060 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F55BE97ADA00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min15.5" */ = { + D998109144B6070C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_BB6C8515_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000039 /* Debug */, - C75F0BC2D33FB0ED00000039 /* Release */, + D837910633808EC000000028 /* Debug */, + D837910674E31B1300000028 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F567FA510300000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min11.0" */ = { + D998109145B9320D00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_0CCDA0DE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000F /* Debug */, - C75F0BC2D33FB0ED0000000F /* Release */, + D837910633808EC000000044 /* Debug */, + D837910674E31B1300000044 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5682B9BD300000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_9ADAC3A9_ios_min11.0" */ = { + D99810914B1E2F8500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_E72AAA43_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001A /* Debug */, - C75F0BC2D33FB0ED0000001A /* Release */, + D837910633808EC000000029 /* Debug */, + D837910674E31B1300000029 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F569831F3800000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_C59981E0_ios_min15.5" */ = { + D99810914E13061C00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001B /* Debug */, - C75F0BC2D33FB0ED0000001B /* Release */, + D837910633808EC000000069 /* Debug */, + D837910674E31B1300000069 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5704127CA00000000 /* Build configuration list for PBXProject "OlaFaceUnity" */ = { + D99810914E739AB200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_B3671FB1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000000 /* Debug */, - C75F0BC2D33FB0ED00000000 /* Release */, - C75F0BC26AFB9FA200000000 /* __TulsiTestRunner_Debug */, - C75F0BC2FEC462CF00000000 /* __TulsiTestRunner_Release */, + D837910633808EC00000001D /* Debug */, + D837910674E31B130000001D /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5770790E400000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_CBC83C38_ios_min15.5" */ = { + D99810914F78F6AB00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_31458695_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001D /* Debug */, - C75F0BC2D33FB0ED0000001D /* Release */, + D837910633808EC000000032 /* Debug */, + D837910674E31B1300000032 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5771C263400000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_FDB0FEDC_ios_min15.5" */ = { + D998109153F1102500000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_714B0603_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005B /* Debug */, - C75F0BC2D33FB0ED0000005B /* Release */, + D837910633808EC000000067 /* Debug */, + D837910674E31B1300000067 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F578F47AF400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min15.5" */ = { + D998109155CE49F000000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_AF373DC1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003F /* Debug */, - C75F0BC2D33FB0ED0000003F /* Release */, + D837910633808EC000000068 /* Debug */, + D837910674E31B1300000068 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F57996204C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_callback_packet_calculator_image_to_tensor_utils_88259672_ios_min11.0" */ = { + D998109158B7163200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003B /* Debug */, - C75F0BC2D33FB0ED0000003B /* Release */, + D837910633808EC00000004B /* Debug */, + D837910674E31B130000004B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F57A35429E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min15.5" */ = { + D998109158D446B100000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_DF96AF63_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000D /* Debug */, - C75F0BC2D33FB0ED0000000D /* Release */, + D837910633808EC00000005B /* Debug */, + D837910674E31B130000005B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F57AD665A800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_29CCF89E_ios_min15.5" */ = { + D99810915D7A317B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004D /* Debug */, - C75F0BC2D33FB0ED0000004D /* Release */, + D837910633808EC000000056 /* Debug */, + D837910674E31B1300000056 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F57D6EEAA600000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min15.5" */ = { + D99810915E611E0E00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_6E7BE0E8_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003E /* Debug */, - C75F0BC2D33FB0ED0000003E /* Release */, + D837910633808EC000000031 /* Debug */, + D837910674E31B1300000031 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5840DC56100000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_6AE62265_ios_min15.5" */ = { + D998109162ED070E00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculato_etc_0582DE6B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002A /* Debug */, - C75F0BC2D33FB0ED0000002A /* Release */, + D837910633808EC000000049 /* Debug */, + D837910674E31B1300000049 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5842E851000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_73890910_ios_min11.0" */ = { + D998109163A3DE0100000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000050 /* Debug */, - C75F0BC2D33FB0ED00000050 /* Release */, + D837910633808EC000000070 /* Debug */, + D837910674E31B1300000070 /* Release */, + D837910613790E9200000002 /* __TulsiTestRunner_Debug */, + D8379106EC2605EC00000002 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F584850D7B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min11.0" */ = { + D998109165F1D6E500000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_FA9E6EC1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000040 /* Debug */, - C75F0BC2D33FB0ED00000040 /* Release */, + D837910633808EC00000002C /* Debug */, + D837910674E31B130000002C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F585DB7B5E00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_20236D6F_ios_min11.0" */ = { + D998109167D1432700000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000005 /* Debug */, - C75F0BC2D33FB0ED00000005 /* Release */, + D837910633808EC000000007 /* Debug */, + D837910674E31B1300000007 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5862CD19300000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min11.0" */ = { + D998109169624A4600000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_6019C843_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002C /* Debug */, - C75F0BC2D33FB0ED0000002C /* Release */, + D837910633808EC00000005E /* Debug */, + D837910674E31B130000005E /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F58846F13F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_1DCBFDF7_ios_min15.5" */ = { + D998109169C5557900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_DF96AF63_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000029 /* Debug */, - C75F0BC2D33FB0ED00000029 /* Release */, + D837910633808EC000000058 /* Debug */, + D837910674E31B1300000058 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F59109BFFD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_84469CC7_ios_min15.5" */ = { + D998109169CBC3AB00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B5FA9164_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000001C /* Debug */, - C75F0BC2D33FB0ED0000001C /* Release */, + D837910633808EC000000038 /* Debug */, + D837910674E31B1300000038 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5915544F700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min11.0" */ = { + D99810916D15DF3B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000043 /* Debug */, - C75F0BC2D33FB0ED00000043 /* Release */, + D837910633808EC00000004F /* Debug */, + D837910674E31B130000004F /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5A618424C00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min15.5" */ = { + D99810916F0F249E00000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_D61E8025_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000011 /* Debug */, - C75F0BC2D33FB0ED00000011 /* Release */, + D837910633808EC00000001A /* Debug */, + D837910674E31B130000001A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5A67AB4C800000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_94247583_ios_min15.5" */ = { + D99810916F56B2AF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_3BB999B2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000037 /* Debug */, - C75F0BC2D33FB0ED00000037 /* Release */, + D837910633808EC000000046 /* Debug */, + D837910674E31B1300000046 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5A9FB717B00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min11.0" */ = { + D99810916F8D4BC800000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_5D26A92F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000054 /* Debug */, - C75F0BC2D33FB0ED00000054 /* Release */, + D837910633808EC000000050 /* Debug */, + D837910674E31B1300000050 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5AB45DADF00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_8A6739B5_ios_min11.0" */ = { + D99810916FF763E900000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000E /* Debug */, - C75F0BC2D33FB0ED0000000E /* Release */, + D837910633808EC00000006F /* Debug */, + D837910674E31B130000006F /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5AC9881C700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min15.5" */ = { + D9981091708F7EFC00000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_6A07387A_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000A /* Debug */, - C75F0BC2D33FB0ED0000000A /* Release */, + D837910633808EC00000003E /* Debug */, + D837910674E31B130000003E /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5AF09680200000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min11.0" */ = { + D9981091799ADB2000000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_3BB999B2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000023 /* Debug */, - C75F0BC2D33FB0ED00000023 /* Release */, + D837910633808EC00000004A /* Debug */, + D837910674E31B130000004A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5AFE1395B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_77E4634D_ios_min15.5" */ = { + D99810917A7360E500000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003D /* Debug */, - C75F0BC2D33FB0ED0000003D /* Release */, + D837910633808EC000000005 /* Debug */, + D837910674E31B1300000005 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B359006A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min15.5" */ = { + D9981091864DBA6C00000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_4B265F12_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000026 /* Debug */, - C75F0BC2D33FB0ED00000026 /* Release */, + D837910633808EC000000052 /* Debug */, + D837910674E31B1300000052 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B4E3FF4C00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min15.5" */ = { + D9981091869EC67200000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_2BB85F60_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000036 /* Debug */, - C75F0BC2D33FB0ED00000036 /* Release */, + D837910633808EC000000026 /* Debug */, + D837910674E31B1300000026 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B5CDCA6B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { + D99810918A85FF0400000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( + D837910633808EC000000022 /* Debug */, + D837910674E31B1300000022 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B769070700000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_multi_pool_gl_context_542134C9_ios_min11.0" */ = { + D99810918E7EC9F000000000 /* Build configuration list for PBXProject "FaceUnityFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000003 /* Debug */, - C75F0BC2D33FB0ED00000003 /* Release */, + D837910633808EC000000000 /* Debug */, + D837910674E31B1300000000 /* Release */, + D837910613790E9200000000 /* __TulsiTestRunner_Debug */, + D8379106EC2605EC00000000 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B8217D6500000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_55C0335F_ios_min15.5" */ = { + D99810919201492200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D2A62E10_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002D /* Debug */, - C75F0BC2D33FB0ED0000002D /* Release */, + D837910633808EC000000014 /* Debug */, + D837910674E31B1300000014 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5B89761A500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_6F62D289_ios_min15.5" */ = { + D998109194D11C8600000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_6A07387A_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000046 /* Debug */, - C75F0BC2D33FB0ED00000046 /* Release */, + D837910633808EC00000003A /* Debug */, + D837910674E31B130000003A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5BEDCDC1900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_0C14DDDC_ios_min15.5" */ = { + D9981091978D555A00000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_EED10535_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000047 /* Debug */, - C75F0BC2D33FB0ED00000047 /* Release */, + D837910633808EC00000003D /* Debug */, + D837910674E31B130000003D /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C0DCCE1E00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_596FA5D1_ios_min15.5" */ = { + D998109197C4688C00000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_D9B41555_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000012 /* Debug */, - C75F0BC2D33FB0ED00000012 /* Release */, + D837910633808EC000000009 /* Debug */, + D837910674E31B1300000009 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C0E3514600000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min11.0" */ = { + D99810919A40A36B00000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_B5B1BC9B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000014 /* Debug */, - C75F0BC2D33FB0ED00000014 /* Release */, + D837910633808EC00000002B /* Debug */, + D837910674E31B130000002B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C2B47BB900000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_09627F19_ios_min11.0" */ = { + D99810919BA3324F00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000031 /* Debug */, - C75F0BC2D33FB0ED00000031 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C4CBD0A700000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_C139F8B5_ios_min11.0" */ = { + D99810919CFA3F3B00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_container_util_detections_to_rects_calculator_detections_etc_86B9B0F1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000007 /* Debug */, - C75F0BC2D33FB0ED00000007 /* Release */, + D837910633808EC00000006E /* Debug */, + D837910674E31B130000006E /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C895ABFC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_7772C341_ios_min11.0" */ = { + D99810919DF2D70100000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F205E19B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000020 /* Debug */, - C75F0BC2D33FB0ED00000020 /* Release */, + D837910633808EC00000000A /* Debug */, + D837910674E31B130000000A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5C9D1E94200000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_1FC75D94_ios_min11.0" */ = { + D99810919EC6E6F100000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_AE28DD46_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000003C /* Debug */, - C75F0BC2D33FB0ED0000003C /* Release */, + D837910633808EC00000001E /* Debug */, + D837910674E31B130000001E /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5CB2C76A700000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B472A55B_ios_min15.5" */ = { + D99810919ED2F7CB00000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_511040E9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000002F /* Debug */, - C75F0BC2D33FB0ED0000002F /* Release */, + D837910633808EC00000001F /* Debug */, + D837910674E31B130000001F /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5CD20A9BC00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min11.0" */ = { + D9981091A37CEAED00000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_09647121_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000056 /* Debug */, - C75F0BC2D33FB0ED00000056 /* Release */, + D837910633808EC000000055 /* Debug */, + D837910674E31B1300000055 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5CDECDB0700000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min11.0" */ = { + D9981091A5AD7FF900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_689F8605_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000021 /* Debug */, - C75F0BC2D33FB0ED00000021 /* Release */, + D837910633808EC00000005A /* Debug */, + D837910674E31B130000005A /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D01558D200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min11.0" */ = { + D9981091A662E89E00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D2A62E10_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000048 /* Debug */, - C75F0BC2D33FB0ED00000048 /* Release */, + D837910633808EC000000018 /* Debug */, + D837910674E31B1300000018 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D2B0183C00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-OlaFaceUnityLibrary" */ = { + D9981091A923FFDF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_F2FC562A_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000005C /* Debug */, - C75F0BC2D33FB0ED0000005C /* Release */, - C75F0BC26AFB9FA200000002 /* __TulsiTestRunner_Debug */, - C75F0BC2FEC462CF00000002 /* __TulsiTestRunner_Release */, + D837910633808EC00000000F /* Debug */, + D837910674E31B130000000F /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D433B4FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_9C80BADA_ios_min11.0" */ = { + D9981091ABCAE6CE00000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000058 /* Debug */, - C75F0BC2D33FB0ED00000058 /* Release */, + D837910633808EC000000001 /* Debug */, + D837910674E31B1300000001 /* Release */, + D837910613790E9200000001 /* __TulsiTestRunner_Debug */, + D8379106EC2605EC00000001 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D4B3E68C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_66001351_ios_min15.5" */ = { + D9981091B2B1AD4400000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_1F21F8B4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000000B /* Debug */, - C75F0BC2D33FB0ED0000000B /* Release */, + D837910633808EC00000005D /* Debug */, + D837910674E31B130000005D /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D6333A3300000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_A4893FA2_ios_min15.5" */ = { + D9981091BAF0032F00000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_B5FA9164_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000055 /* Debug */, - C75F0BC2D33FB0ED00000055 /* Release */, + D837910633808EC000000039 /* Debug */, + D837910674E31B1300000039 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D6A89A3300000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_622319D3_ios_min15.5" */ = { + D9981091BC5C253800000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_740566D4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000015 /* Debug */, - C75F0BC2D33FB0ED00000015 /* Release */, + D837910633808EC000000017 /* Debug */, + D837910674E31B1300000017 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D6C9910D00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min15.5" */ = { + D9981091C536DA4200000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_1F21F8B4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000035 /* Debug */, - C75F0BC2D33FB0ED00000035 /* Release */, + D837910633808EC00000005C /* Debug */, + D837910674E31B130000005C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5D8B7B51300000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_E2448622_ios_min11.0" */ = { + D9981091C63A488F00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_A45991B3_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000032 /* Debug */, - C75F0BC2D33FB0ED00000032 /* Release */, + D837910633808EC000000036 /* Debug */, + D837910674E31B1300000036 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5DBB222FF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_A1DB3550_ios_min15.5" */ = { + D9981091C7B8402600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_76DCEFD3_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000041 /* Debug */, - C75F0BC2D33FB0ED00000041 /* Release */, + D837910633808EC000000062 /* Debug */, + D837910674E31B1300000062 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5E12C3CB500000000 /* Build configuration list for PBXNativeTarget "_idx_math_661952D5_ios_min11.0" */ = { + D9981091C7FF016200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000019 /* Debug */, - C75F0BC2D33FB0ED00000019 /* Release */, + D837910633808EC000000004 /* Debug */, + D837910674E31B1300000004 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5E5FE63D100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_11D0116F_ios_min15.5" */ = { + D9981091C89B990800000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_7EAC81FB_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000057 /* Debug */, - C75F0BC2D33FB0ED00000057 /* Release */, + D837910633808EC000000010 /* Debug */, + D837910674E31B1300000010 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5EE7EDAB300000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_941BB6CA_ios_min11.0" */ = { + D9981091CC28D9ED00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000025 /* Debug */, - C75F0BC2D33FB0ED00000025 /* Release */, + D837910633808EC000000008 /* Debug */, + D837910674E31B1300000008 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F0D47DA200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_D8E716EA_ios_min11.0" */ = { + D9981091D1F933E200000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_D61E8025_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000004 /* Debug */, - C75F0BC2D33FB0ED00000004 /* Release */, + D837910633808EC000000016 /* Debug */, + D837910674E31B1300000016 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F0E99D4C00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_2CB9CEAD_ios_min15.5" */ = { + D9981091D426111D00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_B3671FB1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000028 /* Debug */, - C75F0BC2D33FB0ED00000028 /* Release */, + D837910633808EC00000001C /* Debug */, + D837910674E31B130000001C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F37A159900000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_209E4ED9_ios_min15.5" */ = { + D9981091D537BB5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_D913CF41_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000027 /* Debug */, - C75F0BC2D33FB0ED00000027 /* Release */, + D837910633808EC00000003C /* Debug */, + D837910674E31B130000003C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F41F3C3600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_65084AC7_ios_min15.5" */ = { + D9981091D7E4AE5400000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_B15523BE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000049 /* Debug */, - C75F0BC2D33FB0ED00000049 /* Release */, + D837910633808EC000000020 /* Debug */, + D837910674E31B1300000020 /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F6AC550300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_D57AACFF_ios_min11.0" */ = { + D9981091DA39229C00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_C1FCD56C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000010 /* Debug */, - C75F0BC2D33FB0ED00000010 /* Release */, + D837910633808EC00000004E /* Debug */, + D837910674E31B130000004E /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F71DCC4600000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { + D9981091DB04ACBE00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_9348C0F6_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000001 /* Debug */, - C75F0BC2D33FB0ED00000001 /* Release */, - C75F0BC26AFB9FA200000001 /* __TulsiTestRunner_Debug */, - C75F0BC2FEC462CF00000001 /* __TulsiTestRunner_Release */, + D837910633808EC00000000C /* Debug */, + D837910674E31B130000000C /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5F90A485C00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_07107D71_ios_min11.0" */ = { + D9981091DB81584100000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_1C2C5B74_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D434672300000038 /* Debug */, - C75F0BC2D33FB0ED00000038 /* Release */, + D837910633808EC00000006B /* Debug */, + D837910674E31B130000006B /* Release */, ); defaultConfigurationIsVisible = 0; }; - D31CF1F5FC74391300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E0C32C58_ios_min15.5" */ = { + D9981091DBF901E900000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_B15523BE_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75F0BC2D43467230000004B /* Debug */, - C75F0BC2D33FB0ED0000004B /* Release */, + D837910633808EC000000024 /* Debug */, + D837910674E31B1300000024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E34EC7A400000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_689F8605_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000057 /* Debug */, + D837910674E31B1300000057 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E392089F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_E72AAA43_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000002F /* Debug */, + D837910674E31B130000002F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E3CE41E000000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_7B6F598A_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000064 /* Debug */, + D837910674E31B1300000064 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E679157200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_6E7BE0E8_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000002A /* Debug */, + D837910674E31B130000002A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E6B321A000000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_0CCDA0DE_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000045 /* Debug */, + D837910674E31B1300000045 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091E914EDDA00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_8FEB2CEF_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000011 /* Debug */, + D837910674E31B1300000011 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091EA0D0B0700000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_3731EC48_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000048 /* Debug */, + D837910674E31B1300000048 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091EE88913000000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_76F690B9_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000000D /* Debug */, + D837910674E31B130000000D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F078F13D00000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_09647121_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000053 /* Debug */, + D837910674E31B1300000053 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F164281500000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_714B0603_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000066 /* Debug */, + D837910674E31B1300000066 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F44D343A00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_BB6C8515_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000002E /* Debug */, + D837910674E31B130000002E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F5BD61EF00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_A45991B3_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000034 /* Debug */, + D837910674E31B1300000034 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F65CF7EF00000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_DDC80448_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000000E /* Debug */, + D837910674E31B130000000E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F7CAE12F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_B2729C51_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000004D /* Debug */, + D837910674E31B130000004D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091F9A3A05500000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000006C /* Debug */, + D837910674E31B130000006C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091FCAC757300000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_A43B592D_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000037 /* Debug */, + D837910674E31B1300000037 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091FCB19BCE00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_6019C843_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000005F /* Debug */, + D837910674E31B130000005F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091FCF8D36700000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_B4DEF1F3_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC00000006D /* Debug */, + D837910674E31B130000006D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091FD826E3500000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_FA9E6EC1_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000033 /* Debug */, + D837910674E31B1300000033 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + D9981091FF8764C900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_71380795_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D837910633808EC000000059 /* Debug */, + D837910674E31B1300000059 /* Release */, ); defaultConfigurationIsVisible = 0; }; /* End XCConfigurationList section */ }; - rootObject = 22488B02D730B92B00000000 /* Project object */; + rootObject = AF4586354B21A60D00000000 /* Project object */; } \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000..18d981003 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings similarity index 100% rename from mediapipe/render/module/beauty/ios/OlaFaceUnity.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings rename to mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..b91bb9cb559e1280998018b26358fe94a33973b8 GIT binary patch literal 14245 zcmc&)d3;k<_P_VOvL>ZjnkG%#tZmcOrb)UN1iC{7O6dlaC8X_Z3A9N~QlKn)3xc9J zxZ{S>6cI%RToG5s6&GAU863B9!HrRLT*viy?t4kvLUsJiKR@^+&3kvh_nhzfo^wx2 zcc&*1bU0o^7!kyw7&HovMq|+Ud8sRSf57AO&QEpwTbFv^sUbD!>zXe=7nSRZr;d5ZVRu?9(y6seI0C8Bds7P6siWJeC3Q0MsAeE$wOe3>M4XG!K$YSCm9$fM*j@;G^tJV%}}50 zN!+>IWUic>#no`Lxms=xSH~^n7IBL?H+Meg=K@@i>)}>#tGRXD1>Ab>5^f8(wK3J( z)7g0p#i9u)4#|)bCCsg<&tA^=2Abh-So)e$TRYu>KnTf^f)dJwP&`u682UI(bIDRm zE1XphM^&-SnO9kC%PYvKvXvH8)+#T^Q~-fx0Jd4)qy5Yz|+#nFOC*e`Q2T-OO_seA=aGhj#QoN2`;Vo zcsn|IC~?U$hE7@R+f`Fv#|MHwzZ-fM^sd4kbh~7Fs9M?@1jUW65xOY%d4qmmXD9D> z$r1-g_4ztmhD^{Un=*8u;qCGZ@|@*``3_q}S!u2}cCyzO&_{=e0zz z2oo-5)aWsp|0@Q)E0d2MH(nx*oe(FJE0po71hpnno0OcQ)9Z{Tb81?;CBwR?re54Y z;S69N4W3{poP``VR4fp;mF<+groOSd*3Yl-_<90DeGo-VO{Crdsj%a(0-ICF|8mYi2Rr>=2+^MaPvwvOeUUESx4 zx(Q;)PF6Tr13OjWPz@u!YlJmSEb_^ms0z7JE8+p;y@2dN!1OBQhj(4@ZYA=;@8!r~ zhzB+MGc~ipDzrkYHfY@qZGC8&OQskqvti|sr4|mCBgb;{@(T)!!eBFRrJ&5!6#yOG%s2*u02tM6@a1Xu z!0wKd<2pKae)QaqPC9q;lx7jByl~|6#Gib?CDYZ^*G9W&tgiI7`r7!mI=-Fv^WIiI zG(QLue9xE-&Ew8E`0R%%8m4G&Jp=r~pf+o4#v&Z?OW$OD4Z>gRc{C|He+ z)fM$YKfnlV((s~s5G(Zh`KG|inY;2`Tax3Hq9C^x6nmQztsU~}Y@m)gpTs|syJ zRk@DRT!*tPC)cqsj22F(vvA#O3m4@scBL(0Fcy(uaVbMb3WFzXrFht4jkA>{ad-u> zve1~uQx#SI7p(d(#jpo_dsNTFIfVGB!V;EdELlc1Foqh`nc*P=KxZ*SLuZ}?9*P}~ zb?aQRgf(m6!6CdCFw^NMEC!UEbgtL8u%^Dk132#Uy8XQ&@6-j3RXM!7t-ZCd*a6!E zeX=e=1sx97oq_!qRFU;z05&E^TCh`A;9G^L8nkaMaH#8nF&#jU14nupy^p>C1{4ci zXDU7qI86&~!|ix!nA0#ub3P8>9=r;8&02f`rg#Gm;obNceuGQ_-m#io1>9l>xq}=c zPmrg{v*cCa5ATuBI0-j_Qv*{-=bT&~@PZ;>1e3X`Tq!r5Yvopf-CqlK|2FO(?f~}; z_Z;^Mca(dLJI?(QGd@NclONL*!*PmozpW;h3++GI2Zz??lr zm2g~y7nH&t0xu{-<){Kx0$5E$O#76AC?!xe)!YtjUNN3YpS`WV( z7%z|k*3>Wct*mjc@N~Gra*MB`kEMPd1YZud8iSrrPtd~$=6c$KOT}u{-at3-Z=Zj# zTD0YmYHWaL^F`2CWt%75D6*7hv;<||h8CcOXc1bBTvSVwXfjQqy4wJlTL54IUa6ki zXb~-@liAb_^B7KLLw7Sg!R+X`*-m8` zAm&gj<#+n14g`AmKxF=1aMYPQL85(N1J0)gYNRG=-iZQWUV2b~rqXn3fp3_1e3hp& z$omC)RMtBS)&K?@W;4?r2u5eZUV|<+dfP{=tP%U*+ZwBf_Y;}VI&=X_*s+7AiQ?9W z)(_WR)Q6^stZ>+n^*%Ub(CtV!8_~rmp&xCc8U5%IYGs6$G073z90eA&1znE*;*x3M zWS9`wGKa2?@AmTnFiZkppy$xc*>W;%IKeWSGUj`Ne3!5okS!o4!P3@NJ`mvBK=%2? zfmX&8YkdI_L7#U~AbfJw&?c~Jv{V+aNjW-Z>^Mn7w>!9WKG;Tn)pUE8y%(VA(Qs6!@5Aq=EQV-EJ@QHHE3fy@kI>z`TEDNY z2mH{Z!0!HhuZ`)@YhrRpn>1pt^Sk&qkGtE`&CBpno!*fAXQz8E$rR>&@P`S3kU1@s znre=qP$=DEE;(O(GM8LaEBxxW!aOpQ2hLG~bdIn*K=#?4?z49>yPbIqY(E8LPXcdx zGN4Tz_{|GZJ9y3O(1n2S+t4nw58VeC{~~%F{R4d7pTWZ&4=8T}Z#Em}f)Cq>7vl~< z`7XQy_u}>VGJH9{3SWo!h*OQ?sV%Y)@h?6iiuaZ1DsWsXS9N!auE*@2V5i5+H+lG# zVl03OV^~!N(ADS~Cj5W0zDw5PY6wm%Z*mq?G&Ky40icspF!(rR$cEl-K2R7Q&ec@! z%5@Ib6U3?>(AL{A$ktrqGOk101Uelt0Z~&sfUaW-8_~)e&<>Qj3*CrrLN}xB=oWM< z&8BwhpiY`Yb9aFs7=n)(-G+7npUQ)elorrJ0W?8-0sW#1T;>Z7fg=Hklsr=bV1R@3 z0~llu+R%mqPL}lwEzD<>)$y&M?q~LEI-^$D0fovzVN-;z;#)z@-QA$}Lq{B){UciSQKVZ7)kLrm= z<##70cE+q%WMYRwr84hA&!Okh3!q;|&`ZFgUO}&-qv#lVjZUFcX$dW*Wwe}D&`MfG zr_t%O`Yv=F{T)8XK}gsq1HB{sdXJt*XTs+^5E%B6(OJT;8n!@20?H$&1Bc682j;2_ zx1ykE@P1fbK_6T)HPi(?5JZcaw@%TefZEKYRQmlszbG=G8kJtAv29{ebkO0gm_!bh zw4u$C*}Q;tl>54v@d0rH5o=v87=Qo^d9cDjSudNKINR`xx*l+#SQvykaM6KT`pfg0N{2G1J2o4Az456>l6tVm}LDXb;B!SG&UAN9$(p@5eS>!~2M!%xW ze)J2S(~o|mb!_L2JptYiE|uw`-&?r~Ts~&0sw)D*SeO&WiUNGNM?3~A zQRW^z7LNnem0&3#?*tr&Wmt|Cw2?N^xpW?#Pn+oix{xlSi>Yf5j>jsT0N)y%h_yHg zC*u^Xqf4lpw!n8Q_0fL1i#|*rp^wq5#k1V2JYC?uv0VJzK|zen-F{CO zke5iY5Ge*fb}0P-e1(Ip;M?6jok5{*k-8efgTh-+H^i>kXtiQ@q8kM|84>hI|GZnM zR?WypEzl0A67G1=ogO}VKn6j?=Goo6x7rIqk%$&!J9fgEV+U>P$2pW2v<-|+bj@gzJIB@Ezm@nk%OcF?8NGk{A_1}>w^K#7;rv_;U}Afhg0 zPm!=5&Zbu3q&;-SF7N_d!4GV~ z?Z`}5(pB^t_}&4dWepb~utipiqz-*sY3Qh{t$ZBX7h_0@t=5Ur5){O(%d3ZNL}djVKOp z!WZL9@Me4|5Tq?Ykv8M4_zJMiZQ+2is7ZjFY&bEnXKV+gX6_?{y6k`uc^NL0Fogh9 z+dv%Y*-DH~@&WCo3OGof|lX%M0Y15@kil@!qn=+$&R-Ab=I4m|H_ zd<`t_THt%z@b&lxd?UUI-^|1^ysVkNR>5~zJSf4UzNwDNT{36XJP+HJ@_sN?SS44(p51?Ce*KWd;B51 zmyy;#tP>e^A9@GxrW?U{ZveC$k-Liq>ppy6h_NQ+g};gaj^P6^>j&{c{1Cou=%LPM zRuROctDA17mr~@C<*c%;Vh*^i)7LT4ZZ9t^FV870ciPGdodveMilSm$X-=inR^fyj zk0NJ9xwEiXT+H;| z1neu_-VO*?u3p+>kMtX`cfgHBPm4Y3NZFtUguVw~*ds5%f9vG!ExfxY*lYLr0`{nH zV;{ls5fq*%o(zhai5opYH_aS;2$ST|qaCQ+XX92ciPH8p5x$QBqrd zUD@t#Fnrl&P(q3H~$!lc020 z(wphF-vgd6!@%G#E3PBY+OVWL_S9(7|h%zVK>PH5+~B_VXGG`T8PNlb}}x0b|EvzVGHLH zOV2=D5-%>CXkg)?@WO8s7EZLVaFRrl=>XmNKQBCk*dR1UtR$11L$c`YbT_?&-no-x z6FYi`IO!g`ACT%G&6+opZ;wzsSWA@sL}^;HNX3}to?qwbSSnNwn`BZ%CbMCR$wV@V zoJ;Sbd+A^4zMVi#RAdaw0J`9YU6-+aPig{I${Y-!K>SL9`PaEuHn}^&*hBDYcxgD& zRNv}ju7Y7$q0rpt2Oshz4U=7TOti)-kA)H%tsky0lg2FcRx*w?xVS6>-9s)8(Biy&T7g-(++w7nm$O= z2DcU3?jP2+lX%&@yXZsxKyw6&BL{Q{_&RyfZ4=qNB21UrSvL5DQ#wY1qzAn2A8-~~ z0p1o|N=7L2Oy1ie1e1rn6V8D?DvJFo(hDFKtsf$*0a}N=i0tZGvJPcJyfZ8Ef|5&7 z<{hMutS1}DMPwt{L@p+mkj?ZE{TqFPK1rXVPt#}Uv-I#CumM}h<>W79E4hMP2{#B= z!)823KcFAc@B6T_56Ac6gg&fhM-^WNgm!ti4`Pb};YJ&X6S%3`F!2{P474)H2daF2 zK-j=S@#4F_bt%vM%6Rb+{7ev z5yvn+5-*XM-mK)c16=nVo4EhSiC5y_?+0r0EX&Vn5kKUxITR zv|nVuV5^R}WEU~=3gqJd)y7Ard@nfwoS)oB?k5k>m+33?)dBJ#IY=I&N9mjNEw(FJ z!`2!WhA@CcHaLp$BUcAEU%1(CaQi#>u&FC&_w*339HDoY_-<%z5xNh713~^qkI_x9 zk*9#s0k4DmuxH4Aa(I3~m=gHg^mY0gJwpFshA?+Y+nf0ZBWrzuyu?oaMRJ55r+*KT zm&q&i1bu^MHHnLA5(fk?=j`$SkaCj0lM|6Um5AJ&xibUg4e}3W(Zs8l->WtJh5kx^W7v`aM?BmFgp-6=^mKSZ zlb9_jMo)(q&F*IRXRybPvs#6%4-3Qfbg?*^C`|QyhYdt$$ow977-*<`RMFAT-AiIhcBG?nrZ= z$Ia)O`|y}PJhl&yqgm#uUy4mzks*yBgOE$cxlrM3IrpF8SDd5A{O@_JW5+f4A;1Ai ztg=LjR2iR~V#&xZDxPSXGhosIX>4j<6i!wY6U`u5AiO{^&j)UQOM?*nY3TuG z0!fM*%FVCufg4u7jc+@qN|>NdOd27pr(Z*3`n8afrGzAeD)0qghl@z#1R-w?-mr`v z7^%Ig)7=qZ7tB!}422Aj%q8jK{>U$pL5|mGmVAT0ZJy_SLU9GhUx zgnTc!ClE&(>?+A~XrEGa<&31y?{Shf~>Zqfi`jfts|1CToe*c2;f*Fdrw8<0&r z+89_pa9K;1KUH#EO?gtt(8!NRaKgcj7o<6;*8@euif zTL6~d6M*9&mD z^%{B?5~xqZ1u_TM7;$icp@aZiHY7vOhLmTokQ%fWl7iMlymS*pNw?s?;42`&xEsHK zKfnELO-UW$FF33l8^Tx!}riYq+%_Hf)d( zw+2mF+yFTuy#{yC;LM-s$P?|!g}_>o9PnvVWCu5J8-W9{cm3R^KJYxV#G0ESLL}6L z8)3N8dDB`zj=!|H#Q9Syzxf9%vF$pnqW9G%IjG-}?jQ?=_N8?YA|53t8V znx$z{i_|JTM{1MSO1;wc(rcvmN&hB&UizZ+CFv{DqtZ8}Z%f~mz9;=adQ$pxtSr_V zTM;`awl20lwlQ{b?DE*|*vn$CkG&~&d+d(bQ0&gw$72u2o{arC_ETA&Y_hCf)+M`6 z_LDqDu9X|*+44#9$?~c4QhB+&Qa(-IAa9b-lQ+v3$`{L*$Xnza$lq2FMWVu_ zFe}m&*^0@E3dKxCo1#nMRdg$^R_svRuDC<7N3mCNpW*?wg{{2TFa#=jl^ZTzn) ziE4sMrc$a@Dz$2oszOz%nx?8%Em8$lD^#mgt5s`N7pSOez3L*>Ce*KPeoTEx{e=1{^)u=d>i5*2sXterR)3}bRU^^FYT`6+nin zNQ_TRNGwdOPh6R}Iq~+yhZCPoJel}$;-`tH5~ zSGz{LPJ5xYPrE^TKzm60wDwu;bJ`cQC$t}EKh>Vney%;O{Z{*HQc993sWho3sWz!D zsUfK|sV8Z5(uSlfl5S4gm9#tQ&ZN7N-b?x{86}TOPD)NqwkJE2bCd5)ekA#D@{!~> zlHX5>O;MywPB|~7E@g4bl9ZN|wv?`vK+39=TT`A(Ihyim$``s(x(PbDPN`Grbh={Q zB;91)V%-v5i>^)Au3M^Grt8#sbrn_t>uG^}+Qg^lPW?jE-KzEz&cHMot2XqhW z9@0IldrtR)?uhQV?gQONx=(bcbf4=^>m~Yly-Kgv8}vo`$@)fpho0)!>o3x8(qE## zRKG=kt^P*+&H7vPJM???`}B9~@6{jDKcRn0|BU`+{agBz`j7RW>QCuE*MFz~LI0!v zXZ^1RWEf{K8nO%phH}G9Lye)_8bXGr4euCE8NM)lY53ak zt>Js4#29Z(G$t8SjCy01G1r)HEHoAyON?d43S*UVx^a%N+1O$98oP~tW6-$9xXyT? zvCp`{c)9U9ksmtUuoo@=5dQ2-#mzuVi{$jeqbd~8E(>BwMrtPL3rjY5N>A2|w(~oAGd8&D# z*=ycxzRrA;dAs>m^G@?F^KSE<<`2zZnZGfAXa0}*C-X0<<5Q)n6H;ZV+fsL??n&L7 zx-a$a)CW@^N_`~tvD8DUr_*$4)6#0w>eCw2=B6!8^QQ&VR-~;;Tb;Hc?TWN()3&AE zkakPjj0{I5((UP$>CNdK=}Xf+>C4ksrLRlBFugB*Q~D+8 zm!@w?zajmm^zG@lroWc{UiydWAEkeqek%QQ%Q#DdCDD>((OC=@lf`byvE*3_Eyb2e zmTHUJ; zJYjj!@`2@xj4>J73};4F#)6DM#+Hm5GC~eck$&^ + + + + IssueFilterStyle + ShowAll + LiveSourceIssuesEnabled + + + diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme new file mode 100644 index 000000000..eea0b17ac --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/OlaFaceUnityFramework.xcscheme @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme new file mode 100644 index 000000000..b02d8ce17 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/_idx_Scheme.xcscheme @@ -0,0 +1,916 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme new file mode 100644 index 000000000..459aa7f5c --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcshareddata/xcschemes/mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 000000000..aac9fa5a0 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/xcuserdata/wangrenzhu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,32 @@ + + + + + SchemeUserState + + OlaFaceUnityFramework.xcscheme_^#shared#^_ + + isShown + + orderHint + 5 + + _idx_Scheme.xcscheme_^#shared#^_ + + isShown + + orderHint + 3 + + mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.xcscheme_^#shared#^_ + + isShown + + orderHint + 4 + + + SuppressBuildableAutocreation + + + diff --git a/mediapipe/render/module/beauty/ios/framework/Info.plist b/mediapipe/render/module/beauty/ios/framework/Info.plist new file mode 100644 index 000000000..8208eaf0f --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + + diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h new file mode 100644 index 000000000..51392e548 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h @@ -0,0 +1,17 @@ +#import +#import +#import +#import + +@interface OlaFaceUnity : NSObject + + ++ (instancetype)sharedInstance; + + +- (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer + timeStamp:(int64_t)timeStamp; + +- (void)dispose; + +@end diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm new file mode 100644 index 000000000..d26f91ea7 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm @@ -0,0 +1,61 @@ +#import "OlaFaceUnity.h" + +#include "mediapipe/render/module/beauty/face_mesh_module.h" + +@interface OlaFaceUnity() { + Opipe::FaceMeshModule *_face_module; +} + +@end +@implementation OlaFaceUnity + +- (void)dealloc { + if (_face_module) { + delete _face_module; + _face_module = nullptr; + } +} + +- (instancetype)init +{ + self = [super init]; + if (self) { + [self initModule]; + } + return self; +} + +- (void)initModule { + _face_module = Opipe::FaceMeshModule::create(); + NSBundle *bundle = [NSBundle bundleForClass:[self class]]; + NSURL* graphURL = [bundle URLForResource:@"face_mesh_mobile_gpu" withExtension:@"binarypb"]; + NSData* data = [NSData dataWithContentsOfURL:graphURL options:0 error:nil]; + if (data) { + _face_module->init(nullptr, (void *)data.bytes, data.length); + _face_module->startModule(); + } + + +} + ++ (instancetype)sharedInstance { + static OlaFaceUnity *sharedInstance = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + sharedInstance = [[self alloc] init]; + }); + return sharedInstance; +} + + +- (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer + timeStamp:(int64_t)timeStamp; +{ + if (!_face_module) { + [self initModule]; + } + + _face_module->processVideoFrame(pixelbuffer, timeStamp); +} + +@end diff --git a/mediapipe/render/module/common/BUILD b/mediapipe/render/module/common/BUILD index c59d1c328..8f6264362 100644 --- a/mediapipe/render/module/common/BUILD +++ b/mediapipe/render/module/common/BUILD @@ -1,5 +1,7 @@ load("//mediapipe/framework/tool:mediapipe_graph.bzl", "mediapipe_binary_graph") +load("@build_bazel_rules_apple//apple:ios.bzl", "ios_framework") package(default_visibility = ["//visibility:private"]) + cc_library( name = "olamodule_common_library", srcs = ["ola_graph.cc"], @@ -37,9 +39,55 @@ cc_library( copts = select({ "//mediapipe:apple": [ "-x objective-c++", + "-Wno-shorten-64-to-32", "-fobjc-arc", # enable reference-counting ], - "//conditions:default": [], + + "//conditions:default": ["-std=c++17"], }), alwayslink = True, +) + +objc_library( + name = "olamodule_common_library_ios", + srcs = ["ola_graph.cc"], + hdrs = ["ola_graph.h"], + sdk_frameworks = [ + # Needed for OpenCV. + "Accelerate", + ], + # visibility = ["//mediapipe/framework:mediapipe_internal"], + visibility = ["//visibility:public"], + deps = [ + "//mediapipe/framework:calculator_framework", + "//mediapipe/framework:mediapipe_profiling", + "//mediapipe/framework/formats:image", + "//mediapipe/framework/port:map_util", + "//mediapipe/framework/port:ret_check", + "//mediapipe/framework/port:source_location", + "//mediapipe/framework/port:status", + "//mediapipe/framework/port:statusor", + "//mediapipe/framework/port:threadpool", + "//mediapipe/framework:calculator_graph", + "//mediapipe/gpu:gl_base", + "//mediapipe/gpu:gpu_buffer", + "//mediapipe/gpu:gpu_shared_data_internal", + "//mediapipe/gpu:graph_support", + "//mediapipe/gpu:pixel_buffer_pool_util", + "//mediapipe/util:cpu_util", + "@com_google_absl//absl/base:core_headers", + "@com_google_absl//absl/memory", + "@com_google_absl//absl/strings", + "@com_google_absl//absl/synchronization", + "@google_toolbox_for_mac//:GTM_Defines", + ] + select({ + "//mediapipe:ios": [ + "//mediapipe/objc:CFHolder", + "//mediapipe/objc:Weakify", + "//mediapipe/objc:util", + ], + }), + copts = [ + "-Wno-shorten-64-to-32", + ], ) \ No newline at end of file diff --git a/mediapipe/render/module/common/ola_graph.cc b/mediapipe/render/module/common/ola_graph.cc index c19c3a498..859961cee 100644 --- a/mediapipe/render/module/common/ola_graph.cc +++ b/mediapipe/render/module/common/ola_graph.cc @@ -8,10 +8,7 @@ #include "mediapipe/gpu/gl_base.h" #include "mediapipe/gpu/gpu_shared_data_internal.h" -#if defined(__APPLE__) -#include "mediapipe/gpu/MPPGraphGPUData.h" -#include "mediapipe/objc/util.h" -#endif + using namespace mediapipe; @@ -101,8 +98,8 @@ namespace Opipe bool OlaGraph::start() { absl::Status status = performStart(); - _started = true; - return false; + _started = status.ok(); + return status.ok(); } absl::Status OlaGraph::performStart() @@ -121,6 +118,7 @@ namespace Opipe } } status = _graph->StartRun(_inputSidePackets, _streamHeaders); + NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); if (!status.ok()) { return status; @@ -132,12 +130,14 @@ namespace Opipe const std::string &streamName) { absl::Status status = _graph->AddPacketToInputStream(streamName, packet); + NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); return status.ok(); } bool OlaGraph::movePacket(mediapipe::Packet &&packet, const std::string &streamName) { absl::Status status = _graph->AddPacketToInputStream(streamName, std::move(packet)); + NSLog(@"errors:%@", [NSString stringWithUTF8String:status.ToString().c_str()]); return status.ok(); }