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 000000000..21594d3fe Binary files /dev/null and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ 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 000000000..b91bb9cb5 Binary files /dev/null and b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/WorkspaceSettings.xcsettings b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..8ab079c11 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + 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(); }