From 6bd85ac48759c1a26e2a24bce89ce23f70483b82 Mon Sep 17 00:00:00 2001 From: "Wang.Renzhu" Date: Wed, 27 Jul 2022 14:20:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=85=A5FaceMesh=20=E7=BE=8E=E9=A2=9C?= =?UTF-8?q?=E6=B8=B2=E6=9F=93=2070%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/beauty/face_mesh_beauty_render.cc | 65 +- .../module/beauty/face_mesh_beauty_render.h | 4 +- .../module/beauty/filters/OlaBeautyFilter.cpp | 10 + .../beauty/filters/UnSharpMaskFilter.cpp | 4 +- .../project.pbxproj | 2558 +++--- .../UserInterfaceState.xcuserstate | Bin 186941 -> 196066 bytes .../ViewController.mm | 1 + .../render/module/beauty/ios/framework/BUILD | 6 +- .../project.pbxproj | 6822 ++++++++++------- .../UserInterfaceState.xcuserstate | Bin 14074 -> 14318 bytes .../xcschemes/OlaFaceUnityFramework.xcscheme | 20 +- .../xcschemes/_idx_Scheme.xcscheme | 1904 ++--- ...ios-framework-OlaFaceUnityLibrary.xcscheme | 16 +- 13 files changed, 5936 insertions(+), 5474 deletions(-) diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc index 88c8e6425..8fea587d6 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc @@ -1,4 +1,8 @@ #include "face_mesh_beauty_render.h" +#include "mediapipe/render/core/CVFramebuffer.hpp" +#if defined(__APPLE__) +#import +#endif namespace Opipe { @@ -10,10 +14,38 @@ namespace Opipe _outputFilter = OlaShareTextureFilter::create(context); _olaBeautyFilter->addTarget(_outputFilter); + +#if defined(__APPLE__) + + NSBundle *bundle = [NSBundle bundleForClass:NSClassFromString(@"OlaFaceUnity")]; + + NSURL *lutURL = [bundle URLForResource:@"whiten" withExtension:@"png"]; + _lutImage = SourceImage::create(context, lutURL); + +#endif + + _olaBeautyFilter->setLUTImage(_lutImage); } FaceMeshBeautyRender::~FaceMeshBeautyRender() { + if (_lutImage) + { + _lutImage->release(); + _lutImage = nullptr; + } + _olaBeautyFilter->removeAllTargets(); + if (_olaBeautyFilter) + { + _olaBeautyFilter->release(); + _olaBeautyFilter = nullptr; + } + + if (_outputFilter) + { + _outputFilter->release(); + _outputFilter = nullptr; + } } void FaceMeshBeautyRender::suspend() @@ -29,7 +61,7 @@ namespace Opipe TextureInfo FaceMeshBeautyRender::renderTexture(TextureInfo inputTexture) { TextureInfo outputTexture; - + outputTexture.frameTime = inputTexture.frameTime; if (!_inputFramebuffer) { _inputFramebuffer = new Framebuffer(_context, inputTexture.width, inputTexture.height, @@ -46,6 +78,27 @@ namespace Opipe inputTexture.textureId); } + _olaBeautyFilter->setInputFramebuffer(_inputFramebuffer); + _olaBeautyFilter->update(inputTexture.frameTime); + + auto *outputFramebuffer = _outputFilter->getFramebuffer(); + if (outputFramebuffer) { + outputTexture.width = outputFramebuffer->getWidth(); + outputTexture.height = outputFramebuffer->getHeight(); + outputTexture.textureId = outputFramebuffer->getTexture(); + #if defined(__APPLE__) + auto *cvFramebuffer = dynamic_cast(outputFramebuffer); + IOSurfaceRef surface = cvFramebuffer->renderIOSurface; + outputTexture.ioSurfaceId = IOSurfaceGetID(surface); + #endif + } else { + outputTexture.width = inputTexture.width; + outputTexture.height = inputTexture.height; + outputTexture.textureId = inputTexture.textureId; + outputTexture.ioSurfaceId = inputTexture.ioSurfaceId; + } + + return outputTexture; } @@ -62,11 +115,19 @@ namespace Opipe void FaceMeshBeautyRender::setSmoothing(float smoothing) { _smoothing = smoothing; + if (_olaBeautyFilter) + { + _olaBeautyFilter->setSmoothing(smoothing); + } } void FaceMeshBeautyRender::setWhitening(float whitening) { _whitening = whitening; + if (_olaBeautyFilter) + { + _olaBeautyFilter->setWhitening(whitening); + } } -} \ No newline at end of file +} diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.h b/mediapipe/render/module/beauty/face_mesh_beauty_render.h index 77b87fcf5..451bd2290 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.h +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.h @@ -3,6 +3,7 @@ #include "face_mesh_common.h" #include "mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp" #include "mediapipe/render/core/OlaShareTextureFilter.hpp" +#include "mediapipe/render/core/SourceImage.hpp" namespace Opipe { class FaceMeshBeautyRender { @@ -39,8 +40,9 @@ namespace Opipe { float _whitening = 0.0; bool _isRendering = false; Context *_context = nullptr; + SourceImage *_lutImage = nullptr; }; } -#endif \ No newline at end of file +#endif diff --git a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp index c57f43829..56d1d5114 100644 --- a/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp +++ b/mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp @@ -118,6 +118,16 @@ namespace Opipe { FilterGroup::update(frameTime); } + void OlaBeautyFilter::setLUTImage(SourceImage *lutImage) { + _lutImage = lutImage; + if (_lutFilter) { + auto *framebuffer = _lutFilter->getFramebuffer(); + framebuffer->resetRetainCount(); + _lutImage->retain(); + _lutImage->addTarget(_lutFilter, 1, true); + } + } + void OlaBeautyFilter::setInputFramebuffer(Framebuffer *framebuffer, RotationMode rotationMode, diff --git a/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp b/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp index cd87fbd2b..f52583dff 100644 --- a/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp +++ b/mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp @@ -98,7 +98,7 @@ namespace Opipe { _blurFilter = GaussianBlurFilter::create(context); addFilter(_blurFilter); - _unsharpMaskFilter = UnSharpMaskFilter::create(context); + _unsharpMaskFilter = UnSharpFilter::create(context); addFilter(_unsharpMaskFilter); _blurFilter->addTarget(_unsharpMaskFilter,1); @@ -120,4 +120,4 @@ namespace Opipe { } } -} \ 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 index f4e91d482..5c1285085 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.pbxproj @@ -7,6 +7,7 @@ objects = { /* Begin PBXBuildFile section */ + 3675CCEC28910DDB00D84244 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3675CC3128910DDB00D84244 /* CoreImage.framework */; }; 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 */; }; @@ -29,6 +30,426 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ + 3675CC7028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1B38F435A00000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; + }; + 3675CC7228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB13FC2509200000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; + }; + 3675CC7428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB160EC260800000000; + remoteInfo = _idx_annotation_renderer_8D68840D_ios_min11.0; + }; + 3675CC7628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1CE57CAE800000000; + remoteInfo = _idx_annotation_renderer_8D68840D_ios_min15.5; + }; + 3675CC7828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB19D2AF81E00000000; + remoteInfo = "_idx_core_core-ios_7905855A_ios_min11.0"; + }; + 3675CC7A28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12F27755200000000; + remoteInfo = "_idx_core_core-ios_7905855A_ios_min15.5"; + }; + 3675CC7C28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E22D8E4E00000000; + remoteInfo = _idx_cpu_op_resolver_519CBACD_ios_min11.0; + }; + 3675CC7E28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB135330E2600000000; + remoteInfo = _idx_cpu_op_resolver_519CBACD_ios_min15.5; + }; + 3675CC8028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1D5E0B49400000000; + remoteInfo = _idx_file_helpers_cpu_util_33FB6263_ios_min11.0; + }; + 3675CC8228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB14766558400000000; + remoteInfo = _idx_file_helpers_cpu_util_33FB6263_ios_min15.5; + }; + 3675CC8428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB161D5A49A00000000; + remoteInfo = _idx_file_path_E61EA0A1_ios_min11.0; + }; + 3675CC8628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1B0FBE87A00000000; + remoteInfo = _idx_file_path_E61EA0A1_ios_min15.5; + }; + 3675CC8828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1608CB6CE00000000; + remoteInfo = _idx_header_util_15139FDF_ios_min11.0; + }; + 3675CC8A28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E2CC764600000000; + remoteInfo = _idx_header_util_15139FDF_ios_min15.5; + }; + 3675CC8C28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB175EDC0CE00000000; + remoteInfo = _idx_image_F5FF5697_ios_min11.0; + }; + 3675CC8E28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1BB6F5DD000000000; + remoteInfo = _idx_image_F5FF5697_ios_min15.5; + }; + 3675CC9028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E25C746E00000000; + remoteInfo = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; + }; + 3675CC9228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB15E75465E00000000; + remoteInfo = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; + }; + 3675CC9428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1112804BA00000000; + remoteInfo = _idx_image_opencv_9E4E8A87_ios_min11.0; + }; + 3675CC9628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1A8F5B73600000000; + remoteInfo = _idx_image_opencv_9E4E8A87_ios_min15.5; + }; + 3675CC9828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB117E02C1400000000; + remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0; + }; + 3675CC9A28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E77A1E6A00000000; + remoteInfo = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5; + }; + 3675CC9C28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1F5BD4E1400000000; + remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; + }; + 3675CC9E28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB177AE156000000000; + remoteInfo = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; + }; + 3675CCA028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12D97516200000000; + remoteInfo = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; + }; + 3675CCA228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1F879A06600000000; + remoteInfo = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; + }; + 3675CCA428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1042285A000000000; + remoteInfo = _idx_math_68C63536_ios_min11.0; + }; + 3675CCA628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1D93FD90600000000; + remoteInfo = _idx_math_68C63536_ios_min15.5; + }; + 3675CCA828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB16F3388EE00000000; + remoteInfo = _idx_matrix_E57ACF41_ios_min11.0; + }; + 3675CCAA28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1BB36203600000000; + remoteInfo = _idx_matrix_E57ACF41_ios_min15.5; + }; + 3675CCAC28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1D6736AD800000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + }; + 3675CCAE28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1616461B400000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; + }; + 3675CCB028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB105A13E0A00000000; + remoteInfo = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; + }; + 3675CCB228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E364A8E800000000; + remoteInfo = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; + }; + 3675CCB428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB152022CF000000000; + remoteInfo = _idx_olamodule_common_library_63E72567_ios_min11.0; + }; + 3675CCB628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1DE300BF600000000; + remoteInfo = _idx_olamodule_common_library_63E72567_ios_min15.5; + }; + 3675CCB828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12CA286D000000000; + remoteInfo = _idx_op_resolver_0836C983_ios_min11.0; + }; + 3675CCBA28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB10343A59400000000; + remoteInfo = _idx_op_resolver_0836C983_ios_min15.5; + }; + 3675CCBC28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB15757E2E000000000; + remoteInfo = _idx_profiler_resource_util_35C39BA3_ios_min11.0; + }; + 3675CCBE28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12CFA860400000000; + remoteInfo = _idx_profiler_resource_util_35C39BA3_ios_min15.5; + }; + 3675CCC028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB196E75F6C00000000; + remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0; + }; + 3675CCC228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1C0AA537800000000; + remoteInfo = _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5; + }; + 3675CCC428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1E9CE10DC00000000; + remoteInfo = _idx_resource_util_C5C5DB93_ios_min11.0; + }; + 3675CCC628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12E009AA400000000; + remoteInfo = _idx_resource_util_C5C5DB93_ios_min15.5; + }; + 3675CCC828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB10418151E00000000; + remoteInfo = _idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0; + }; + 3675CCCA28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB13330DE2400000000; + remoteInfo = _idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5; + }; + 3675CCCC28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1EDDD3E1000000000; + remoteInfo = _idx_tensor_7303F5EA_ios_min11.0; + }; + 3675CCCE28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB147F7AD0200000000; + remoteInfo = _idx_tensor_7303F5EA_ios_min15.5; + }; + 3675CCD028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB17278B65600000000; + remoteInfo = _idx_tflite_model_loader_254BEB33_ios_min11.0; + }; + 3675CCD228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB17982938200000000; + remoteInfo = _idx_tflite_model_loader_254BEB33_ios_min15.5; + }; + 3675CCD428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1535ED83200000000; + remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0; + }; + 3675CCD628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB120769C4400000000; + remoteInfo = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5; + }; + 3675CCD828910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1C76D25EE00000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; + }; + 3675CCDA28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1258576A800000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; + }; + 3675CCDC28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1CAFF3BDC00000000; + remoteInfo = _idx_transpose_conv_bias_E3459F40_ios_min11.0; + }; + 3675CCDE28910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB17C69A2E400000000; + remoteInfo = _idx_transpose_conv_bias_E3459F40_ios_min15.5; + }; + 3675CCE028910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1674D2B8C00000000; + remoteInfo = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; + }; + 3675CCE228910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1BF5A686400000000; + remoteInfo = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5; + }; + 3675CCE428910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB12CFEB45C00000000; + remoteInfo = _idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0; + }; + 3675CCE628910DDB00D84244 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 6BF2BEB1A6704F1C00000000; + remoteInfo = _idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5; + }; 36B239A428893CEE00A41D9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B2399C28893CED00A41D9E /* OlaVideo.xcodeproj */; @@ -71,440 +492,6 @@ 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 */; @@ -516,345 +503,9 @@ isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 1; - remoteGlobalIDString = 87427C8CCEDD951E00000000; + remoteGlobalIDString = F2FE34CE0C5C7AFE00000000; 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 */ @@ -873,6 +524,7 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ + 3675CC3128910DDB00D84244 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; }; 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 = ""; }; @@ -910,6 +562,7 @@ 36B239C328893FD700A41D9E /* AssetsLibrary.framework in Frameworks */, 36B239C528893FDD00A41D9E /* OpenGLES.framework in Frameworks */, 36B239C828893FED00A41D9E /* CoreVideo.framework in Frameworks */, + 3675CCEC28910DDB00D84244 /* CoreImage.framework in Frameworks */, 36B239CA28893FF700A41D9E /* QuartzCore.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -968,6 +621,7 @@ 36B239B828893D0000A41D9E /* Frameworks */ = { isa = PBXGroup; children = ( + 3675CC3128910DDB00D84244 /* CoreImage.framework */, 36B239CB2889400700A41D9E /* CoreMedia.framework */, 36B239C928893FF700A41D9E /* QuartzCore.framework */, 36B239C628893FE200A41D9E /* Metal.framework */, @@ -983,116 +637,66 @@ 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 */, + 3675CC7128910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */, + 3675CC7328910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */, + 3675CC7528910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */, + 3675CC7728910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */, + 3675CC7928910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */, + 3675CC7B28910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */, + 3675CC7D28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */, + 3675CC7F28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */, + 3675CC8128910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */, + 3675CC8328910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */, + 3675CC8528910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */, + 3675CC8728910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */, + 3675CC8928910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min11.0.a */, + 3675CC8B28910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min15.5.a */, + 3675CC8D28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min11.0.a */, + 3675CC8F28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min15.5.a */, + 3675CC9128910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */, + 3675CC9328910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */, + 3675CC9528910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */, + 3675CC9728910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */, + 3675CC9928910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a */, + 3675CC9B28910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a */, + 3675CC9D28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */, + 3675CC9F28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */, + 3675CCA128910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */, + 3675CCA328910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */, + 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */, + 3675CCA728910DDB00D84244 /* lib_idx_math_68C63536_ios_min15.5.a */, + 3675CCA928910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */, + 3675CCAB28910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */, + 3675CCAD28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */, + 3675CCAF28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */, + 3675CCB128910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */, + 3675CCB328910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */, + 3675CCB528910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */, + 3675CCB728910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */, + 3675CCB928910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */, + 3675CCBB28910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */, + 3675CCBD28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */, + 3675CCBF28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */, + 3675CCC128910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */, + 3675CCC328910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */, + 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, + 3675CCC728910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, + 3675CCC928910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a */, + 3675CCCB28910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a */, + 3675CCCD28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */, + 3675CCCF28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */, + 3675CCD128910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */, + 3675CCD328910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */, + 3675CCD528910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */, + 3675CCD728910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */, + 3675CCD928910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */, + 3675CCDB28910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */, + 3675CCDD28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */, + 3675CCDF28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */, + 3675CCE128910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */, + 3675CCE328910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */, + 3675CCE528910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a */, + 3675CCE728910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a */, 36B23D66288A7FB600A41D9E /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, ); name = Products; @@ -1164,6 +768,426 @@ /* End PBXProject section */ /* Begin PBXReferenceProxy section */ + 3675CC7128910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; + remoteRef = 3675CC7028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7328910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; + remoteRef = 3675CC7228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7528910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_renderer_8D68840D_ios_min11.0.a; + remoteRef = 3675CC7428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7728910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; + remoteRef = 3675CC7628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7928910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_core-ios_7905855A_ios_min11.0.a"; + remoteRef = 3675CC7828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7B28910DDB00D84244 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "lib_idx_core_core-ios_7905855A_ios_min15.5.a"; + remoteRef = 3675CC7A28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7D28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; + remoteRef = 3675CC7C28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC7F28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; + remoteRef = 3675CC7E28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8128910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a; + remoteRef = 3675CC8028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8328910DDB00D84244 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a; + remoteRef = 3675CC8228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8528910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_path_E61EA0A1_ios_min11.0.a; + remoteRef = 3675CC8428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8728910DDB00D84244 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_file_path_E61EA0A1_ios_min15.5.a; + remoteRef = 3675CC8628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8928910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_header_util_15139FDF_ios_min11.0.a; + remoteRef = 3675CC8828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8B28910DDB00D84244 /* lib_idx_header_util_15139FDF_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_header_util_15139FDF_ios_min15.5.a; + remoteRef = 3675CC8A28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8D28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_F5FF5697_ios_min11.0.a; + remoteRef = 3675CC8C28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC8F28910DDB00D84244 /* lib_idx_image_F5FF5697_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_F5FF5697_ios_min15.5.a; + remoteRef = 3675CC8E28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9128910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; + remoteRef = 3675CC9028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9328910DDB00D84244 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a; + remoteRef = 3675CC9228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9528910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; + remoteRef = 3675CC9428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9728910DDB00D84244 /* lib_idx_image_opencv_9E4E8A87_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_image_opencv_9E4E8A87_ios_min15.5.a; + remoteRef = 3675CC9628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9928910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_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_EDD516E8_ios_min11.0.a; + remoteRef = 3675CC9828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9B28910DDB00D84244 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_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_EDD516E8_ios_min15.5.a; + remoteRef = 3675CC9A28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9D28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a; + remoteRef = 3675CC9C28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CC9F28910DDB00D84244 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; + remoteRef = 3675CC9E28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCA128910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; + remoteRef = 3675CCA028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCA328910DDB00D84244 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; + remoteRef = 3675CCA228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_math_68C63536_ios_min11.0.a; + remoteRef = 3675CCA428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCA728910DDB00D84244 /* lib_idx_math_68C63536_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_math_68C63536_ios_min15.5.a; + remoteRef = 3675CCA628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCA928910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_matrix_E57ACF41_ios_min11.0.a; + remoteRef = 3675CCA828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCAB28910DDB00D84244 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_matrix_E57ACF41_ios_min15.5.a; + remoteRef = 3675CCAA28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCAD28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; + remoteRef = 3675CCAC28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCAF28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a; + remoteRef = 3675CCAE28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCB128910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; + remoteRef = 3675CCB028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCB328910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; + remoteRef = 3675CCB228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCB528910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; + remoteRef = 3675CCB428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCB728910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_olamodule_common_library_63E72567_ios_min15.5.a; + remoteRef = 3675CCB628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCB928910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_op_resolver_0836C983_ios_min11.0.a; + remoteRef = 3675CCB828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCBB28910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_op_resolver_0836C983_ios_min15.5.a; + remoteRef = 3675CCBA28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCBD28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; + remoteRef = 3675CCBC28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCBF28910DDB00D84244 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; + remoteRef = 3675CCBE28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCC128910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; + remoteRef = 3675CCC028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCC328910DDB00D84244 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; + remoteRef = 3675CCC228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; + remoteRef = 3675CCC428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCC728910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; + remoteRef = 3675CCC628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCC928910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min11.0.a; + remoteRef = 3675CCC828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCCB28910DDB00D84244 /* lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_switch_mux_calculator_container_util_sink_switch_container_switch_demux_calculator_09F5AE46_ios_min15.5.a; + remoteRef = 3675CCCA28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCCD28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensor_7303F5EA_ios_min11.0.a; + remoteRef = 3675CCCC28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCCF28910DDB00D84244 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tensor_7303F5EA_ios_min15.5.a; + remoteRef = 3675CCCE28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCD128910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; + remoteRef = 3675CCD028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCD328910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a; + remoteRef = 3675CCD228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCD528910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a; + remoteRef = 3675CCD428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCD728910DDB00D84244 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a; + remoteRef = 3675CCD628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCD928910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; + remoteRef = 3675CCD828910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCDB28910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; + remoteRef = 3675CCDA28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCDD28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; + remoteRef = 3675CCDC28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCDF28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; + remoteRef = 3675CCDE28910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCE128910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a; + remoteRef = 3675CCE028910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCE328910DDB00D84244 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a; + remoteRef = 3675CCE228910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCE528910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min11.0.a; + remoteRef = 3675CCE428910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3675CCE728910DDB00D84244 /* lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_validate_name_name_util_options_field_util_options_registry_options_syntax_util_options_util_packet_generator_wrapper_calculator_proto_util_lite_rectangle_util_subgraph_expansi_etc_99160F50_ios_min15.5.a; + remoteRef = 3675CCE628910DDB00D84244 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */ = { isa = PBXReferenceProxy; fileType = wrapper.framework; @@ -1194,445 +1218,11 @@ }; 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */ = { isa = PBXReferenceProxy; - fileType = wrapper.framework; + fileType = wrapper.framework.static; 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; @@ -1640,342 +1230,6 @@ 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 */ 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 index f32487294d933b460ae271ab6f73f189f85a6498..97d10fe35808a298fcb09ce076369c2387a6e8e0 100644 GIT binary patch literal 196066 zcmeFacYIVu_xOLymb>?E@4eS--*lz--a;>ilnn`lB&N`jJEDNni-KSwfGr>(O^SdG zDJoT|Di#zhs35(5=k8{e5KtaI_YbBYR$Nq3847)lpa_QG z2n%5&9E6LIz3s!I4o%0`XGIgen@|00P+|z7%4*@M}{M#kueC30OV<80`e>}4Vi^JkIYAwAa5XV zB5xtfkyXfQWE1i(vKe^~`4HKT>_GM+`;h&}LF8-XJLDAdD{>mSh+IN0BUg|cD2lRB z0_CCY(avZWv^&}Z?SuA3A49XzJTxCIM2pa&XbD=5R-nVt5$G6nEDF#k(Fy28bTT>x zoq^6opF^KV=c5bISI~v%67*H{O|%AGj;=sgqifLh=mvB%x&{3J{Se)b?m$09KSTGS z`_Y5wA@msfCHf8eE&2ocBYFe9i6Iz@VHl3FFgC`)xEO))F&QSu6qpXvV|L7eIWZUJ z!IH2DmW-uf9k7mAC#*Bp1?!4+!?LjMSP!fx))&jca<8>e>?HOJb{4yYUB*!y!%3XNZMYqG;7;6yyKxVmgnMxx?#IJ;2A+vG#+%@6@V0n6 zyc?c{55bG^p?C>iikIP!93-HzW8hkCj4u1z< zk8i*?;+yby@y+=A_zrwGz6U>qAI87Izr`=(SMaO&HT*h$1HZ{aSSSl);Vdpo$P%%{ zEG0|DGO^4o3(Lx~vAirFs|Bkis}-v?s|~9ys~xL7s{^Yes}rjms}C!iHIP-vDq=m( zDrY^*n#`KQn#!8Sn$DWRn#r2Qn$4QSn#X#D^(yN%)^gSg)=JiT)&|x-)_&Fj*5|A* zSO-~$Sch3hSVvjMSjSmEvQDy2vwmY;U|nQgVk2yntzm1~I<}r|U>n&cwwY~VTiG_Y ziydI6uv6I$*^St(*sa;w?1AhYb}l=QozIT43)q9$h3q2sPY8LnUlgv<)m@aIT@Tx&Lf;hISn`sIZZij zIBhwdIbArtIej>NIk}uX&S=gU&REV9oN*kQ12|7|#&e$HJk5EAGlTOyXD;Uz&O*)` zoHse|b3WjF$oYt~jq@>QJ7))HCubMu6V4vaLC%+)uQ)$&e&qbd`JKz<5?mgaTgO6mBZFBexT`Gq(%3E4Ldri`$*sgWHqai`$Qz%Pr&< zaUbWFb4PJUb7ynsaG&Eo&z;Mi$9;i2pSytjBKIY3HTMnfa_$Q5JKXi$_qgwKk8qE2 zk8!``e#QNodz||X_gn6F-0!(3xxaDGanEzFb8iqFf=iePGhrdDgpIHh4#G*e2shy& z{6q?oN<2z5AX*SDiB?1>qBAjwC?txA!Nd@vm>5cw5T!&J@iWdC$AB&F|P@)DX$r?Ij;q;C9f5)HLne? z122o$o!6JwkC(^G=S6u#c_q9FyotO?yk~gN@+R}9@TT&n@uu@;@aFIq@Tz%>cs0DG zyw$ulyia+b@pkj}@b>cd@%Hl$@IL2#!8^!1%KMggl6Q*t2k#8;GVcm0C1s?XRFFzi zMXE^+sU>x!o-~s#(oY7+G%}scAe)d)$v$LXvLD%>96&xsW|ITS95R>8BL|TsWF=We zjwPQUCy*1#spL#@7P*kDCKr*5$tC2gz2rV} zKY4)socw}3NFE}OkzbN0$REfb$&=(|@(OvCyhdIpZ;&@BgyK;`N<>L11*N1kl$J73 zM#@52DF@}GT$GpcQGP0!N}*DzG^zpBglbB)6$=C9Ad=uZyxAPr* z4?l??;0O81{1ko$Ka<~(--zFg-<;o?--h3T-;v*y-;Ljs-;3Xm-=9B_pTm#x3;2Wi zL-?iqGJYk$ia(M+ivI+E9Dh9jDgGq>GyJLiY5ZCI+5EZudHfgoFY&ASi}ypmutvC4 zxLUYIxK_AXxJ7tScu06yctm(qcue@E@GIfh!sEhkgeQc*2!9ox7XB$bC%h)SF1#VU zDdLIqF zL9|h{N%XF0v*>-%4$*GW9?>DuVbKxMQPFpz??qQd*F@JvH$*qZh!_=PVqDA;v&B5I zSS%4s#cHueY!O?OI7 z#Y4mu;!5!p@l^3N@pSPF@l5e7@oe!N@pIzm#q-70;zi;&#BYk<7OxVo7OxS%E8Z;r zLVQqsNPJj)M0`|yO#G$zEAiLj7c)l$a!DiA7?S z*d%s|L*kUUBwk5Gk}OG)JR*5i(p=I)(o)h&(n-=;GDuP=DUuA943QK|hDu5#rIIqq zYb0wW>m=_;)=M@>HcGZgwn;vb zd@A`|@`dD}0{Dt=^$yLv`G56v|ReEbh31c zbgFckbh>ngbf$EcbhdPkbe{AT>8sM$q|2o%q${QCr5mLCr2C}@q@PQ_kRFsCk{*^G zksg&ElOC7;C_O1XE&WY;L3&YoNqSj&MTW_6nNFsc8DvJ8NoJN=WLB9?W|ui+9$82h zmZi%wWKCpEWzA&mWbI{nvV2)oRv;TBE0h(<2Fr%Xie*D(kIP2LM#{#?XxSv$GqPu8 zvt+YnOJ&PsZ^@R+R>)S$-j=PBt(L8kt(9$%y(jxvwq3SIwpX@KwqJHsc1-rC?40bp z?1Jo~?2_!V?27EF?3(Pl9F-GtpoWGc}kH|tW+yCO080-v?=Y%2FixYM#{#@Cd#JDX3FNu7Rr{&R?2qD zuF7u8-pW489A&ODPnoYQRt{A@t(>5osGOvHM)|CAvT}-Ys&blgx^lL1zH))GTDeGB zqg<+7rd*+1seD_xLAg=6UwJ_Jx$+C;LFFOkVdW9!QROk^m&$LHCzYp_zbP*$FDfso z5EZJ@sI)4bO0P1gj4G4Ltg@)ADx1os3aEmrR8^X)k*cw(iK?lpt*V_WSCyyAS4C9? zszItkRgr42YKW>>Ri+xQ8lf7g8mFRFlT^>Bo>fg&%~s7(EmOUvTCQ55TB&+lwMw;G zwMMm8wNABB^}cGmYKLmCYM*Mq>Zt0N>QB`<)p^wg)kW1M)n(Nc)m7Cs)pa$hCe%W; zNUc(<)f%-$ZB;*_epKB+-B8^~-B{g3-BjI7-CW&5-A3J6-9_C~-AkRV9;nVy=c)&* zhp5M^pHe@qo}iwno}_+8{j7SjdWw3gdZv1w`UUkX>V@hz)NiV5)JxT?)oawBsy|cj zR_{^oRqs>pS07M+uKq%OP<>SWt@@<;l==_#8TDE974=n(Oe5DQG)j$1qt<9NT8&Pl z*BCSwjaw7Y1U2cJ3{9ry5lu5qb4@=@f6V~RW14KuKuwM&SCgm7*F-f%nljBW&2Y^) z4Xpv1XEe`h7HJl1mS|qpyry|w^M>Y4O^s%$W|?NC<{iyu%@)nan(dk$nw^?mn*Evs znqM@(YEEl@)BLXaLvu!RR`aLkoaVgdvKG;zTCSGRinS80R4dc!w0dodHdULZP1j~< zGqsOsAJsO{Hq&_SfcXquR0BC$!_Vv=(Te)Q;CarF~jE zK|4`9SvyNRTl<1`zIKszv37~}Rqb2a<=T(6+qFBiJGHyCpJ+eTex}{6-J{*B{akxY z`>pmn?a$g@w7+UkYtL&h=!80vPOOvYq&k^Su2blgI+aeX)9Y+Hk1k0U(Ix9rbPaS3 zbv<-Fb-i@Gb$xVwb^Ubxbpv#d>9Tcsy1}|K-Q&8Ex>35(x-q)3x~Fv$bT8{((JjlW!2>z3$V)xD;BUH67=nQpaijc%iElkP*^N4jmgk9E6sdvqstr*uE*e%Ae>`&D;Z z_nYo_-5PP8E>&NKF>Yvb$)6;sOe^NhQKT$tTKS%$Z{w4j( z`d9R?>)+77r+;7nf&N4NNBV90kM-O2JM=sCyY##DU+9nNzto@5|DgX-e^URu{tp9T z;2B5*W#AhG2BAS@5E~>0sX=Kl7;FZ+!DsLr0){k0x}me7i=nHbn<2~4-O$6()6mP% z+t9}_z>sf<8ip8(4V8u}!!W}WhH-|uhIxh;4D$^O3@;j9GQ4bf#jwy&ZFtqN%7QKw-xHyPhGZZ>W)ZZ*DV zeBbzi@k8Tw<8I>~;}^z*#;=XXjo%ng8GkaNCd`DJSSGfKW8#_!6VF7ND3i#fH0ezS zlf&dRxlBP*$kfKv*3{0_-qgX=(bUP*+0@0<)zr<@(=@=8XUaDfn}(W7Ov6mWP18*? zOfyZhOtVdMOwXB~H_bK8GreGX$+X1us%fcdnQ4t_t!bTUi)pLrkm<1Li0P>5nCVN? zSEjE`$4%duzBT<|`qgyW^rz{Z>6+=f>4xd1nQJD@X0yd?HQUT~v%~B(yUcF0$DCvi zm{ZMZ<_6}5=9cDG=GNvm<}T*0<|6Z8^AK~fd8oO>Txu>eKW;8JSD1&JpD>RzKW(01 zo@SnIo?)J8e!)E7yvn@VyvDrNyw3cNdA)gqd82ug`CapS=I!Pk=H2E!=0oPg<|F2# z=40mX%_q#)%-78~%r`BF1+`!n+`_W3EgTDJkyxY_wMApGSgaPC#cuIg{FauMR+iS5 zHkP)Qc9!;*4wjCVPL|G=EK6U@KueCL$THY6#8P3Yv`n!~wM?^2x6H82w9K;1w#>0S zXL;T--%@Q^WLa!^(^6wuWm#=mV_9q2Y}sNtXgOp#Y&l{%YB^^4((;w%Ys+!VH76niJN>l*7?>pJT@)=kzAtRGr;T6bCZTMt-2w|-$gX#LuH+ z!+O((*iakW#WFA7n4I z7ug5fOYBwlVfHchvG%9!6YLZ1lk79>GwpBMYwSzy%j|F2m)lp^SK8mUud=VUzhmEG z-)i4x|Jc6UzQ?}TzR!Nde$;-}{-^z%{k;8x{i6Mn{j&Xv{i^+%195O20*BC{bf_F^ zhuL9qWI7&kJnCrRXy|CXzFO@Xzpn3=;Y|^=;7$;c+8RQ80g4x6gdVvo^*_N zJmq-WF~Kp>G0E|a<5|aK#}vm5$6Uue$IFga9IrdxaJ=cLajbHzc6{Ra)bW{Pw_}fE zuVbHMzvF=8bH^8sBaUwz-#Sh@PC5Q?oN=6W{OP#rxaO2Q6;7p7 z)z8)6HNf?lE88{DmG2tjDt48-DqN#oV_aihPq-$yCc0j6Ep%187P%I?mbhMZz2v+EbvuddUs-(0`D{&1ahU3H^w z%uTu}x6Cbf``mtaz#Vjl++labo$O9=r@GVJkGPwa&L2g?B4F);oj-~%>B9h3->Yim+lkpAKX8>Pr841|KYykzTv*F4S18Q_U}3Os{6 zg`Of$iKpB%#xvFfJQF+J=LB?p4U7}JiODp-1EKXgy)p!C(mimZ=SQBKRp*cmps=z*OSmBEQyoEO`?+cN#Z0)k|If&q)pN# zS(2=|NjXV_l8TZ_lgg5YC5=j=lR(nM zq)ACrl4d2%PI@6}e$v9E>ZI3`-bh-Wv?^(R(w3yHN!yZkChbW&kaQ^NSkkvi-z9yY zbT#Q(()FYpNjJTS7xiLZ+{^N^y&NysOL%!+(o1>yUbR=_)p~Vaz1QG1dQD!3H|Py{ z!`_HD+1t?D$lKK0)!WUR!c-lx6Kc%Su7 z^G^59_RjIn^S(PKwpWk)K}(v+*j_a z@Qw71^3guvo9LV5o93JDo8g=3o9kQPd&jrlx52m3x5@XeZ?kWUZ>#S;-}}A~d>{Hg z_U-U};``M1rSB`>*S_PvZ+zeSzVrRzJL5a+`_p&Mciwl!chz^zkNEk1fnV;|`gMN2 z-|V;h9e$7B?+^Hc{$ziOKh@vT-^$kNOMzgZzd5 zV*gNog}>52!avdv{7?GF`=|S7_-FcO`Dgp*_@DDv``_>{^RM);@vrr-^KbNT^1tu@ zz`xzU!@twN%fHvZ&ws>!)PKx>-haV=(SON**?+}<)ql-@-G9S>Gk^rJ03KikhyXvJ z4;TW*fGJ=OSOV67E#MCX0>MBi&?L|$&@0e8@K_)>kQW#fC=3(_h6WxFlm~_dMg>L( z#s$U)o(jAecq#C5;FZ9_Ky_eIU~ync;MKrufttYEfmMO^fenH810Mu-1wILU8u%=* zFK{&QZQyj^OyF$bLf~THYT#NB38F!EkP{?>R8SNY2jxLUP!rS!jX_h;7PJTb!IWU5 zV6$NJVC!J}VCP^~uvf5muzzqsFejKB%nRlRhXyNyPXwO~jt@=@P7Y2F&JNBEE(pFD zTo|kl)&$=UZVGMwk15_&Y$Ak-w(G}JQGD%3jECe$_5JCqk16e(3H^B(DR{}La&FGhL(j^hSr4Ehu#gn7y2l)EwnSVKXfE?B6KSB zQ|NT)Oz3>*a_D*(4YR|XFd3%8{IDXd4?Dw2VQ)AX4uw;~8Q})uCgG;xmf=?6cH#En z&fzZMuHnAnobZrvX}Bz086FWH6Q;vYg(rod2~Q1A3(pGA4!;;)9Igp353dNX4zCHX z4{r!>4sQv65dJW{J-j2lGrTLjJG?)9Ec{*gbofm8eE4$sdIXKIBfN+pB8*5QNfB?v z7x6~|kzgbg2}dH4+Bhon1GSVv2DbhL8E7CjCKQbVaA1RGgM21I3N5)0QM`jU0=7 z8~HABD)Lk0x5%Z)<;ay}Rx&%8)5Bg;Ra|@k5gctnx&=qlQT1#`cqQVlKmN}na%wvX_0V7vrtNUT3T8{vKFx;fj1EyqDKsf5iucV z#DZ868_lLUG?yl59!=5|&8G!#A`ZlfxDYquL6Q(J;zRtjkQM>{1i*g=@D~97TEJfi z`0D|G1MP&`H7k$i3@IxuDygh!npasg4DMg&XN$Ehq6Ils#g#4diz-XYW4qcFtxC&# zbn8&jKNc*Sl~))Y8ifhO|Lj&((jr<>SyYl!3HQ#k#i0&46_w3Phn5vbVS-(lE%k~@ znDKbDW;qpb=bRB&R5`L+w5+romWU`(IK7HW@=J$TKrQ0GH7zgCDH#N%l~lHf=2i`A zTT)O8gJ(sH;eLEH|F7WcZqYm#Ca!ZLF-B!xq8uMVS|Nd@$fHODq#@D>X^b>Mnj+1R z=12>qB`u~Uw3L?7a#}$vX%(%eHMDjq(i&-lv_;w>?U4>hN2C+d8R>#_rFC=?-H2`n zuxkKs2=JzWx(WC^z!w011EyS4dgqnqM*}f^2Sv-<7gYx8>J@06Q#B~sF*>xgd}Kn` zY_SHy(zU86Z%BvI(joB(wehmWu6U9##2r%W!W?IaN5~dG@{b{-gK{dWDms;xv??l& zW{rf^GBm5Ssyr{+9BP~`POlTWZAoRcya1Bhtg5IuKU#i!F0vpVBXdi0${{qtIx+8* z-IgWM@Wlnx%Rh2QI-Y&6Dn189I4yA(R2{I7LL2{8iT2Gs33vFA1 zM3Dky5K>4xXcz6KJ+$)xG6dS7Vq_>%f|N2=C>J)Oe(>M&XfbSb!=f}o8)*Zqz!Clt z41E4FSabfNF~S}R2Fqj3tZ{KpRY_i9R42|}V{~E36(J2eIq($)SVZA$Lb&ef{xmBZ4G3n<2S$aw&y&ye3CognsV&h_o zS^ww6l0#`}$>C76PGV2R60`sBiKV85Qj#;%U}ACeKM|RP1Qsr&o$-R2j7-TE%Q|Is ztg6h(EsnM*g66EWB&U4jVq`Kh6&cpQQ`X;~CDNFV%!sFv_+U0Nr|t)Hk$H7LSb)5O z1QsJNA}=8?(_Y$72Nxp?k!oZS9i}sAXl!mRxz}Tv^<|6m3t;1hwI1wI0c~$^I5eQ; z(UMVxRlx*+6~RG8m4#Kg!J*OoqMWj#vZx=1fKB}G4ZQjft!XGNvaxANC=!(!K4^?21CB=ZN(Vfy#nnsMoD3 zy&Y32lr4VZ!K+l9Q<6V4r+i3Uqr_j?!(owT=TtI19faX8o#FtkLEb?Ei;%U*Iyyop zFGAKM8|V}|jp;5liOwuhI~_{%Vm)cafW$Xlat1{!_QwVyTac{_>C`xe?;{^TW59Hg zBNrj>Bg5h$K0>xuBirb7I#rA$P}_-o%81{Ed_rf^k1*nQL-CLP@8S>qm3SiQL&(wF zlKv7V-H>T2%)se*y$IhUKOli>;z$=1b#!#GOhG?CiT-dv?nfZM%2wmYvnIL(Asf+jj1h-M(d?I|XRjyGzqfS$_pE*Gr*i z+pMyNTg z4zydfCM_#kxfp)JMTSA^5C4FJz0spXK67ZS&pbLKEzM_6PstoRwzddR5=}w^E5s(0 zLiwlw6`~?kj7m@`DnsR{0#%|aRE=s-EviHHr~x&iCe(~tP%COf?WhBFqAt{pdg%6a zN4hiJmCmAj(7otBbU%6kolWP^d32N>L>JLR=%I8e{Wx7gSJA`ik@RSKEIp0}^mzJd zdLkpE|=-u?U^aX%Y05t+M4WMlSIsl;M0DT&uF97r{fW8ONF93Q9pjQDV z1egV2DFAB?u>Jrm2iQb_%?H>DfPDb4F97ya9l+5}F~B=yi$^57>inV#ID?1|%`F}Y zjdn$4PTr90f^yga-=V(_C#S=5kA|GFV6B)?ZE`9K8-`Oe(=yVNGa~6}$*CbYU&=^H zz9meouMg#<7UZR++}c5+Sut%o-Jdp*g3Od~W+bh?Hlg(7NGhDLg;FAs^psRMi%h*u zn@BVRjysZb>uA$ErcIao(5sb8`!B&2}8(v~W6{3P(~h z!agQYnXV^q(n1eWsCL=wRnO9$%)RfE!= z8PX#e^%{6)PFfU>HEyk_mt)!#->)|J4>6qh!&=OX)X`>fOdGf!c|Q=tMw*)od!qUf z*DIUkaJ{mDWas79H8*d>v?;q!ZKC&IHjJrC%ghPaDVw)q+LYg?HU+uq1!=kI^~DO7S}}ZHC>SHg_Fq-C=}& zYx%{D-2b&bv5m^So%)>AY+oRS)@KgmqbOis^8 zO%1^*Xe!*IN=dmL;N(a?92DKwoW6+Z^5lJ%%w5fJeN$7fi-Kkfj=^&3)YH+JHcvg^ z=2U+gb$ii3ghOFwuyL!UIUZAH!hI@pw*hfFoRx<{nVI1<*s8-R>2L$}HiDB=bHjNl z1$AdpCt}J>y1#n*zZhXyG-AN|6N2cA=}_@R}lw2hn^ezZyx;$TnU{^FN8ax za2-zj_l{ES4qHWRCo#5fsjvTKVd?OWMI}W;b7049x#QQ&##!@H_@*#iqRkeY?ii+R z$*`h|BDhfi_ciOMQk*lgw5qb@2)J;}?90F~w)&~$m6sM5$M#|ar3D2Q%z|9~lqzls zRa{g8^|^DFnpRc9#d9dA{@2XrQLED8{GyUUcPg#n?V9N2uXp9FJcQKNFj#-d~ zi@lft*}4Q1BHNgUejXM)^Q4LiqIR7SQ(|gFS&gaa7pgH0J)hYlhuh7?l{xX+=uo#P z60r=J8Bs36jF^dDK)(oAuQ4lJT78LrxgV3uws45Yv`r)GWx9=tZ5uhtR>cpffH*B;apw|=iBtU7@Y4s zgfn*5AOQDthCeVkdoghKrdK53?8m^_AHoSAdL=A)=1CPN4hUd*Sd?KipI%js70|2i zkrka__(hpWGF>kFk9W za@(;T*iLL0_6hbW_8GPt+k@?;_t1Okee{0%0R1`r1$~e{L?5of_SYhJFy0qqMF?<8=@ax1 z^pEsO`V{>W{WJYb4X%#UhU?=74mU&EeyyeL_gVvY?jdato;ExHX~To`=~~+G2&4^9 zMz%2z{TnoH%#$h>B}jM#Zvc72AEp1O#v9US?u|FRDc%C|gExZ)?kqHLcuQ#D{=Acc zWBrs6)E@5?N3J78?mR>eZwVv(c{c-xcgM3C$zmA*z_r*F_V0gBY%18bSfuVt}vdJfO77Uy=U+#FX;f_{;b!_(HrIUxY8lm*B7BuK|<~Pys-N z02KjL3{VL`r2v%yR1Q!@4gN+gh|A(#Exrv-KpO(I5kMOQv`GysGfpO}VZ4iGHD$#oF!DSX>8SBk`6Sdrz)t}+9A3$4Fv*0uaZ^88payV8o?UL8pRsT8p9e3&~^ZA56}((?Fi6L0PPG= znB%Sh?FP`S8rHa4{>InxH<975dxF273I6&$UCQ=Ks{7n))v-Q)_bh?Ss$=IWPJqC#{ilQ(18HW0cb8j^8lI;&?rC)06M6K z^>HnPyW+z`)@}yE!UTjv62rr?hY`~kaW zexjyNv3_Pi{0X4N)vR9tI`kev{GD|+4&oUG#1e+7a}0>3^+CiElOon-*0nf@R~Zl= z|A$Dm>aj7l0D{QI*(^4j&0%xd1e?bu*%X@(&01IvSv3 zYS_X!h-_)x8nTrPh+`8Vj!Rg>@ee_K@F2475JWaC?iccG$>@h%ih93xEY|YSF^VQ^o@Ij@I&^;kSF#>%%lX43m37sGn3?+ zJ57?Yy$Pf~WABYaxQBso83W;VhTNKZ?Bncj z0JyC#vmnh@5H^H?0j0St(r|3joijC@Wh17eg@z!}6T

oRbB1t=IYT)m06hrM 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%0A)4wj#T-G&|lHvt#Z5?~u0{pDuA7vmaEY)LMXg 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"6BXnwh%V<1ki2>7ABmEoqjOTS<&+wk-M7 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 literal 186941 zcmeFacYGAZ8~DHFZuf5YdM`RL8bRj=97YHP|kU|mA9aNg2^d^Eq5RHgR z7ZB_P8%?Em!G^sn@SDBM2}uC?@(JJX?+^5KA-UVx=b4%JJoC&md-LR%mlRi4rKTQ4 zPy|D8goAJq0wEDU7`|LS9{ik1(sM)OBS3aTn)2s-ttkVM=) zuS;Y?q_9=pMf(sQ!ta|`6|Raf=!;U}34}%jh#Ju#S|os^B56oE5=1hPOe71*Msko` zBoFC>^hNq1{gDC4Kx7ay7#V^LMTQ}xkaA=UG7g!DOhOn0AdetZk(tP2$UI~bvJ6>; zJcF!7o=4Upn~=@O7UUIVC-NHdI`Tg95pn?e965xXLCzxQkS~z0kZ+Oik)M%Y&@8kW z+8k|xwnW>a?a)qWXS6%o1I=umVRnvWKsBhZm(30jJdK`YR)=s0vDItgV^ zfIfmwMQ5UqqK~6<&;{s1bSb(FU4gDdpGH@s&!W$vFQDtu4d_O6E4mHciN1=yj=q7u zgT9M?fPRSXMfag!pew(eKdj(I3zs(Vx(t(cjU_=oJjX2#mzUm;{qzGE9Lf zv1BX-Gho?R4wj2G!dzS?nD4Ep`$675fbr;bL5ZOK}-4#}&8|SK(@0gD2q@+={z#4<5ub@J#$( z{64%N-X9-;55x!IgYhBwP<$93!iVF9_-MQYufQwuiTEUZGX4lY6<>j`#Gk@z@KyNJ z_-cF&{tUhre->YdZ^U20x8rZ%Z{i=|AL8fmFYxpD1^i3=EBtHx8~j`RBK{rz6aFXu z7ydT~s^A_iA&O4kvoPC`AoI{+$oYR~$oU@#7INx$PTrQX3l3X5_&!xCDSHKl= zMO+zI%QbL~TqoDXP2;9>J9E2myK=j6yK{SRdvbemdvo)+eYgX-A#Q|Q#4Y1Sx#isP z+zH&d++2)5#g+O!6^uA-RZLOg>4jAfF-ElFyPakuQ_)lY7Vy$PdYn z$dAcS$i3t~azA;1{G2>No+Q5@&y(Mg-;+O(e~^Fjq&yi<&QtJ|JQYvP)9|!B9Z%0Q z@a#MX&&TugvUu6N99~OaE8alfAl_i!5Z+MUFkXl^oEPTh^9pz)cxAjQUNvtr?*ZOa z-Zb7y-c!69-YVYHyw$ulyk~f8dC&5m!F!YU7VkseN4zh1=Xn=+U-G`< zea-uZ_bu-t?>pZ2yq|f0@ew}C=kqDPj4$VV_+Gw`@8<{jsr)p4IzPzI;Air4`7QbF z`5pK@_&xap_yhT4_!az0eigr(KbAj^Kb}8#6P34r(X$Dz%H+O}$3F zPQ5|BL%mCVLhYsYQTwTL)ECrw>H_s8^%eCs^$qn4^(XZgb%{o3l;+S}nn&|#0WG8@ zw3L?7Dq2lz=oH#O8)*~mpgpvgPNmP$U(#RE7wPZlpXi_I-|0W-f9OjBRDcNx0V$vb z0)a#z6(|KNfliLG)FX7G*2{Nv_P~_v`DmAv_!O2v`n-@v_|xd zXszf4(R$Gq(N@tm(JP|YMQ@0Xh>nVmiH?g-h)#-5iB5~oh|Y@6iM|wlFZxyVo9MFW ziWm{2VoXelX|Y9Y72Cviu|w<>yTop>N9+~*#A)Ijajv+9xTUzGxRbcExQn=}xR1E6 zxKvywj*830W5gBWN^zCAT0B-fPCQXOMLbH4hq?@F>q=%%Zq?e?xWQb&_WSFE- z5|NZj$|O-qxn#U#f@H2_o@Bmcfn=d%kz}!CiDao{ndAw{O35>lwUQSk>m^$xTP52h zuSi~(ydgOvIVw3OIW9RNIVm|MIW0LOIV(9Q`BL(|+FII1+C|z`+D+P5+D}?0jY`X$Ht8$U?b036ozhpOyQI6NZ%X$_ zKalQ|?w1~s9+e)G9+#ewo|j&bUXdX(REEiL8AryI5i(N7lksIjnL?(N>19bWtIQ^| z%lxu{tb?qhtdp#>tc$FxtedR6tcR?pte32>Y=~^AY?!Q27Lk?8%4AX5IN5mF9NApi zJlTBN0@*^@BH3cu64_GOGT92*8rk!*b+S#e&9W`Bt+L&+*JOuehh;}(M`g!k$7LsE zCuOH(r)6hk=VcdVKg)iR{Uf_1yDYmRC*?f3QErl(N9E=6G4cv|rF@+H0r`V+Mh@iD6SpsQj4x zocs&kxp&%8sLZ;9tvAOfDHbc1 zD3&UgDV|WQR6L_tt9U`NUa>{7Rk2O+isE&}8;T=}ql#mSDi6~JeUr8y=N{iB}v?=XMhtjEZDcwqs(yL5WW-D`)_bFQ_J19FU zJ1ILWdn@ylqm?DfQe~Mksw`KIQC27`l~u}WB>3ExypIUWy&X%8j-to2t92hbm7s zNHts)Ru!v8sYa_RRaL54s@bZ?RFA9XsOGBXsphK|s1~Xgsg|i~RBKhws$NpPtlFU3 zsM?|0sXD0oRP~wabJZc$Vbu}UQPnZkan%Xc8P!*+uT|fuepLOW`b+h<>L1l5HCIij zQ`82vQEgJ2)fTl?ZByIT4z*M5RR`4>>SpTZ>Ne`O>UQe(>h9_u>JjRZ>SFaM^=Ng8 zx>Q}Jj;hPmW7O5^N$M%;ht!X%XQ^ka7pfPj*Q;MtzodRyy+OTEy-B@Uy+yrMy-mGS z{igbT^&a(p^#S!k^)dBv^{?vR)W56$Q2(j^OZ~U{AN3{mW%U&euAwxvMxYUDB}~Gc}KDW@%+aFr ztGiFvLf2B)O4nM~M%Px?PS;7-Q`bw^UpGKETo=~m>k4#*x)NQf?h)No-89{F-3;AK z-J`l$y4kwNbdT%i>z3)B(ADTx>1uV)>(=RB&~4Uj(S5A@M7LMBPq$xpKzC60sqQn~ z=ek3>W4g1tuXJDQe$xG{`$hMU?vh@qSLxMyjb5wQ>Gk>~eX>49Z_r!xZhfjgO`of8 zrf;slN8eW8PCryXOdrw@*N64_`T~8SKB6zukI;|SSLnyM!cQ(|@o3LI0!v zC;iX*U-ZA~f7Ab!geH+myd+7IG)b1EOVTF=lQNPrld_VslX8-BlbR(pPr4`R-lSGZ z9g{jG^+@WOG$3hU(x9ZlNd-xTNt2Q$Cq0n#U=ouAlBOg*l=N`YBS}+}W+u%|TAZ{b z>8Yfeq*Y0^NzW&}neWm8Cr?NQ$y1V-B|nk8Jo(Aw70D};pGvMt zUX}cG^6KPglV42UoV+D@SMu)U*OK2$en0ti@|onb$>);4NIsu@A^FSXuadt`{wDeR z{lggiai(#ealUbZaiQ@^;|k*z<5uG~<15DP#vR6; z##fEIjJu7m8Q(H~VEoXy-*~`y)OgHz+<3xx(s;r6r3o>iCd`DJI3})%Fp(yniEpAz zB9qdjG9{UkO*WI=<09;TkAUZ&orex{+O0#l)>#8hf3 zGmSNkGd*saW14H4XPR$XU|MKeWLj)mVp?i?(zM#N#`L^tooSP4vuTTIt7*6CHPa!} zVbc-QQPVNganlLYNz*CQY10|gdDBJH&!%5Y|ClbBE}IE6X*QURW|P@$wwSGEo7rx5 zn4M;q*=No$XPUFj_n7ZBw==glcQAJ}cQW@f_co6*k2aT>OU-5GsJYxc##~{pG*_9& zn;$eY=Begs=Eu!*%yZ52%*)JAm^Yd?nKzran75j@nO`w)H}5d-G{0(o-Ta>Uee);g zz2-ya!{#IAqvo^bbLM}{m&}*VS1gDHwO|(9!m)5IgoUz5Ei#M7qP3VTW{bsQwb(2^ zi{H}T(!tWv(#g`<(#6u%(#_J{(!xjmtg~#gY_@E%Y_;sRyk%Vo zcH7>zy<_{>_K9t;?U3!T?MK^Bwx4ak*nYMBX8YathwV?>U$(z(SL}qHvrM;ECwY`nKt-YhYhrOr0pS{05WFKx1+w<+C?4#`u z*&nt)VxMZCW}j}KVV`M#)IQ5T+dkL6#J<$N(*BhFS^IPLTKn_%jrL9UUG_KZZ`$9r zzi0o@{*is3{Zsp4`$_v*`#JlU_Mhy(*?+hHZU4uCI8cYsA##Wv5{J|wbI2WPhrwZV zm>e#L+u?C|9X?08Bg@g!(aO=<(Z-fO& zp<}<}fa9>^h~tFgyyJr7TgMNMUmbrt{&8YX!YOcyoC>GXsdpNjHmBX`b^4q^XNI$x zv$?Z{vz@bxvxl>-@@j(fNb(l1uE8xTG$bOYTy*lrEJ^?b5kYU1_d#SJ0K=%5-J9vRyf@ zTvsnwZ&#kHkE^e%pR2!XfNP*@kZZ7Ow5!Bb>MC5x2svbgSHIx5lk?>)d*Gk~`U*;x@RAZofO=PIafb)7?RL zuDhALrMs28gS(@M8e(@l<#!J=LDEo^hUu zo<}{iJhMHIc^>!7@yzwi^DOf`;aTo^*0asC+w+>|9nT)m2cAzndp!p|pLz~^j(ARZ z&UnsxE_lB2eCxUB`Ofo`=Wj3O6?tV|xmWGgc$2)zUX$1CwR;_2kJsx>^`?0&G9YpE%7b)J>^^NTjP7qSL<8vd(pSex7+u=?<3#GzWu(>d`EmI zd}n;;eHVP+_`dc1;QP_{mml@>`~ttwFZIj(D!Fq z`aAo(`+NKQ`3L!j`Sbln{t^Ds{)hYz`ycU7^-uFp_s{Up^grsK<)7`J>tEtu;a}-r z>wnh&lK*A@2LBfSR{t*l`~Hvo`~08!5Brb%Py4^{f93z$|C|5s02;soWI!5_1>^xm zKp9X4i~&=?9Iylefz&`+AUzNavM2HxXAaX?2zk8m4bYw#1Aoy?HPGCQ4K}oo>aup&)WDLgOs}KdEWH>;; zWtM~_icW3Y^^aDJt}G81MA}9Rs!JnfRUwJBZM(GA?OSJM_=34Pt$Z1oSwUY;W^Nl_ zMpk-SPV3Z+?5wP;gk&9JMf}epdL#)+Mp6(1Vnj@c8L=>2hG0mB$M6}7p&0=qd=9Z8 zcEo`=5f|b{Jct+ZF(O6`=)HhG0O&7(009CN2yh_aFm|Y2>xxKtba}M6tg5nAK~?cs zxNlh)lIYq-io(?;RqYCktD+UL-OS4N(TcvkyH*Z~T^7kJ7#S&zz#GK>>|I^fHd0wt zTo$f^d!`{tYS(aORhwvOc}WD`uqV5fT3H1v9xv89TnTqfS#iZx6M9F=qZP14#EHh~ zUtCrg9ajmpi2v5Aq9R;20!k~ZY8%O~9?_|+C<-sni zRpuw!u^G}H@js6=NA5xHMeajdAT5zrNNc1G(iUmQNEj(2W8{p2Q8Fq<&1e`cqkA6d zfOJGUA)S#fNLQpA(jDo6^hA0wddAJ^k$_&xwrj?Kf@opH zAJcb4q@qi4mA}4T{tn^l5s_|@(rCqmgsvfp7Q)i2y0~C;*JyNfyg*&Kki-$cCA{J~ zck9V+W5)}GB+YJmWn@ISvbwT+w5)w`NhEIq?3U8JXmv$Fqz%+KB+0HiTY0qGw#uYjsPHU*Dl;-$cVU z)CYbP=jm#jro{^-N?fP$VqMV&-t^zmS=R`$lEI!8QFg~auezKCwV}j%*ZfB>b&ZZl z$Vea=LJAT8YGgPPM)HvYCW$dHCdRTFi6BMD2xKH~tVKz`*+tpe;eym_Z}wp9X6FCnn*~#|vVv);k$N|KICeAZ|M|@_Gg32x zxmoaLaq~Y7nU46MdWx~f8|qPHR!Ac6p4Y9qDx6;uX23R#Xk$#@vwDr6<{6cb>w>I1PRR!MJ2 zGPwv2YS`O>zLn7C2F5|dSrI9_e`Iwa0bXTbL~+%~>ij@yq_8+#UR)mW!7Jd zG+J0)5~&QZ13y#M9Nb*3_t5gy$D=ZCH zjE-xR_$xFHRxA{*V&@sy760lK@4gq1m)Le(kG#mFGHI)jmyr!jI+MW~Yi(jGNwiVd zXhCcqs~np6q-S_Uq;h}E4cLlodx{ChA=r-WfJ2d;peC$Bwj*QXSG5G0p4u_h+%jZ5EQOYLdoH z01)f;Kz<}#T{R(49IXsQ#)sJ{JkW#Xq;>55Zn2Bn{nrQVB<+tqT$QNMVdOaCe;PT0 z97T>X_b~S|_dN|e;UsbjwnGc14cieZaB>Uv?Aj@>PpDnnPJMdx4&}A$+OAEXPCdGZ zy0ja3y$jk6=-H}!-oF(sTFf)`1F=3{F zi7+FWVrDc`%0!tlOeIszjAJG+6Pd}(gA9P;Q5C92HK-QVp?Wk4O-55t18PJ~s2R1O zR@8>tQ3vWoU8o!NpkCC6`q2QIil(9IXb{a{9%7zkHZt!qN0}c0$_1zfps4_D1JM2e zEdl6*0G$uewE*1?&`$t*2B5zJj0dn}fCT~85nw|BRt~U-0JaEV&jD;Fz&-)k*?NGZ zxiP@oha}?@vsqzrC3LbQrTHZjpna>X3KxtH6;;4F>N-rk+2zp;kn~t}qO?pvoMp|xq zR%2~avxDiG=^5#%8R_ZS8JQVrIhhT#Nsr{fsX3TmPn$L|Z93ncHo?@wNP1CPYGZBE zb8}O(VXI`r57RQ>zZuyLwJFNa$O#tKn_tn6F>Siuo;K-`!py?l{Pf1!G;W(l+C=hm zvU0;|_1dOeOq=c@$++9#COr~P%Lx}|Hqs_NCp9ZICp#k}2R2MFH76&vAvSDBWu@h( z)>Ec;Oqrgy*EGS@j7TIuzo?NiX<2F6aJ878k(-vwdMKIc!E3LHL!1%Gg@x;B(?6z7 z@7vVoe;88f5Sz4Mu%3^H4vA^gCnOnr8yyu)g}qdiQFv{=V*@;xm7A8Cot~SW5ln*s z=j7xzKp47+X|VC?BOH$D((m?KCOwj$4QrUzNSCz611h6|HjtV~FeezS*H1+;Z3f() zHo=VaqV&wPoa<;44CdryX5^%1W@V>A-!?s?p|J@Dvr`MQ(+lfqGdiZtpxe_1woOiU zYHmSeZ89@*(;>e(*|4*6)6-Hjvm0uYUXY&#O+#iqZOUWX47pux{wHITTToDcoq|@! zv>A4L#^#1Sm6@5HlN(IUO-+Rh5ZF^`_0Wn9?+l1>etK@brirh>hTmS(1k-|%FzkcI z9hDPI%MNCw=A`GQr>8<2m{so@RvTzFbHX{$CSK$HqwytN{{MY#pt|``;reY8UjxDr z#qD?#Hy+^GndxbnnL+rEh~e58GF6aX zPn*YL+KjwSZ3^=9^WjX?n43mz6HIH=HV~$Q{QBl*eoUKDx2esI=I`tHeb;InqxgEh z&61clCAT@iZ!~3QWu(D@oeI4@==BA2GlE$SZC{Z6urRfLM?D!+2F6xzXU2px6m)wt z>zR`4&X~CkXG}P}q0g9Ee|WEo=~8~1-BgsFUr>~K9T&9mtdQOinu3B17&FSQhw$2% zHWjzoGLh`GjLfvgi-qjmV0KPsW-44tWWs2CMn*$qg6V~Da)X}XwS#+IOc%Hiyd6^m z&G2n6T+-6>Vfd?oHZRAt8GC!$KxVRwvhuU9t#^DG)z~@DYS2%?)Pi7YB(1*T+Y-}e zd{b-F*wi%g&I_Qwm{C;U)a;09bN_8>^FNrHU}{lDep;~ph-&a)`6xsysC{H#aQ{ z+TXN{?DW)zwkDXFpH`4jRDTuqNlck3x7Sbq%lL+NI4i#>HhIS)is*h6#?xxi1L#5Y zQ}i?RbMz2;7(Id>MUOELGmkJ+nQ6>)W(G5pd6b#O%&tXGpeJMhpFz(eyWnr<5gYRu zGdK4CJZ32jSI%XY!OcP#htpl%bgA2fs*G*6#kTg68ho-NB6c3{j)hdjSQOrVS5sYwSLKs?I%q$tq*0K|f@sE#G4lAtN zU?T6U_2!?%KBqHbBGsB}y4F z4}=plVP?#NSuq=C#~hdwb75{~1+$WQim72%F;6qAnKjHa%-UMa8;281#nMyGtg+3dlrtHF9PFWe%VeX#*7Mg1^7vz}SF3LA*L%)AKcT+)z7VRuWMKP0hrf(^$C z;soYH0ynS(4umCNY*aSEUNKh1vNsAFjg?@fSQ!?@%CRw61y;#yVm32dn61n<<`rf; zvxC{myjqJ@*ReODj=jl{y|^%V zVz1UA_j(<2Z$sn`)FJn29dd{7B6kOnJHR4$kU5w@?(^%Ky95U(uv08>Cz;P`u+z-v zw+P%9*q1CleCz_8h!6d@!TJvSF;3eLkhUZLef{q^#?tl&_9yli_BZwqb_u(TUBM9? zWsWh&nG?)O<`i?9Im4V~&M{xq;&_}koQ%_k(~!3Fb+mm|N85LIX={4ga4n<_*D)9B zXv32sZFmZ@i+wR)LgU81f)a5ZZ@3M2K;CdW^K}jGWWKpI-f%A-fc)S-XyCqu1`bb! z2JYhZ3>@dHgrF=uH-;RZ1Cje4B8R8K0vB&&;P4iBXNVl$5^sgK#@pa+@pgE7yaV15 z@5KDb{KWjs{KEXo{Kovw{K5Rm{8fv0sY9+u9ddaPxxed>yBtRjp!i+p?f`RPmbrZ9 zp9FIemboIx9DFgCAaCp|C?OLll;TmAxiaQT4PFjVj50Zv16Dg0Lr;Zp+t#k_&gT8>G%wMCjKZs3!jZYhChza!RG>$04NDi z9zgj3r2t9;Q~*#RKt%u**W&Z*5L_Hz@8VA&Hh@av3<6XZU-1G|br-@r0O4~igtY*b zCMbLXQrLLSo9N|D_!gGI%>b3x;9CKF#^sily!Z}$R~*7uSqPQv)LFOYZLqFL2zm>D zHxA%CEP(3&F7Oe4h~@8N{1bdHz7OAzAHWadpW>h4p9542P#r+^08IjDGC)%RY5=Ga zpeBHtYw^Q%{2j+n;4t!npJw^9B=~ax)C*7_12OjBCGZXq_&rM?d_c*XAn<3_4*r7w z%Dw;!`@$ao32k8)NqPd1fAGsJiI)KCtii7U)OBkla&Qg-!QyZ*Xp7u%66TP|%K-IU zZx&YlX=!PVFLEV`6$eMmk;TB|NLerg5KIoqnp00Bb6Te%ZQO#>(_8w6+uKr;cF1<-7O<^VJopv`JI);O6QXMA$zcv&)=C&;`vF+I1s z%VpDZ$!P|;r_F4fd7Oo;J>zp0urqTWYtI(5_N-4MdnUybac|CY&dRtE zT){Hf?iy$819FK!|j0JHd%hX90#Nx&vVu>{o z=N#uk9K`c1h@)>(D52g(&L1p@-*LX@{J{B<^AqQ1&M%x_Ilpm!2WTlk%K#b$C|q8R z0cZt4D*;*s&}x8=t>ye#2jZo;HRPf!h~p9u7 z+-Uowu9vwwZW4r$s|V=)HC*WOPrNkjeHb3(3ec$lod(e90G(0G zZ4u{>+a_)ZxgA*kW+wQXl`w>J@A7vC`0LB^*AJkNCiok8v)PzCoSV<`7Y69;8g2nV zAG<~VMsP<#oVX)dZ}4&G4RS}btCKm`Tb*Eg6R?lrR>c{tWEq?X8RU*;E$5s@mNQY} ze(obIgcG@wxRbdLa3AC{T)>^eeTWOGTL4gq{vv=b2IvxiE(Pc^fWrGO2k4Wv+^KaC z&a8v*F&4rV2?(D`K)B{Egm(bKonh>^)yCV+ab{4{CZc->w;&twaEQD`x-{ii< zeVh9Z_g(IL-1oVAxE}x%>iir)q0Y|(bR9rn0O)#vLRax6fWBPI{iqJYeRU9i%0jpy z0pX?ugxl^ycn2Un%R+b#pc@kqUbrcQ-*JCnA^aYon`^i~0(8qQLij8957rX?##+Ly ztR>vYTEf-Wv4jbpE)!^sKmuV2eC59hBuGLA2_$#~pP&eu5D-E_M2HCqAqD6TfbIn7 zs{n;=?rwm-2GG|5`UXJX1n66}ggj0lp^p24gq|hv?F51EC49k;?h@Ga1QIStAmIk+ zJ9PvSK1d+pM|QC*Bot-3QS906hRuxTyLRpm0$IgW87xdbpMtTnA#P4#WZ$#3Kn1k0n4nbr-}t z0OA-H#0r2OO@LSpLA>FjgqTD;z(P0~pvP;72LXEG79o6ym>P%h5f;Lekf)n3N{Cs+ z<8c5VV*xz<-vt&DPqF+hA{G-%h^53b;t66o@g%W=SP9Ux0EO263xJ*n=mmg&3DB9RCMuFhdsKh}Q!C!8{ z1|B8OvkV?1juR({lf)_FG;xMFOPnLV0O)T3h2fb$0Qx6D{{raW0R0D`mjHShpjT>% z3v~>B6L$xR?-3iokU9q8!@03XrU6FWW$+F#c!_23GQiL}21yh$c*6~3l1EaIK#~tI zyoRI!d}{iZHjqg%$!@!m5=bD%Ww%L$@Yxv{sBSb5*P%{oNPP@IQU?LVNY)14bjO)A zkzU9jX(lbCm9&v|(m^^&7wINFfE7vs45}*tm=IthfQbPn0hknEvRcv?=Z{Q_^G9Z~ z{K*sisS^C@@AB95{E=-SeI|ko^IjK_Y=h53(1_U{8Rl zYslUJJ}`f44E7@jvJCcTanM2r$wANxV!G=av6)`Qh@ntNXUr)7I9n&jT*aiN7g{M5WCrv2$q)S_+tzSkPiL7Rq!8<$pZHKyDykWue?iZX!36Tga{CHu4p6JGp~|r@~|a3=Xm^fMo+L2Vl7X zYX-390J{fZ_tui^SD08B->9>W@32tbmw>WW!aBCUi{u?Z@*s=krvPh_K=Kfah%KERLrE*1Co~3$Qk~h~owFYt}k`$y&#@tabc`wT|tsYaO)- zVLy_;#6kR-1+fEb9lv3%W4jw#$G>=77R0~Ff5=PZW%3FS;h{W?hx0f9>jbdQ0P6y< zt^n%>uEsuzU$fM#*6`qI%F)smPzq+LgHux@xO%Eb334+LjCrkCI z1CeKhAYvVOX7V_0hSN20)Q0)ECR41fQ_i-b*}@lcibZK`mrF6On^8lVG+yj zf_Mi&EM!51T~V9>aU=xshU*nxlsATj5T1iJx`tN)u##JZa4c^E%M+hBo}HXaAx}47 ze()aTO^E{tSOBB{U0^zIKFi+>-b~)3yji^2yvKNt^XBm8^5y|-48WkS&|j#sh2u!0xZ*EvVyfNu42F&hj@g!QbSBAq02%y94~yviv;{ut^F2*2fHC!|!n> ztjuQKR+hgl0DGW@w+&zq-XecHdAsBM?PB?3Se$P9WlY}Ny!Yb#z02}9<-ZGj%sb5T z_X%$=Zy#?z?*Q*0?^E7qyw7=u0QNAz9s$@?fK3C~bb!qO*i3*u3NYv#&#vVispIcN z9e-z7{_4Kr4zM{1{ubQj?+)`4e%;NJ1c86^F0lmu1F*R@yvqQa zcWVUlF+Mj&AfLk$I3EIaqpg!VNqm|wiXq4svIs7`g%S$B0W!!}@>P5_U&Gh(b$mTP ziJ#1e>*U1%TLLh+s#*pxc)R5QdlFzP0JaifPu22`aR&L;_#Di4vJBQFY~a(0Ie6_| z2AiHieimeq4;PE8>TDn%K5KpBIhfyy-v$!MZw;{3HT<>!TXTy9cI0=76WEz0kbNZK z=5sK=7r##&z&sYfXaBpvAby19Z!mude<*(#Kg1u-5A*Z+1$^l4L7x_y`E>w$0buI^ z_9DPu0vL2eHvnv7Ex)Lazfo};$S-60+mzsMOTq?jzsuhp;BOMk-(-MoPVfhxwZ8Gb z9e)~s2Fo9u$hOw-;Y7CW7WsROKNsS}f1F*2yu!w;Z*-VK!T>Jj!$=U^G~q90`P;$r zchgCm{}lgumcJVQD*n^_)%-R5XZUOR&+?z+L-<|=*e-zW2H0x=dmUhJ0PIbGy#=th z0rpNUe_b7aFV*q4iRJIz1b^=*_`CZ6L*iVWCOpc6{|3t+?2Y#l{JjJDYy5TN1Qs9h zKVkX%7+`y9_wg!hq^e;G2nq&U zey^cmu;tHsXXH~8*`w$H_D4vv;s38$AX>v5HU5%vm_R4cEnHmYulzS%P-2WdKs}83 z*H8~q3Je%x^$<0kngOsY0GGq}0ImeMmVxKg*+%*|KV8W&RNJXbYHbqELF-(yXl1Sq@KH!;hFwxK0 zVwed99xd0Y_0`Nqc~uqF1y$7*k$zA@n`l`Td&nGnm8w(gHsP|d;mZ0SB&s%-S_l(f zQ1hty)B=Db07n6iJxwj57E?0Nwi?1CU{OE z%%H{Qwi*rspkOB2ROwn=^IOAHnbpGR#ZHqx+0bXg-uG;x=pko8txOVE*M#- zYFu!lrY};P5Y=kxCF*5r1GN$0G{6M_7XnrQp z*~WYe;P8onLFL`@e1&V0Ytz*PW;Ckxmp=;Z=j!-A^lQC-Cz z!pDNrsWJ~beX)}RCD**&zqqh!q@`u~saOXlTJ`{S6!EX64pN^|pHZJvhp5BU5rFFe zt_OG$z>@)<0&oMsjcci6)N$$rb&@(ookmXr+yw9dz*7O92Jm!%2jS!c6%oUZgAL5; z!6vh+9K;gUK3o9DCCo_|&+F8wZJ#JhUYD}yxUx9lJ)@PyY)+kS>5G6nqshHPP5`3Hxhh zIUEe(5`bF(4%0pLn>f)24_VIjr|0D6vIm&wWTav+bCf>~=Hkdo4Z<^j;jzp?n7bvI?#~M5re?x49T^#!!R)NblVhhPQh!tbz`Q^G z!X?#_Rn*_e*o0n}S-k*m|5t~g`JU^epM6|7v;TCwd$HM zGcC(s*M-?RX~EpI>sAXkVM9@AIag(g;~6&|slo0^`T21V!Q1pUFR)ZC0LcnEbS zJbgb10fa}0((quZr)eFnr=bzZ0C*YS5tZ{l@z`wDIMZMF+JW zILH^w@l~Z(BvdfdFrQ=%4F^h24Go7_vwDsN?T$GXcy7a-X^~j^zMJKeYmhUI_R;=& z+05uPdM29zX#ky02k8ttlg^^E=^Q$jZbmn!@1gId@1tALE$LQtYq|~HmTpJ4r#sLc z=}vTKx(nTv?nZZ~d(b`UUUY9dkM2YFrTfwS=>haWdJsLB9zqYLhtVN=I31?*=>oct zj?hK)2zn%4Opl^R(hX$$)z=M|X3V>Gud@R7n1N?q~PXhP@0A~O` z1>g?@d@8`F1AHdHX94^%fX@N=Jb*(tViCZh^RNuy%K^Ru;7m{272h3*d=6 z_&R{E2lz_>-vIDU0N(;|IQMP`_)dWD0{CkHe*@re0sI|+zX$L=0RIr+9|L?Z!1n|E zAizHZ_#uEF0r)Y1p8)tNfS&>QIe?!B_?H0xn(ewr=~?t_`Z4-(dJa98o=4B87tjmo zMf75N3B8nFMn6F>r=O%(&@1Vu=o)$z{WQIrUPC`auce=*pQCH(=jnCy3-o&WMfxTB zWqJd>k={garnk^r>235Y^mcj&y_0^G-bL@GU!z~A-=N>5-=g29-=W{7-=p8B_s}2E zAJQMuAJd=Ed+B}je)<4?kp7hZjQ*THL?5P)&`0TG^l|zGeUd&!pQfSu-vSN}IC{Vd z0CyOrGWfIAy-p9b6=fV&TH zF97ZpKqvwHh6vFT5PbnL8V~>w3jt9Jh}Qw}IUv3P#1%lQ0qFx|8$b>OWEmi*0CF)P zUjXD=fII@o?*I=6JT>5X0k0+C^#i<7fcGHaEdab{0dFVZ?E}0EfOiS-<$&)2{FZ>9 z2l&N+{{Z062QUK1-wpT&0RJn%zXT{Hpge$T1*idlDg)HRfLaQu4S;$FKtF-H2xtzV zHGuX5x^4Y2ejz@_?+rwFg7g^3dQq- z1}aB}D`4W^@~VpZjr4b1(RLxppoF6TQ)bEPs^SuuinKD8a5lvL<*(N=0wgZ5Lr7BC zBmzg2R|nt=Caa89urOQ|4nhBv^<5i^=Eg;L3Q0muBKo>n6W6CHzXN+XLM{tqcbkC ze^Z&_My*m=onQA}BiX*VY?xg1{wAsI)n=^>u(=AN(CC)3Sr1_I$Nvt&_zKK~0EZ^D zzEzFPPKxYDa5imRv>01Uf#ka43&ICKd`mffhV_NsB3|OXhkH@reAD0B;=NtU+Xf2;(}oqylEW7tH58+ZNGN4A}EZDj)o*v zOi4^zFNartt;U6RsD8U!;DvJYo1r^2R(6`PH-yfUL zi%Saq(OpsKVy5Q?|(xNzAB*md`htPa5JxEcA8oUF7W zn0YrlGnfyPi53NO3L-E=dq%LZAOM~ESTKr>R)$7Iqa)xW0I=_>qR{;bR8|xO;_n6i zeGmEum8^fpP5||>-xOEu@sQ-%gkt|wuvy6WkzZQg6tA6PLawBq?o@ z4!CYxG-9BB4B>~k4r`k#;(E0Ou8xkY&RKogzs6-h*Hpg7b?bi<7V34zUvXugZ>oLJ ztJS}$acD3+uEe!?;f^9vzeyTSfI?1OhZo_aQ%!5{dasxF)aWytJ)k5LwFo?(6<9opDJk>z3JT7>1NYbZC8auY})uw$% zn35N+!mlMtei29%0)d) zFn`4V$KHK_M^Uwn!{1G2b{g58?Y(3>N+2N>ERYaTl-_#`5Fi=|CIP9MTd^Vb?xVs2 zqOQGnEPyCQ9~FDSUO<`+yZ`&%*`X!m-RFDA_y6ASid-{bvS(&?<~R2_bIzG_x=pT~ zb;zd+uX4ywRmmgOL;kM{vMGvn$|Lf;!=Dv%g37+0 zIackjhexAyRc?!$EvD@CxkF;$e|1q>K0{PbZmjE;T45Cp_BN#+3G{c>+#`EoCVNYt@YG$8dH$hICH-otm+BFfLpdeN0j#T% z*Q*EcU!D85Z-_kQhL~A9tDvB3eqO48ig!j8-Ya>B-7k5=N91+yQBpd2YH>+*SxM

t%~alG43)i>!*gfpwL%++{!8EK}n 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 O@8AFb|BT4m{Qm&y#ugp` diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm index 7a08a4f49..ab70ac545 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm @@ -249,6 +249,7 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { { [[OlaFaceUnity sharedInstance] processVideoFrame:onScreenTexture.renderTarget timeStamp:frameTime]; + return onScreenTexture.surfaceID; } diff --git a/mediapipe/render/module/beauty/ios/framework/BUILD b/mediapipe/render/module/beauty/ios/framework/BUILD index fa68940c2..2a3d2d8e3 100644 --- a/mediapipe/render/module/beauty/ios/framework/BUILD +++ b/mediapipe/render/module/beauty/ios/framework/BUILD @@ -3,13 +3,13 @@ load("@build_bazel_rules_apple//apple:ios.bzl", "ios_framework", "ios_static_fra # 用上面这条指令build -ios_static_framework( +ios_framework( name = "OlaFaceUnityFramework", hdrs = [ "OlaFaceUnity.h", ], - # infoplists = ["Info.plist"], - # bundle_id = "com.ola.olarender.develop", + infoplists = ["Info.plist"], + bundle_id = "com.ola.olarender.develop", families = ["iphone", "ipad"], minimum_os_version = "11.0", deps = [ diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj index 8c05dbfab..f55e08b29 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj @@ -9,8 +9,14 @@ /* Begin PBXBuildFile section */ FF9503010019414900000000 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10019414900000000 /* vec3.cpp */; }; FF9503010019414900000001 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10019414900000000 /* vec3.cpp */; }; + FF950301012F72CA00000000 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; + FF950301012F72CA00000001 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; + FF950301012F72CA00000002 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; + FF950301012F72CA00000003 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; FF95030101794B7100000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; FF95030101794B7100000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; + FF95030103047E7100000000 /* graph_output_stream.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB103047E7100000000 /* graph_output_stream.cc */; }; + FF95030103047E7100000001 /* graph_output_stream.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB103047E7100000000 /* graph_output_stream.cc */; }; FF950301041C1EB900000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; FF950301041C1EB900000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */; }; @@ -19,8 +25,14 @@ FF950301045C5E6900000001 /* gpu_buffer_storage.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */; }; FF95030104BA59E200000000 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB104BA59E200000000 /* location.cc */; }; FF95030104BA59E200000001 /* location.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB104BA59E200000000 /* location.cc */; }; + FF950301051CE57300000000 /* output_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */; }; + FF950301051CE57300000001 /* output_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */; }; + FF95030108D791BD00000000 /* input_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */; }; + FF95030108D791BD00000001 /* input_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */; }; FF950301095EF97200000000 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */; }; FF950301095EF97200000001 /* fill_packet_set.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */; }; + FF9503010DAD0F4C00000000 /* timestamp.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */; }; + FF9503010DAD0F4C00000001 /* timestamp.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */; }; FF9503010E7AA6A100000000 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10E7AA6A100000000 /* gl_context.cc */; }; FF9503010E7AA6A100000001 /* gl_context.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10E7AA6A100000000 /* gl_context.cc */; }; FF9503010F561D5C00000000 /* status.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10F561D5C00000000 /* status.cc */; }; @@ -33,22 +45,30 @@ FF95030112590DCE00000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; FF950301125965EB00000000 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */; }; FF950301125965EB00000001 /* tag_map_helper.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */; }; + FF95030112EE194500000000 /* calculator_context.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112EE194500000000 /* calculator_context.cc */; }; + FF95030112EE194500000001 /* calculator_context.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112EE194500000000 /* calculator_context.cc */; }; FF95030113274D1100000000 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113274D1100000000 /* status_util.cc */; }; FF95030113274D1100000001 /* status_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113274D1100000000 /* status_util.cc */; }; FF9503011335A86600000000 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; FF9503011335A86600000001 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; + FF95030113D967B800000000 /* collection_item_id.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113D967B800000000 /* collection_item_id.cc */; }; + FF95030113D967B800000001 /* collection_item_id.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB113D967B800000000 /* collection_item_id.cc */; }; FF95030114E720D900000000 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */; }; FF95030114E720D900000001 /* image_to_tensor_converter_opencv.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB114E720D900000000 /* image_to_tensor_converter_opencv.cc */; }; FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */; }; FF9503011615959C00000001 /* gpu_buffer_multi_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11615959C00000000 /* gpu_buffer_multi_pool.cc */; }; FF9503011622036E00000000 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11622036E00000000 /* options_util.cc */; }; FF9503011622036E00000001 /* options_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11622036E00000000 /* options_util.cc */; }; + FF95030116BDCDE400000000 /* calculator_context_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */; }; + FF95030116BDCDE400000001 /* calculator_context_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */; }; FF950301176DF12500000000 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */; }; FF950301176DF12500000001 /* fixed_size_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1176DF12500000000 /* fixed_size_input_stream_handler.cc */; }; FF95030118A3906A00000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; FF95030118A3906A00000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; FF950301193223CD00000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; FF950301193223CD00000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; + FF950301196F87BE00000000 /* input_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */; }; + FF950301196F87BE00000001 /* input_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */; }; FF9503011979C9A700000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; FF9503011979C9A700000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; FF9503011ABE2CDD00000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */; }; @@ -71,14 +91,22 @@ FF95030122A81B8400000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; FF95030122A81B8400000002 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; FF95030122A81B8400000003 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; + FF9503012418B90200000000 /* scheduler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12418B90200000000 /* scheduler.cc */; }; + FF9503012418B90200000001 /* scheduler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12418B90200000000 /* scheduler.cc */; }; + FF9503012467AA1E00000000 /* output_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */; }; + FF9503012467AA1E00000001 /* output_stream_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */; }; FF9503012834F00600000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; FF9503012834F00600000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; + FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */; }; + FF9503012C20ABC800000001 /* graph_service_manager.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */; }; FF9503012D3894B500000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; FF9503012D3894B500000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; FF9503012FF7D76200000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; FF9503012FF7D76200000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; FF9503012FF7D76200000002 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; FF9503012FF7D76200000003 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; + FF9503013300B09700000000 /* BilateralAdjustFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */; }; + FF9503013300B09700000001 /* BilateralAdjustFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */; }; FF9503013604E74800000000 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; FF9503013604E74800000001 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; FF9503013604E74800000002 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; @@ -105,16 +133,24 @@ FF95030147B18A7C00000001 /* gl_texture_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */; }; FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; + FF9503014CC60F6C00000000 /* calculator_node.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */; }; + FF9503014CC60F6C00000001 /* calculator_node.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */; }; + FF9503014EA6318000000000 /* packet_generator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */; }; + FF9503014EA6318000000001 /* packet_generator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */; }; FF9503014F3A671800000000 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14F3A671800000000 /* registration_token.cc */; }; FF9503014F3A671800000001 /* registration_token.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14F3A671800000000 /* registration_token.cc */; }; FF9503014FE9977200000000 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14FE9977200000000 /* registration.cc */; }; FF9503014FE9977200000001 /* registration.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14FE9977200000000 /* registration.cc */; }; FF950301511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; FF950301511B4B0900000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; + FF9503015176F86500000000 /* input_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15176F86500000000 /* input_stream_shard.cc */; }; + FF9503015176F86500000001 /* input_stream_shard.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15176F86500000000 /* input_stream_shard.cc */; }; FF9503015215FAC800000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; FF9503015215FAC800000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */; }; FF9503015361890F00000001 /* gl_context_eagl.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */; }; + FF9503015369E8AC00000000 /* packet.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15369E8AC00000000 /* packet.cc */; }; + FF9503015369E8AC00000001 /* packet.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15369E8AC00000000 /* packet.cc */; }; FF9503015590E40F00000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; FF9503015590E40F00000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; FF9503015CAB504600000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15CAB504600000000 /* math.cpp */; }; @@ -131,8 +167,14 @@ FF950301663742CC00000001 /* switch_container.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1663742CC00000000 /* switch_container.cc */; }; FF950301664209C000000000 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */; }; FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */; }; + FF95030166524CD000000000 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; + FF95030166524CD000000001 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; + FF95030166524CD000000002 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; + FF95030166524CD000000003 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; FF950301665E250A00000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; FF950301665E250A00000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; + FF950301676E503E00000000 /* legacy_calculator_support.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */; }; + FF950301676E503E00000001 /* legacy_calculator_support.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */; }; FF9503016909A4FC00000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; FF9503016909A4FC00000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; FF950301695F7B1800000000 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; @@ -145,14 +187,26 @@ FF9503016A24D81700000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */; }; FF9503016DADEE7000000000 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16DADEE7000000000 /* image_frame.cc */; }; FF9503016DADEE7000000001 /* image_frame.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16DADEE7000000000 /* image_frame.cc */; }; + FF9503016E142DC700000000 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; + FF9503016E142DC700000001 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; + FF9503016E142DC700000002 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; + FF9503016E142DC700000003 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; FF9503016E1A9C2D00000000 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */; }; FF9503016E1A9C2D00000001 /* status_builder.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */; }; FF9503016EE5C41200000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; FF9503016EE5C41200000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; FF9503017071A1E200000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; FF9503017071A1E200000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; + FF95030172ED6A0900000000 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; + FF95030172ED6A0900000001 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; FF9503017354A31A00000000 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */; }; FF9503017354A31A00000001 /* tensors_to_floats_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17354A31A00000000 /* tensors_to_floats_calculator.cc */; }; + FF95030173FC11FB00000000 /* calculator_base.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB173FC11FB00000000 /* calculator_base.cc */; }; + FF95030173FC11FB00000001 /* calculator_base.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB173FC11FB00000000 /* calculator_base.cc */; }; + FF95030176651B8000000000 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; + FF95030176651B8000000001 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; + FF95030176651B8000000002 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; + FF95030176651B8000000003 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; FF95030176D31B5D00000000 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */; }; FF95030176D31B5D00000001 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */; }; FF95030178760ADA00000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; @@ -197,12 +251,18 @@ FF950301892D264500000001 /* image_properties_calculator.cc in image */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */; }; FF950301894A474700000000 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */; }; FF950301894A474700000001 /* threadpool_pthread_impl.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */; }; + FF9503018C3C5D5200000000 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; + FF9503018C3C5D5200000001 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; + FF9503018C3C5D5200000002 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; + FF9503018C3C5D5200000003 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; FF9503018D3D681400000000 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */; }; FF9503018D3D681400000001 /* gpu_buffer.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */; }; FF9503018DA33BEA00000000 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18DA33BEA00000000 /* sink.cc */; }; FF9503018DA33BEA00000001 /* sink.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18DA33BEA00000000 /* sink.cc */; }; FF9503018E3AEDD900000000 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E3AEDD900000000 /* container_util.cc */; }; FF9503018E3AEDD900000001 /* container_util.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E3AEDD900000000 /* container_util.cc */; }; + FF9503018E62014A00000000 /* calculator_contract.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E62014A00000000 /* calculator_contract.cc */; }; + FF9503018E62014A00000001 /* calculator_contract.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18E62014A00000000 /* calculator_contract.cc */; }; FF9503018FD5523E00000000 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */; }; FF9503018FD5523E00000001 /* tensors_to_landmarks_calculator.cc in tensor */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18FD5523E00000000 /* tensors_to_landmarks_calculator.cc */; }; FF950301903FFB7900000000 /* tag_map.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1903FFB7900000000 /* tag_map.cc */; }; @@ -217,6 +277,8 @@ FF9503019343B56C00000001 /* proto_util_lite.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */; }; FF95030194ACD3D200000000 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB194ACD3D200000000 /* validate.cc */; }; FF95030194ACD3D200000001 /* validate.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB194ACD3D200000000 /* validate.cc */; }; + FF950301953F4C1900000000 /* executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1953F4C1900000000 /* executor.cc */; }; + FF950301953F4C1900000001 /* executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1953F4C1900000000 /* executor.cc */; }; FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; FF9503019807610500000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19807610500000000 /* MPPGraph.mm */; }; @@ -235,6 +297,8 @@ FF950301A24CB7E500000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */; }; FF950301A3360C7800000000 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */; }; FF950301A3360C7800000001 /* immediate_input_stream_handler.cc in stream_handler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3360C7800000000 /* immediate_input_stream_handler.cc */; }; + FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */; }; + FF950301A3BD02C100000001 /* scheduler_queue.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */; }; FF950301A402CD0400000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; FF950301A402CD0400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; FF950301A54334CD00000000 /* image_opencv.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A54334CD00000000 /* image_opencv.cc */; }; @@ -253,10 +317,16 @@ FF950301B01194E800000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B01194E800000000 /* resource_util.cc */; }; FF950301B1BCD15C00000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; FF950301B1BCD15C00000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; + FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */; }; + FF950301B3D8E01500000001 /* input_side_packet_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */; }; FF950301B6988F9900000000 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B6988F9900000000 /* image.cc */; }; FF950301B6988F9900000001 /* image.cc in formats */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B6988F9900000000 /* image.cc */; }; + FF950301B90D6AD700000000 /* calculator_state.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */; }; + FF950301B90D6AD700000001 /* calculator_state.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */; }; FF950301B9D8F94200000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; FF950301B9D8F94200000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; + FF950301BAE062CD00000000 /* output_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */; }; + FF950301BAE062CD00000001 /* output_stream_handler.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */; }; FF950301BAF6D7FB00000000 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */; }; FF950301BAF6D7FB00000001 /* graph_profiler.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */; }; FF950301C0242BD100000000 /* packet.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C0242BD100000000 /* packet.cc */; }; @@ -275,6 +345,12 @@ FF950301C578A56100000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */; }; FF950301CB04A48200000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; FF950301CB04A48200000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; + FF950301CB59887700000000 /* subgraph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB59887700000000 /* subgraph.cc */; }; + FF950301CB59887700000001 /* subgraph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB59887700000000 /* subgraph.cc */; }; + FF950301CC1CEC7400000000 /* thread_pool_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */; }; + FF950301CC1CEC7400000001 /* thread_pool_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */; }; + FF950301CD235A4400000000 /* counter_factory.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD235A4400000000 /* counter_factory.cc */; }; + FF950301CD235A4400000001 /* counter_factory.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD235A4400000000 /* counter_factory.cc */; }; FF950301CD7D0AD600000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; FF950301CD7D0AD600000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */; }; @@ -283,6 +359,8 @@ FF950301CF0DF08C00000001 /* graph_tracer.cc in profiler */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */; }; FF950301CF12C0C800000000 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF12C0C800000000 /* options_registry.cc */; }; FF950301CF12C0C800000001 /* options_registry.cc in tool */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CF12C0C800000000 /* options_registry.cc */; }; + FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */; }; + FF950301D265CD3E00000001 /* output_side_packet_impl.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */; }; FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; FF950301D36B7DD000000000 /* gpu_service.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */; }; @@ -327,8 +405,12 @@ FF950301EA081C0700000001 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */; }; FF950301EA0F1F1F00000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */; }; FF950301EA0F1F1F00000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */; }; + FF950301EA26099000000000 /* FaceDistortionFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */; }; + FF950301EA26099000000001 /* FaceDistortionFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */; }; FF950301EAFCD2EB00000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; FF950301EAFCD2EB00000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; + FF950301EC826FBE00000000 /* packet_type.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EC826FBE00000000 /* packet_type.cc */; }; + FF950301EC826FBE00000001 /* packet_type.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EC826FBE00000000 /* packet_type.cc */; }; FF950301EE3C320400000000 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */; }; FF950301EE3C320400000001 /* monotonic_clock.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EE3C320400000000 /* monotonic_clock.cc */; }; FF950301EF2DB52100000000 /* topologicalsorter.cc in deps */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */; }; @@ -337,10 +419,16 @@ FF950301EFCD23DE00000001 /* node.cc in api2 */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EFCD23DE00000000 /* node.cc */; }; FF950301F00E9A9000000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; FF950301F00E9A9000000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; + FF950301F015768000000000 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; + FF950301F015768000000001 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; + FF950301F015768000000002 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; + FF950301F015768000000003 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; FF950301F02D7B8400000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; FF950301F02D7B8400000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; FF950301F02D7B8400000002 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; FF950301F02D7B8400000003 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; + FF950301F2C948BB00000000 /* OlaBeautyFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */; }; + FF950301F2C948BB00000001 /* OlaBeautyFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */; }; FF950301F3CC262D00000000 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */; }; FF950301F3CC262D00000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */; }; FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */; }; @@ -349,14 +437,20 @@ FF950301F413FAAB00000001 /* gl_texture_buffer_pool.cc in gpu */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F413FAAB00000000 /* gl_texture_buffer_pool.cc */; }; FF950301F500366D00000000 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */; }; FF950301F500366D00000001 /* ssd_anchors_calculator.cc in tflite */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */; }; + FF950301F50E8E8800000000 /* validated_graph_config.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */; }; + FF950301F50E8E8800000001 /* validated_graph_config.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */; }; FF950301F573FC1600000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; FF950301F573FC1600000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; + FF950301FC0D516900000000 /* calculator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */; }; + FF950301FC0D516900000001 /* calculator_graph.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */; }; FF950301FCEDD60B00000000 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000001 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000002 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; FF950301FCEDD60B00000003 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; + FF950301FE21B94600000000 /* delegating_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */; }; + FF950301FE21B94600000001 /* delegating_executor.cc in framework */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */; }; FF950301FF68235A00000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; FF950301FF68235A00000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; FF950301FF68235A00000002 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; @@ -372,12 +466,6 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE019362DC00000000; }; - 6CA32826022F905300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE022F905200000000; - }; 6CA32826043D6EB900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -390,11 +478,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE0552442E00000000; }; - 6CA3282607268A4900000000 /* PBXContainerItemProxy */ = { + 6CA32826091FB26B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE07268A4800000000; + remoteGlobalIDString = F2FE34CE091FB26A00000000; }; 6CA328260BF0E74100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -462,6 +550,12 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE216C14B800000000; }; + 6CA3282622E7A19300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE22E7A19200000000; + }; 6CA32826270212EF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -498,24 +592,12 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE3E081CF800000000; }; - 6CA328263FD289C500000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE3FD289C400000000; - }; 6CA328264098134F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE4098134E00000000; }; - 6CA3282642ACE2AF00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE42ACE2AE00000000; - }; 6CA328264581F61300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -552,12 +634,30 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE4EC3F25E00000000; }; + 6CA328265631D7AD00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE5631D7AC00000000; + }; + 6CA328265B9442FD00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE5B9442FC00000000; + }; 6CA328265D24269700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE5D24269600000000; }; + 6CA32826605975F300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE605975F200000000; + }; 6CA3282660F40B8100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -570,30 +670,42 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE62520DF600000000; }; + 6CA3282666E95E1300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE66E95E1200000000; + }; 6CA328266729A1D100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE6729A1D000000000; }; + 6CA328266EE3185F00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE6EE3185E00000000; + }; 6CA3282670815F2D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE70815F2C00000000; }; - 6CA328267092C35900000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE7092C35800000000; - }; 6CA32826717FBD3300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE717FBD3200000000; }; + 6CA3282671A9D19F00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE71A9D19E00000000; + }; 6CA32826721498C500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -606,18 +718,18 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE762E872000000000; }; - 6CA3282677193CED00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CE77193CEC00000000; - }; 6CA3282679D4949700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE79D4949600000000; }; + 6CA328267AADD3C500000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE7AADD3C400000000; + }; 6CA328267E674A3900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -636,6 +748,12 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE7FF66ACC00000000; }; + 6CA3282680D4856F00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE80D4856E00000000; + }; 6CA328268489C38D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -654,12 +772,24 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE8B56A57800000000; }; + 6CA328268D69C4A300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE8D69C4A200000000; + }; 6CA3282694BE0ED500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CE94BE0ED400000000; }; + 6CA3282697A002A700000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CE97A002A600000000; + }; 6CA328269B64E5B500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -684,11 +814,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CE9CDDB50C00000000; }; - 6CA328269D5E869900000000 /* PBXContainerItemProxy */ = { + 6CA32826A616095700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE9D5E869800000000; + remoteGlobalIDString = F2FE34CEA616095600000000; }; 6CA32826AB070CC500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -696,11 +826,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEAB070CC400000000; }; - 6CA32826BA2FFD3900000000 /* PBXContainerItemProxy */ = { + 6CA32826AC80CFF100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEBA2FFD3800000000; + remoteGlobalIDString = F2FE34CEAC80CFF000000000; }; 6CA32826BEE3CE7500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -720,11 +850,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEC7F9A94400000000; }; - 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */ = { + 6CA32826CC49096B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEC9EF5A9E00000000; + remoteGlobalIDString = F2FE34CECC49096A00000000; }; 6CA32826CC596BC100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -732,6 +862,12 @@ proxyType = 1; remoteGlobalIDString = F2FE34CECC596BC000000000; }; + 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CECDF0E1D000000000; + }; 6CA32826D4B7599D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -750,18 +886,24 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEDBC0365200000000; }; + 6CA32826DBE24C2D00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CEDBE24C2C00000000; + }; + 6CA32826DDC0B1B300000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CEDDC0B1B200000000; + }; 6CA32826DF5731D100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CEDF5731D000000000; }; - 6CA32826E2CE384D00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEE2CE384C00000000; - }; 6CA32826E4F68A4900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -774,17 +916,11 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEE60E967A00000000; }; - 6CA32826EA11A96900000000 /* PBXContainerItemProxy */ = { + 6CA32826ECB1197500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEEA11A96800000000; - }; - 6CA32826EA7F109100000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEEA7F109000000000; + remoteGlobalIDString = F2FE34CEECB1197400000000; }; 6CA32826ED47024D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -810,6 +946,12 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEEFD48CB400000000; }; + 6CA32826F164385B00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2FE34CEF164385A00000000; + }; 6CA32826F437D55300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; @@ -822,32 +964,22 @@ proxyType = 1; remoteGlobalIDString = F2FE34CEF43963A600000000; }; - 6CA32826F4401A3B00000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF4401A3A00000000; - }; 6CA32826F84C49B100000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 644B9F4C2866F94D00000000 /* Project object */; proxyType = 1; remoteGlobalIDString = F2FE34CEF84C49B000000000; }; - 6CA32826F9FAA4C300000000 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2FE34CEF9FAA4C200000000; - }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 6BF2BEB10019414900000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurFilter.cpp; path = mediapipe/render/core/GaussianBlurFilter.cpp; sourceTree = ""; }; 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; 6BF2BEB10194F5B200000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a; path = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB10278ED3800000000 /* MPPMetalUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPMetalUtil.h; path = mediapipe/gpu/MPPMetalUtil.h; sourceTree = ""; }; + 6BF2BEB103047E7100000000 /* graph_output_stream.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_output_stream.cc; path = mediapipe/framework/graph_output_stream.cc; sourceTree = ""; }; 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_0836C983_ios_min15.5.a; path = lib_idx_op_resolver_0836C983_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB103D38A7A00000000 /* options_syntax_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_syntax_util.h; path = mediapipe/framework/tool/options_syntax_util.h; sourceTree = ""; }; 6BF2BEB103F9803500000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; @@ -856,6 +988,7 @@ 6BF2BEB1042A0E6500000000 /* 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 = ""; }; 6BF2BEB1045C5E6900000000 /* gpu_buffer_storage.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_storage.cc; path = mediapipe/gpu/gpu_buffer_storage.cc; sourceTree = ""; }; 6BF2BEB104BA59E200000000 /* location.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = location.cc; path = mediapipe/framework/formats/location.cc; sourceTree = ""; }; + 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_shard.cc; path = mediapipe/framework/output_stream_shard.cc; sourceTree = ""; }; 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1062DDCBE00000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB10687813A00000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a; path = lib_idx_gl_simple_shaders_CB7AD146_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -864,28 +997,35 @@ 6BF2BEB10814BACE00000000 /* 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 = ""; }; 6BF2BEB10884202400000000 /* any_proto.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = any_proto.h; path = mediapipe/framework/port/any_proto.h; sourceTree = ""; }; 6BF2BEB1089308C200000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a; path = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_handler.cc; path = mediapipe/framework/input_stream_handler.cc; sourceTree = ""; }; 6BF2BEB1095EF97200000000 /* fill_packet_set.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = fill_packet_set.cc; path = mediapipe/framework/tool/fill_packet_set.cc; sourceTree = ""; }; 6BF2BEB10A15310300000000 /* 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 = ""; }; 6BF2BEB10A25C8B400000000 /* template_expander.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = template_expander.h; path = mediapipe/framework/tool/template_expander.h; sourceTree = ""; }; 6BF2BEB10BDFC87C00000000 /* image_frame_opencv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_opencv.h; path = mediapipe/framework/formats/image_frame_opencv.h; sourceTree = ""; }; + 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = timestamp.cc; path = mediapipe/framework/timestamp.cc; sourceTree = ""; }; 6BF2BEB10DE77EFE00000000 /* gl_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context.h; path = mediapipe/gpu/gl_context.h; sourceTree = ""; }; 6BF2BEB10DF9F37000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/object_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB10E7AA6A100000000 /* gl_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context.cc; path = mediapipe/gpu/gl_context.cc; sourceTree = ""; }; + 6BF2BEB10EF5627700000000 /* scheduler_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler_queue.h; path = mediapipe/framework/scheduler_queue.h; sourceTree = ""; }; 6BF2BEB10F561D5C00000000 /* status.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status.cc; path = mediapipe/framework/deps/status.cc; sourceTree = ""; }; 6BF2BEB10F66ADE200000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB10F7B42BA00000000 /* BilateralFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralFilter.hpp; path = mediapipe/render/core/BilateralFilter.hpp; sourceTree = ""; }; 6BF2BEB1105326A800000000 /* 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 = ""; }; 6BF2BEB1111CDDC900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/gpu/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1112804BA00000000 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; path = lib_idx_image_opencv_9E4E8A87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1119EB78500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 6BF2BEB111AB9FD300000000 /* mediapipe_profiling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mediapipe_profiling.h; path = mediapipe/framework/mediapipe_profiling.h; sourceTree = ""; }; 6BF2BEB112136E6200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/deps/vector.h; sourceTree = ""; }; 6BF2BEB1124813CB00000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; 6BF2BEB11251C84200000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; 6BF2BEB112590DCE00000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; 6BF2BEB1125965EB00000000 /* tag_map_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map_helper.cc; path = mediapipe/framework/tool/tag_map_helper.cc; sourceTree = ""; }; 6BF2BEB112692A1500000000 /* trace_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trace_buffer.h; path = mediapipe/framework/profiler/trace_buffer.h; sourceTree = ""; }; + 6BF2BEB112EE194500000000 /* calculator_context.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_context.cc; path = mediapipe/framework/calculator_context.cc; sourceTree = ""; }; 6BF2BEB1130933FA00000000 /* canonical_errors.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = canonical_errors.h; path = mediapipe/framework/deps/canonical_errors.h; sourceTree = ""; }; 6BF2BEB113274D1100000000 /* status_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_util.cc; path = mediapipe/framework/tool/status_util.cc; sourceTree = ""; }; 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm; sourceTree = ""; }; + 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a; path = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB113D967B800000000 /* collection_item_id.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = collection_item_id.cc; path = mediapipe/framework/collection_item_id.cc; sourceTree = ""; }; 6BF2BEB114E720D900000000 /* 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 = ""; }; 6BF2BEB1150335A300000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; 6BF2BEB11548219400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; @@ -893,23 +1033,25 @@ 6BF2BEB115ABCCEE00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; path = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB115B4CC0800000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a; path = lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1160C2A4100000000 /* thread_pool_executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = thread_pool_executor.h; path = mediapipe/framework/thread_pool_executor.h; sourceTree = ""; }; 6BF2BEB1160DA88A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/api2/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB11615959C00000000 /* 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 = ""; }; 6BF2BEB11622036E00000000 /* options_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_util.cc; path = mediapipe/framework/tool/options_util.cc; sourceTree = ""; }; 6BF2BEB116275C2700000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; 6BF2BEB1164B2B0E00000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; 6BF2BEB116536C5000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_context_manager.cc; path = mediapipe/framework/calculator_context_manager.cc; sourceTree = ""; }; 6BF2BEB1176DF12500000000 /* 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 = ""; }; 6BF2BEB1179A317600000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; 6BF2BEB1179C883F00000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/deps/source_location.h; sourceTree = ""; }; - 6BF2BEB117E02C1400000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_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_EDD516E8_ios_min11.0.a; path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1185F0D7700000000 /* 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 = ""; }; + 6BF2BEB11804FA3400000000 /* collection_item_id.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection_item_id.h; path = mediapipe/framework/collection_item_id.h; sourceTree = ""; }; 6BF2BEB1186C668100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1186E3A4700000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; 6BF2BEB118A3906A00000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; 6BF2BEB118FBE5EA00000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/port/numbers.h; sourceTree = ""; }; 6BF2BEB11925DF0400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a; path = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1193223CD00000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; + 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_manager.cc; path = mediapipe/framework/input_stream_manager.cc; sourceTree = ""; }; 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; @@ -918,10 +1060,11 @@ 6BF2BEB11C7B0BA600000000 /* proto_ns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_ns.h; path = mediapipe/framework/port/proto_ns.h; sourceTree = ""; }; 6BF2BEB11CA1FEB600000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a; path = lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB11D16CB6700000000 /* 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 = ""; }; + 6BF2BEB11D502F6200000000 /* output_side_packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_side_packet.h; path = mediapipe/framework/output_side_packet.h; sourceTree = ""; }; 6BF2BEB11DC5DE2F00000000 /* opencv_imgproc_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_imgproc_inc.h; path = mediapipe/framework/port/opencv_imgproc_inc.h; sourceTree = ""; }; 6BF2BEB11EE26A2000000000 /* 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 = ""; }; + 6BF2BEB11F031A2300000000 /* packet_set.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_set.h; path = mediapipe/framework/packet_set.h; sourceTree = ""; }; 6BF2BEB1202F72AF00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; - 6BF2BEB120769C4400000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a; path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB120A93DB300000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/port/map_util.h; sourceTree = ""; }; 6BF2BEB120CC110A00000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB120E3AD2000000000 /* 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 = ""; }; @@ -930,43 +1073,53 @@ 6BF2BEB121BE9D3000000000 /* 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 = ""; }; 6BF2BEB121C1C8AF00000000 /* tuple.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tuple.h; path = mediapipe/framework/api2/tuple.h; sourceTree = ""; }; 6BF2BEB121CFE74A00000000 /* 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_87112A87_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_87112A87_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_87112A87_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a; path = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1224D079A00000000 /* matrix.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = matrix.cc; path = mediapipe/framework/formats/matrix.cc; sourceTree = ""; }; 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; + 6BF2BEB122C19C9500000000 /* legacy_calculator_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = legacy_calculator_support.h; path = mediapipe/framework/legacy_calculator_support.h; sourceTree = ""; }; + 6BF2BEB12418B90200000000 /* scheduler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler.cc; path = mediapipe/framework/scheduler.cc; sourceTree = ""; }; + 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_manager.cc; path = mediapipe/framework/output_stream_manager.cc; sourceTree = ""; }; 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB125F3DD4600000000 /* sharded_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sharded_map.h; path = mediapipe/framework/profiler/sharded_map.h; sourceTree = ""; }; 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; path = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB126DCFA4D00000000 /* gl_thread_collector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_thread_collector.h; path = mediapipe/gpu/gl_thread_collector.h; sourceTree = ""; }; 6BF2BEB1272635B000000000 /* 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 = ""; }; 6BF2BEB1277533FB00000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/deps/status.h; sourceTree = ""; }; + 6BF2BEB12780166200000000 /* packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet.h; path = mediapipe/framework/packet.h; sourceTree = ""; }; 6BF2BEB12828C8A800000000 /* mathutil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = mathutil.h; path = mediapipe/framework/deps/mathutil.h; sourceTree = ""; }; 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; + 6BF2BEB128904C9100000000 /* graph_service_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_service_manager.h; path = mediapipe/framework/graph_service_manager.h; sourceTree = ""; }; 6BF2BEB128F9C32900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/stream_handler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1290D963D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1296CDA0C00000000 /* safe_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = safe_int.h; path = mediapipe/framework/deps/safe_int.h; sourceTree = ""; }; - 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_service_manager.cc; path = mediapipe/framework/graph_service_manager.cc; sourceTree = ""; }; 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_0836C983_ios_min11.0.a; path = lib_idx_op_resolver_0836C983_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; path = lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; 6BF2BEB12D7AE34A00000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; 6BF2BEB12D97516200000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12DC1337600000000 /* gl_texture_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_view.h; path = mediapipe/gpu/gl_texture_view.h; sourceTree = ""; }; + 6BF2BEB12DC641F500000000 /* calculator_state.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_state.h; path = mediapipe/framework/calculator_state.h; sourceTree = ""; }; 6BF2BEB12DEED72900000000 /* map_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = map_util.h; path = mediapipe/framework/deps/map_util.h; sourceTree = ""; }; 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; path = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12E332C1B00000000 /* 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; }; + 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_scheduler_queue_364511B6_ios_min15.5.a; path = lib_idx_scheduler_queue_364511B6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12E3CBFE400000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a; path = lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12F27755200000000 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_7905855A_ios_min15.5.a"; path = "lib_idx_core_core-ios_7905855A_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; 6BF2BEB13079E83D00000000 /* 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 = ""; }; 6BF2BEB1310526FE00000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a; path = lib_idx_image_to_tensor_calculator_FF109E68_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB131C8E4F500000000 /* contract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = contract.h; path = mediapipe/framework/api2/contract.h; sourceTree = ""; }; + 6BF2BEB131F66BEE00000000 /* graph_output_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_output_stream.h; path = mediapipe/framework/graph_output_stream.h; sourceTree = ""; }; 6BF2BEB132036C9800000000 /* 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 = ""; }; 6BF2BEB1329B39B200000000 /* lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a; path = lib_idx_image_to_tensor_calculator_FF109E68_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralAdjustFilter.cpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp; sourceTree = ""; }; 6BF2BEB13382907A00000000 /* 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 = ""; }; 6BF2BEB1338459AD00000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; 6BF2BEB1351C6D3D00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; path = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; 6BF2BEB136FBEB1A00000000 /* 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 = ""; }; + 6BF2BEB137525DD000000000 /* calculator_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_graph.h; path = mediapipe/framework/calculator_graph.h; sourceTree = ""; }; 6BF2BEB137DE7A3C00000000 /* 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 = ""; }; 6BF2BEB13824086F00000000 /* template_expander.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = template_expander.cc; path = mediapipe/framework/tool/template_expander.cc; sourceTree = ""; }; 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; @@ -976,6 +1129,7 @@ 6BF2BEB1398051ED00000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; 6BF2BEB13A3761C900000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h; sourceTree = ""; }; 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; + 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a; path = lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB13BB0D77500000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; 6BF2BEB13C0D6D5B00000000 /* 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 = ""; }; 6BF2BEB13C41172600000000 /* lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a; path = lib_idx_MPPMetalUtil_455751A0_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -988,25 +1142,28 @@ 6BF2BEB13F7DE84500000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/api2/port.h; sourceTree = ""; }; 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14046CD2C00000000 /* 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 = ""; }; + 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB141065C4600000000 /* gl_calculator_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_calculator_helper.h; path = mediapipe/gpu/gl_calculator_helper.h; sourceTree = ""; }; 6BF2BEB1412CF91400000000 /* ret_check.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ret_check.cc; path = mediapipe/framework/deps/ret_check.cc; sourceTree = ""; }; 6BF2BEB143C858F500000000 /* registration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration.h; path = mediapipe/framework/deps/registration.h; sourceTree = ""; }; 6BF2BEB146128B7C00000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14635725B00000000 /* gpu_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer.h; path = mediapipe/gpu/gpu_buffer.h; sourceTree = ""; }; 6BF2BEB146CB30E900000000 /* 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 = ""; }; - 6BF2BEB14766558400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a; path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB147B18A7C00000000 /* gl_texture_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_buffer.cc; path = mediapipe/gpu/gl_texture_buffer.cc; sourceTree = ""; }; 6BF2BEB147F7AD0200000000 /* lib_idx_tensor_7303F5EA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensor_7303F5EA_ios_min15.5.a; path = lib_idx_tensor_7303F5EA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1481B3A4200000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a; path = lib_idx_inference_calculator_metal_9450E505_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB148CB541600000000 /* lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a; path = lib_idx_inference_calculator_metal_9450E505_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; + 6BF2BEB14AB5830800000000 /* subgraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = subgraph.h; path = mediapipe/framework/subgraph.h; sourceTree = ""; }; 6BF2BEB14C3F304600000000 /* validate_name.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate_name.h; path = mediapipe/framework/tool/validate_name.h; sourceTree = ""; }; 6BF2BEB14C89FC5100000000 /* tensor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tensor.h; path = mediapipe/framework/formats/tensor.h; sourceTree = ""; }; + 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_node.cc; path = mediapipe/framework/calculator_node.cc; sourceTree = ""; }; + 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a; path = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB14D3CBB3200000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; 6BF2BEB14DABC5B200000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; 6BF2BEB14E2C8C7E00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB14E71984800000000 /* 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 = ""; }; 6BF2BEB14E78690800000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a; path = lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_generator_graph.cc; path = mediapipe/framework/packet_generator_graph.cc; sourceTree = ""; }; 6BF2BEB14F3A671800000000 /* registration_token.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration_token.cc; path = mediapipe/framework/deps/registration_token.cc; sourceTree = ""; }; 6BF2BEB14F531D3500000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; 6BF2BEB14FE9977200000000 /* registration.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = registration.cc; path = mediapipe/framework/deps/registration.cc; sourceTree = ""; }; @@ -1016,23 +1173,31 @@ 6BF2BEB1510392E900000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; 6BF2BEB1511B4B0900000000 /* 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 = ""; }; 6BF2BEB1513341B200000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/deps/rectangle.h; sourceTree = ""; }; + 6BF2BEB151587D2F00000000 /* LUTFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = LUTFilter.hpp; path = mediapipe/render/core/LUTFilter.hpp; sourceTree = ""; }; + 6BF2BEB15176F86500000000 /* input_stream_shard.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_stream_shard.cc; path = mediapipe/framework/input_stream_shard.cc; sourceTree = ""; }; 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; path = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; 6BF2BEB15235D01B00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/deps/ret_check.h; sourceTree = ""; }; - 6BF2BEB1535ED83200000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a; path = lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1535F4B0A00000000 /* demangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = demangle.h; path = mediapipe/framework/demangle.h; sourceTree = ""; }; 6BF2BEB15361890F00000000 /* gl_context_eagl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_context_eagl.cc; path = mediapipe/gpu/gl_context_eagl.cc; sourceTree = ""; }; + 6BF2BEB15369E8AC00000000 /* packet.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet.cc; path = mediapipe/framework/packet.cc; sourceTree = ""; }; 6BF2BEB15590E40F00000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; 6BF2BEB155AD4EF300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/image/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB15701696000000000 /* sink.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = sink.h; path = mediapipe/framework/tool/sink.h; sourceTree = ""; }; 6BF2BEB1570746DA00000000 /* options_field_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_field_util.h; path = mediapipe/framework/tool/options_field_util.h; sourceTree = ""; }; + 6BF2BEB1574A245900000000 /* graph_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_service.h; path = mediapipe/framework/graph_service.h; sourceTree = ""; }; 6BF2BEB15757E2E000000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; path = lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB15878665C00000000 /* calculator_node.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_node.h; path = mediapipe/framework/calculator_node.h; sourceTree = ""; }; 6BF2BEB158D6475700000000 /* video_stream_header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = video_stream_header.h; path = mediapipe/framework/formats/video_stream_header.h; sourceTree = ""; }; - 6BF2BEB15B7FC03800000000 /* 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_A7BDE743_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_A7BDE743_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_A7BDE743_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB159A4B20700000000 /* output_stream_shard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_shard.h; path = mediapipe/framework/output_stream_shard.h; sourceTree = ""; }; + 6BF2BEB15B1A675D00000000 /* BilateralAdjustFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralAdjustFilter.hpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.hpp; sourceTree = ""; }; 6BF2BEB15BA3402400000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB15BDB816A00000000 /* platform_specific_profiling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = platform_specific_profiling.h; path = mediapipe/framework/platform_specific_profiling.h; sourceTree = ""; }; 6BF2BEB15BDC4E2C00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a; path = lib_idx_MPPMetalHelper_D24F76A1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB15C3C5FA300000000 /* tag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag.h; path = mediapipe/framework/api2/tag.h; sourceTree = ""; }; 6BF2BEB15CAB504600000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; + 6BF2BEB15D3BB86000000000 /* calculator_registry.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_registry.h; path = mediapipe/framework/calculator_registry.h; sourceTree = ""; }; 6BF2BEB15D6C89BE00000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/deps/threadpool.h; sourceTree = ""; }; 6BF2BEB15DDBD6E200000000 /* integral_types.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = integral_types.h; path = mediapipe/framework/port/integral_types.h; sourceTree = ""; }; 6BF2BEB15E15594A00000000 /* lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a; path = lib_idx_MPPMetalHelper_D24F76A1_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1050,17 +1215,19 @@ 6BF2BEB164C0D87E00000000 /* packet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet.h; path = mediapipe/framework/api2/packet.h; sourceTree = ""; }; 6BF2BEB1653B17CA00000000 /* thread_options.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = thread_options.h; path = mediapipe/framework/deps/thread_options.h; sourceTree = ""; }; 6BF2BEB165A8D27000000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; - 6BF2BEB165CF582600000000 /* 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_A7BDE743_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_A7BDE743_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_A7BDE743_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1663742CC00000000 /* switch_container.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = switch_container.cc; path = mediapipe/framework/tool/switch_container.cc; sourceTree = ""; }; 6BF2BEB1664209C000000000 /* gl_simple_shaders.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_simple_shaders.cc; path = mediapipe/gpu/gl_simple_shaders.cc; sourceTree = ""; }; + 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AlphaBlendFilter.cpp; path = mediapipe/render/core/AlphaBlendFilter.cpp; sourceTree = ""; }; 6BF2BEB1665E250A00000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; - 6BF2BEB1674D2B8C00000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a; path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = legacy_calculator_support.cc; path = mediapipe/framework/legacy_calculator_support.cc; sourceTree = ""; }; + 6BF2BEB167ED182A00000000 /* output_side_packet_impl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_side_packet_impl.h; path = mediapipe/framework/output_side_packet_impl.h; sourceTree = ""; }; 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; 6BF2BEB1693BCA6300000000 /* opencv_core_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = opencv_core_inc.h; path = mediapipe/framework/port/opencv_core_inc.h; sourceTree = ""; }; 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaShareTextureFilter.cpp; path = mediapipe/render/core/OlaShareTextureFilter.cpp; sourceTree = ""; }; 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; 6BF2BEB16A4641EF00000000 /* strong_int.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = strong_int.h; path = mediapipe/framework/deps/strong_int.h; sourceTree = ""; }; + 6BF2BEB16B9D59FB00000000 /* scheduler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler.h; path = mediapipe/framework/scheduler.h; sourceTree = ""; }; 6BF2BEB16C0753C400000000 /* rectangle.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle.h; path = mediapipe/framework/port/rectangle.h; sourceTree = ""; }; 6BF2BEB16C46880800000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a; path = lib_idx_gl_calculator_helper_DC51F13C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB16CB3FDF900000000 /* fill_packet_set.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = fill_packet_set.h; path = mediapipe/framework/tool/fill_packet_set.h; sourceTree = ""; }; @@ -1068,18 +1235,23 @@ 6BF2BEB16D38EA9B00000000 /* 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 = ""; }; 6BF2BEB16DADEE7000000000 /* image_frame.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame.cc; path = mediapipe/framework/formats/image_frame.cc; sourceTree = ""; }; 6BF2BEB16DD8CBD900000000 /* gl_context_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_context_internal.h; path = mediapipe/gpu/gl_context_internal.h; sourceTree = ""; }; + 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LUTFilter.cpp; path = mediapipe/render/core/LUTFilter.cpp; sourceTree = ""; }; 6BF2BEB16E1A9C2D00000000 /* status_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = status_builder.cc; path = mediapipe/framework/deps/status_builder.cc; sourceTree = ""; }; 6BF2BEB16E602ADB00000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; 6BF2BEB16EE5C41200000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; + 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a; path = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB16F3388EE00000000 /* lib_idx_matrix_E57ACF41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_E57ACF41_ios_min11.0.a; path = lib_idx_matrix_E57ACF41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB16FFC9AEA00000000 /* location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = location.h; path = mediapipe/framework/formats/location.h; sourceTree = ""; }; 6BF2BEB17071A1E200000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; 6BF2BEB17081A3B200000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/deps/re2.h; sourceTree = ""; }; 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; path = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnSharpMaskFilter.cpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp; sourceTree = ""; }; 6BF2BEB17354A31A00000000 /* 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 = ""; }; + 6BF2BEB173FC11FB00000000 /* calculator_base.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_base.cc; path = mediapipe/framework/calculator_base.cc; sourceTree = ""; }; 6BF2BEB174B3479000000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/port/status_macros.h; sourceTree = ""; }; 6BF2BEB174D2AB4700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/internal/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a; path = lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB176651B8000000000 /* OlaContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaContext.cpp; path = mediapipe/render/core/OlaContext.cpp; sourceTree = ""; }; 6BF2BEB176D31B5D00000000 /* 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 = ""; }; 6BF2BEB1775B508800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB177AE156000000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; path = lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1093,17 +1265,21 @@ 6BF2BEB17AF70C4100000000 /* gl_texture_buffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_texture_buffer.h; path = mediapipe/gpu/gl_texture_buffer.h; sourceTree = ""; }; 6BF2BEB17B0DE23500000000 /* file_helpers.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_helpers.cc; path = mediapipe/framework/deps/file_helpers.cc; sourceTree = ""; }; 6BF2BEB17B79044D00000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; + 6BF2BEB17C18B4B200000000 /* calculator_framework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_framework.h; path = mediapipe/framework/calculator_framework.h; sourceTree = ""; }; 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; 6BF2BEB17C35124F00000000 /* 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 = ""; }; 6BF2BEB17C466FAA00000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; path = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB17CA09C8900000000 /* file_path.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = file_path.cc; path = mediapipe/framework/deps/file_path.cc; sourceTree = ""; }; 6BF2BEB17D2972A300000000 /* shader_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = shader_util.cc; path = mediapipe/gpu/shader_util.cc; sourceTree = ""; }; + 6BF2BEB17D8559CA00000000 /* packet_generator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_generator.h; path = mediapipe/framework/packet_generator.h; sourceTree = ""; }; 6BF2BEB17E728AD500000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; + 6BF2BEB17E824DDD00000000 /* output_stream_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_manager.h; path = mediapipe/framework/output_stream_manager.h; sourceTree = ""; }; 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; 6BF2BEB17F8AEE5A00000000 /* name_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = name_util.h; path = mediapipe/framework/tool/name_util.h; sourceTree = ""; }; 6BF2BEB1801667D500000000 /* shader_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = shader_util.h; path = mediapipe/gpu/shader_util.h; sourceTree = ""; }; 6BF2BEB180714D5F00000000 /* ret_check.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ret_check.h; path = mediapipe/framework/port/ret_check.h; sourceTree = ""; }; + 6BF2BEB1808B066100000000 /* timestamp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = timestamp.h; path = mediapipe/framework/timestamp.h; sourceTree = ""; }; 6BF2BEB18197476100000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/port/file_helpers.h; sourceTree = ""; }; 6BF2BEB18201663E00000000 /* source_location.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = source_location.h; path = mediapipe/framework/port/source_location.h; sourceTree = ""; }; 6BF2BEB18222E1E800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/profiler/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; @@ -1113,69 +1289,87 @@ 6BF2BEB18303122300000000 /* 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 = ""; }; 6BF2BEB18386342A00000000 /* 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 = ""; }; 6BF2BEB184CDCED100000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/framework/Info.plist; sourceTree = ""; }; + 6BF2BEB184E8641C00000000 /* output_stream_poller.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_poller.h; path = mediapipe/framework/output_stream_poller.h; sourceTree = ""; }; 6BF2BEB18556057300000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; 6BF2BEB1860C822F00000000 /* status_builder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_builder.h; path = mediapipe/framework/port/status_builder.h; sourceTree = ""; }; 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1868499C900000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; + 6BF2BEB1869D07B400000000 /* packet_generator_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_generator_graph.h; path = mediapipe/framework/packet_generator_graph.h; sourceTree = ""; }; 6BF2BEB186EDD45D00000000 /* MPPMetalUtil.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalUtil.mm; path = mediapipe/gpu/MPPMetalUtil.mm; sourceTree = ""; }; 6BF2BEB186F599C300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1872E92F200000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; + 6BF2BEB18751E1EB00000000 /* OlaContext.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaContext.hpp; path = mediapipe/render/core/OlaContext.hpp; sourceTree = ""; }; 6BF2BEB1880372FF00000000 /* core_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = core_proto_inc.h; path = mediapipe/framework/port/core_proto_inc.h; sourceTree = ""; }; + 6BF2BEB1880AB3FC00000000 /* calculator_contract.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_contract.h; path = mediapipe/framework/calculator_contract.h; sourceTree = ""; }; 6BF2BEB1883C821000000000 /* 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 = ""; }; + 6BF2BEB18878AA2E00000000 /* input_stream_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_manager.h; path = mediapipe/framework/input_stream_manager.h; sourceTree = ""; }; 6BF2BEB1892D264500000000 /* image_properties_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_properties_calculator.cc; path = mediapipe/calculators/image/image_properties_calculator.cc; sourceTree = ""; }; 6BF2BEB1894A474700000000 /* threadpool_pthread_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = threadpool_pthread_impl.cc; path = mediapipe/framework/deps/threadpool_pthread_impl.cc; sourceTree = ""; }; 6BF2BEB18A230BFA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/tool/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB18AB0302B00000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; + 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralFilter.cpp; path = mediapipe/render/core/BilateralFilter.cpp; sourceTree = ""; }; 6BF2BEB18CCC3D6A00000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; 6BF2BEB18D3D681400000000 /* gpu_buffer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer.cc; path = mediapipe/gpu/gpu_buffer.cc; sourceTree = ""; }; 6BF2BEB18D99A8BD00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB18DA33BEA00000000 /* sink.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = sink.cc; path = mediapipe/framework/tool/sink.cc; sourceTree = ""; }; 6BF2BEB18DE1AC1100000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; 6BF2BEB18E3AEDD900000000 /* container_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = container_util.cc; path = mediapipe/framework/tool/container_util.cc; sourceTree = ""; }; + 6BF2BEB18E62014A00000000 /* calculator_contract.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_contract.cc; path = mediapipe/framework/calculator_contract.cc; sourceTree = ""; }; + 6BF2BEB18EADB4B800000000 /* input_side_packet_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_side_packet_handler.h; path = mediapipe/framework/input_side_packet_handler.h; sourceTree = ""; }; 6BF2BEB18FD5523E00000000 /* 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 = ""; }; 6BF2BEB1902E183E00000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_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_0402C5B7_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_0402C5B7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1903FFB7900000000 /* tag_map.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tag_map.cc; path = mediapipe/framework/tool/tag_map.cc; sourceTree = ""; }; 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; 6BF2BEB19094316600000000 /* registration_token.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = registration_token.h; path = mediapipe/framework/deps/registration_token.h; sourceTree = ""; }; + 6BF2BEB190FA612200000000 /* calculator_context_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_context_manager.h; path = mediapipe/framework/calculator_context_manager.h; sourceTree = ""; }; 6BF2BEB19158518E00000000 /* 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 = ""; }; 6BF2BEB19280C6F300000000 /* 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 = ""; }; 6BF2BEB192A4902100000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; + 6BF2BEB19322F49600000000 /* status_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_handler.h; path = mediapipe/framework/status_handler.h; sourceTree = ""; }; 6BF2BEB19343B56C00000000 /* proto_util_lite.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = proto_util_lite.cc; path = mediapipe/framework/tool/proto_util_lite.cc; sourceTree = ""; }; 6BF2BEB19365292D00000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; 6BF2BEB19427457100000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/deps/topologicalsorter.h; sourceTree = ""; }; 6BF2BEB19448E48100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1948567FF00000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; 6BF2BEB194ACD3D200000000 /* validate.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate.cc; path = mediapipe/framework/tool/validate.cc; sourceTree = ""; }; + 6BF2BEB1953F4C1900000000 /* executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = executor.cc; path = mediapipe/framework/executor.cc; sourceTree = ""; }; 6BF2BEB1954B39AD00000000 /* 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 = ""; }; 6BF2BEB196E75F6C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB19807610500000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; + 6BF2BEB198ABE7D300000000 /* UnSharpMaskFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = UnSharpMaskFilter.hpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.hpp; sourceTree = ""; }; 6BF2BEB198F11B7B00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB198F8470300000000 /* 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 = ""; }; + 6BF2BEB1993D6F9000000000 /* GaussianBlurFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurFilter.hpp; path = mediapipe/render/core/GaussianBlurFilter.hpp; sourceTree = ""; }; 6BF2BEB1994724E200000000 /* statusor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = statusor.h; path = mediapipe/framework/port/statusor.h; sourceTree = ""; }; 6BF2BEB19A1CB0AB00000000 /* no_destructor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = no_destructor.h; path = mediapipe/framework/deps/no_destructor.h; sourceTree = ""; }; + 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a; path = lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB19CA882CA00000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; 6BF2BEB19CBDC5A500000000 /* trace_builder.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = trace_builder.cc; path = mediapipe/framework/profiler/trace_builder.cc; sourceTree = ""; }; 6BF2BEB19CEF571A00000000 /* tflite_model_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_calculator.cc; path = mediapipe/calculators/tflite/tflite_model_calculator.cc; sourceTree = ""; }; 6BF2BEB19D245EEB00000000 /* logging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = logging.h; path = mediapipe/framework/port/logging.h; sourceTree = ""; }; - 6BF2BEB19D2AF81E00000000 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_7905855A_ios_min11.0.a"; path = "lib_idx_core_core-ios_7905855A_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB19D427FC400000000 /* executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = executor.h; path = mediapipe/framework/executor.h; sourceTree = ""; }; 6BF2BEB19DC0A85E00000000 /* gl_texture_view.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_texture_view.cc; path = mediapipe/gpu/gl_texture_view.cc; sourceTree = ""; }; - 6BF2BEB19E1406F200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB19E6C836600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a; path = lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB19F1006A000000000 /* subgraph_expansion.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subgraph_expansion.cc; path = mediapipe/framework/tool/subgraph_expansion.cc; sourceTree = ""; }; + 6BF2BEB19F67F7B300000000 /* delegating_executor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = delegating_executor.h; path = mediapipe/framework/delegating_executor.h; sourceTree = ""; }; 6BF2BEB19F6BE74900000000 /* profiler_resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = profiler_resource_util.h; path = mediapipe/framework/profiler/profiler_resource_util.h; sourceTree = ""; }; + 6BF2BEB1A061BE4E00000000 /* FaceDistortionFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FaceDistortionFilter.hpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp; sourceTree = ""; }; 6BF2BEB1A0D4CED400000000 /* const_str.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const_str.h; path = mediapipe/framework/api2/const_str.h; sourceTree = ""; }; 6BF2BEB1A160E81200000000 /* vector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = vector.h; path = mediapipe/framework/port/vector.h; sourceTree = ""; }; 6BF2BEB1A24CB7E500000000 /* 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 = ""; }; 6BF2BEB1A3360C7800000000 /* 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 = ""; }; 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; path = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A3AD775A00000000 /* 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 = ""; }; + 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = scheduler_queue.cc; path = mediapipe/framework/scheduler_queue.cc; sourceTree = ""; }; 6BF2BEB1A402CD0400000000 /* 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 = ""; }; 6BF2BEB1A44A9C2600000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; + 6BF2BEB1A5426DFA00000000 /* output_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream_handler.h; path = mediapipe/framework/output_stream_handler.h; sourceTree = ""; }; 6BF2BEB1A54334CD00000000 /* image_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_opencv.cc; path = mediapipe/framework/formats/image_opencv.cc; sourceTree = ""; }; 6BF2BEB1A59F4B3400000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a; path = lib_idx_MPPGraphGPUData_39C9C70C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A5AE2EC700000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; 6BF2BEB1A640951800000000 /* gpu_service.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_service.h; path = mediapipe/gpu/gpu_service.h; sourceTree = ""; }; 6BF2BEB1A65D9EE000000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; + 6BF2BEB1A688B9F200000000 /* packet_type.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = packet_type.h; path = mediapipe/framework/packet_type.h; sourceTree = ""; }; 6BF2BEB1A6AE93A200000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a; path = lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1A7A4F9AD00000000 /* file_path.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_path.h; path = mediapipe/framework/deps/file_path.h; sourceTree = ""; }; 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; @@ -1193,14 +1387,19 @@ 6BF2BEB1AD0229B000000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; 6BF2BEB1AD25FB3D00000000 /* graph_profiler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_profiler.h; path = mediapipe/framework/profiler/graph_profiler.h; sourceTree = ""; }; 6BF2BEB1AE45ACD400000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1AEA6171A00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/filters/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1AECAD3DF00000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/deps/singleton.h; sourceTree = ""; }; 6BF2BEB1AEFCBBBF00000000 /* image_frame_view.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame_view.h; path = mediapipe/gpu/image_frame_view.h; sourceTree = ""; }; + 6BF2BEB1AFFDFEDD00000000 /* scheduler_shared.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = scheduler_shared.h; path = mediapipe/framework/scheduler_shared.h; sourceTree = ""; }; 6BF2BEB1B01194E800000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; + 6BF2BEB1B030713700000000 /* AlphaBlendFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = AlphaBlendFilter.hpp; path = mediapipe/render/core/AlphaBlendFilter.hpp; sourceTree = ""; }; 6BF2BEB1B0FBE87A00000000 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_path_E61EA0A1_ios_min15.5.a; path = lib_idx_file_path_E61EA0A1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; + 6BF2BEB1B27784D400000000 /* counter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = counter.h; path = mediapipe/framework/counter.h; sourceTree = ""; }; 6BF2BEB1B2FBB04C00000000 /* threadpool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = threadpool.h; path = mediapipe/framework/port/threadpool.h; sourceTree = ""; }; 6BF2BEB1B319CA1A00000000 /* 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 = ""; }; 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = input_side_packet_handler.cc; path = mediapipe/framework/input_side_packet_handler.cc; sourceTree = ""; }; 6BF2BEB1B46C638600000000 /* proto_util_lite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = proto_util_lite.h; path = mediapipe/framework/tool/proto_util_lite.h; sourceTree = ""; }; 6BF2BEB1B47EA6D400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a; path = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B4B6713700000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; @@ -1209,19 +1408,21 @@ 6BF2BEB1B6C12DD500000000 /* OlaShareTextureFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaShareTextureFilter.hpp; path = mediapipe/render/core/OlaShareTextureFilter.hpp; sourceTree = ""; }; 6BF2BEB1B79DF59300000000 /* status_macros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_macros.h; path = mediapipe/framework/deps/status_macros.h; sourceTree = ""; }; 6BF2BEB1B7B8021300000000 /* 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 = ""; }; + 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_state.cc; path = mediapipe/framework/calculator_state.cc; sourceTree = ""; }; 6BF2BEB1B917097400000000 /* graph_support.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_support.h; path = mediapipe/gpu/graph_support.h; sourceTree = ""; }; 6BF2BEB1B932689500000000 /* validate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validate.h; path = mediapipe/framework/tool/validate.h; sourceTree = ""; }; 6BF2BEB1B988349400000000 /* lib_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_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_0402C5B7_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_0402C5B7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1B9D8F94200000000 /* 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 = ""; }; 6BF2BEB1B9E631C400000000 /* lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a; path = lib_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1BA4C7DED00000000 /* gpu_buffer_storage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gpu_buffer_storage.h; path = mediapipe/gpu/gpu_buffer_storage.h; sourceTree = ""; }; + 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_stream_handler.cc; path = mediapipe/framework/output_stream_handler.cc; sourceTree = ""; }; 6BF2BEB1BAF6D7FB00000000 /* graph_profiler.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_profiler.cc; path = mediapipe/framework/profiler/graph_profiler.cc; sourceTree = ""; }; 6BF2BEB1BB36203600000000 /* lib_idx_matrix_E57ACF41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_matrix_E57ACF41_ios_min15.5.a; path = lib_idx_matrix_E57ACF41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1BB36CC3A00000000 /* 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 = ""; }; 6BF2BEB1BCA5996A00000000 /* options_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_map.h; path = mediapipe/framework/tool/options_map.h; sourceTree = ""; }; 6BF2BEB1BD589A4200000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; 6BF2BEB1BD71A6CA00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1BF5A686400000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a; path = lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1BDE9DAE500000000 /* input_stream_shard.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_shard.h; path = mediapipe/framework/input_stream_shard.h; sourceTree = ""; }; 6BF2BEB1BFB21A6700000000 /* tag_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map.h; path = mediapipe/framework/tool/tag_map.h; sourceTree = ""; }; 6BF2BEB1C0242BD100000000 /* packet.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet.cc; path = mediapipe/framework/api2/packet.cc; sourceTree = ""; }; 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; path = lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1230,38 +1431,51 @@ 6BF2BEB1C19F2BDB00000000 /* inference_calculator_metal.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_metal.cc; path = mediapipe/calculators/tensor/inference_calculator_metal.cc; sourceTree = ""; }; 6BF2BEB1C23D5A8900000000 /* gpu_buffer_format.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_buffer_format.cc; path = mediapipe/gpu/gpu_buffer_format.cc; sourceTree = ""; }; 6BF2BEB1C33800FF00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/port/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 6BF2BEB1C3BD3DCA00000000 /* calculator_base.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_base.h; path = mediapipe/framework/calculator_base.h; sourceTree = ""; }; 6BF2BEB1C3C01D9000000000 /* 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 = ""; }; + 6BF2BEB1C3DCE75400000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/port.h; sourceTree = ""; }; 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C42F44E800000000 /* validate_name.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validate_name.cc; path = mediapipe/framework/tool/validate_name.cc; sourceTree = ""; }; 6BF2BEB1C471843E00000000 /* MPPGraphGPUData.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraphGPUData.mm; path = mediapipe/gpu/MPPGraphGPUData.mm; sourceTree = ""; }; 6BF2BEB1C5778B6600000000 /* options_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = options_util.h; path = mediapipe/framework/tool/options_util.h; sourceTree = ""; }; 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; + 6BF2BEB1C5D7FA5E00000000 /* collection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = collection.h; path = mediapipe/framework/collection.h; sourceTree = ""; }; 6BF2BEB1C74C726D00000000 /* port.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = port.h; path = mediapipe/framework/port/port.h; sourceTree = ""; }; 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C7D7F55E00000000 /* 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 = ""; }; 6BF2BEB1C846EAA000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1C8BD724E00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1C94D4D4E00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a; path = lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1C9E92EC600000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; path = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CB04A48200000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; + 6BF2BEB1CB59887700000000 /* subgraph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = subgraph.cc; path = mediapipe/framework/subgraph.cc; sourceTree = ""; }; 6BF2BEB1CB5A8A0E00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; + 6BF2BEB1CB82B7FB00000000 /* calculator_context.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = calculator_context.h; path = mediapipe/framework/calculator_context.h; sourceTree = ""; }; + 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CC197DE700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thread_pool_executor.cc; path = mediapipe/framework/thread_pool_executor.cc; sourceTree = ""; }; + 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a; path = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CCC9CAE300000000 /* 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 = ""; }; + 6BF2BEB1CD235A4400000000 /* counter_factory.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = counter_factory.cc; path = mediapipe/framework/counter_factory.cc; sourceTree = ""; }; 6BF2BEB1CD7D0AD600000000 /* 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 = ""; }; 6BF2BEB1CD892EC300000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; 6BF2BEB1CDB6653400000000 /* gl_calculator_helper.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gl_calculator_helper.cc; path = mediapipe/gpu/gl_calculator_helper.cc; sourceTree = ""; }; 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; path = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CF0DF08C00000000 /* graph_tracer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = graph_tracer.cc; path = mediapipe/framework/profiler/graph_tracer.cc; sourceTree = ""; }; + 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a; path = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1CF12C0C800000000 /* options_registry.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = options_registry.cc; path = mediapipe/framework/tool/options_registry.cc; sourceTree = ""; }; 6BF2BEB1D0386F0200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a; path = lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D0C63A8000000000 /* clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clock.h; path = mediapipe/framework/deps/clock.h; sourceTree = ""; }; + 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = output_side_packet_impl.cc; path = mediapipe/framework/output_side_packet_impl.cc; sourceTree = ""; }; 6BF2BEB1D2F46D2A00000000 /* 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 = ""; }; 6BF2BEB1D36B7DD000000000 /* gpu_service.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gpu_service.cc; path = mediapipe/gpu/gpu_service.cc; sourceTree = ""; }; + 6BF2BEB1D3C1DEA500000000 /* type_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = type_map.h; path = mediapipe/framework/type_map.h; sourceTree = ""; }; 6BF2BEB1D3E5087100000000 /* image_frame_opencv.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = image_frame_opencv.cc; path = mediapipe/framework/formats/image_frame_opencv.cc; sourceTree = ""; }; 6BF2BEB1D41C8E5500000000 /* image_frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = image_frame.h; path = mediapipe/framework/formats/image_frame.h; sourceTree = ""; }; 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; path = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D5E0B49400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a; path = lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1D4FF55E300000000 /* input_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream.h; path = mediapipe/framework/input_stream.h; sourceTree = ""; }; 6BF2BEB1D606383800000000 /* 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 = ""; }; 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_shader_util_C047EBB4_ios_min15.5.a; path = lib_idx_shader_util_C047EBB4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1273,6 +1487,7 @@ 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_68C63536_ios_min15.5.a; path = lib_idx_math_68C63536_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1D9E0F97500000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; 6BF2BEB1DB9D1C2A00000000 /* clock.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = clock.cc; path = mediapipe/framework/deps/clock.cc; sourceTree = ""; }; + 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a; path = lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1DC10729000000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/deps/point2.h; sourceTree = ""; }; 6BF2BEB1DC26EEDA00000000 /* 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; }; 6BF2BEB1DC63EA9700000000 /* point2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = point2.h; path = mediapipe/framework/port/point2.h; sourceTree = ""; }; @@ -1286,8 +1501,10 @@ 6BF2BEB1DF7B922800000000 /* status_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status_util.h; path = mediapipe/framework/tool/status_util.h; sourceTree = ""; }; 6BF2BEB1DFD99BDE00000000 /* lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a; path = lib_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E04C93CE00000000 /* 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 = ""; }; + 6BF2BEB1E1673ED500000000 /* OlaBeautyFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaBeautyFilter.hpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp; sourceTree = ""; }; 6BF2BEB1E174331500000000 /* 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 = ""; }; 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; path = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1E23DFAD100000000 /* counter_factory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = counter_factory.h; path = mediapipe/framework/counter_factory.h; sourceTree = ""; }; 6BF2BEB1E25C746E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; path = lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E276944000000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; 6BF2BEB1E29809CA00000000 /* 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_87112A87_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_87112A87_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_87112A87_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1297,21 +1514,25 @@ 6BF2BEB1E2CCEE3B00000000 /* MPPMetalHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPMetalHelper.mm; path = mediapipe/gpu/MPPMetalHelper.mm; sourceTree = ""; }; 6BF2BEB1E364A8E800000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E3DAC1ED00000000 /* status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = status.h; path = mediapipe/framework/port/status.h; sourceTree = ""; }; + 6BF2BEB1E4E7AC2300000000 /* output_stream.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = output_stream.h; path = mediapipe/framework/output_stream.h; sourceTree = ""; }; 6BF2BEB1E600CBCB00000000 /* inference_calculator_cpu.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator_cpu.cc; path = mediapipe/calculators/tensor/inference_calculator_cpu.cc; sourceTree = ""; }; 6BF2BEB1E6069BD500000000 /* callback_packet_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = callback_packet_calculator.cc; path = mediapipe/calculators/internal/callback_packet_calculator.cc; sourceTree = ""; }; 6BF2BEB1E63D507200000000 /* 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 = ""; }; 6BF2BEB1E66C0F0900000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; 6BF2BEB1E73463BA00000000 /* inference_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = inference_calculator.cc; path = mediapipe/calculators/tensor/inference_calculator.cc; sourceTree = ""; }; - 6BF2BEB1E77A1E6A00000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_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_EDD516E8_ios_min15.5.a; path = lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1E77FEC5500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/formats/annotation/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1E7A8AC5300000000 /* re2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = re2.h; path = mediapipe/framework/port/re2.h; sourceTree = ""; }; 6BF2BEB1E82089DF00000000 /* 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 = ""; }; - 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1E922429600000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1E95EE0B700000000 /* validated_graph_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = validated_graph_config.h; path = mediapipe/framework/validated_graph_config.h; sourceTree = ""; }; 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; path = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; + 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FaceDistortionFilter.cpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp; sourceTree = ""; }; 6BF2BEB1EA7C050B00000000 /* advanced_proto_inc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = advanced_proto_inc.h; path = mediapipe/framework/port/advanced_proto_inc.h; sourceTree = ""; }; 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; + 6BF2BEB1EBADEF3000000000 /* whiten.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = whiten.png; path = mediapipe/render/module/beauty/whiten.png; sourceTree = ""; }; + 6BF2BEB1EC826FBE00000000 /* packet_type.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = packet_type.cc; path = mediapipe/framework/packet_type.cc; sourceTree = ""; }; 6BF2BEB1ECA8F55D00000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; 6BF2BEB1ECAC14B600000000 /* lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a; path = lib_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1ECDFFE8400000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; @@ -1321,16 +1542,24 @@ 6BF2BEB1EF2DB52100000000 /* topologicalsorter.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = topologicalsorter.cc; path = mediapipe/framework/deps/topologicalsorter.cc; sourceTree = ""; }; 6BF2BEB1EFCD23DE00000000 /* node.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = node.cc; path = mediapipe/framework/api2/node.cc; sourceTree = ""; }; 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; + 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurMonoFilter.cpp; path = mediapipe/render/core/GaussianBlurMonoFilter.cpp; sourceTree = ""; }; 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; 6BF2BEB1F038216200000000 /* gl_simple_shaders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = gl_simple_shaders.h; path = mediapipe/gpu/gl_simple_shaders.h; sourceTree = ""; }; + 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a; path = lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6BF2BEB1F14A7B4C00000000 /* GaussianBlurMonoFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurMonoFilter.hpp; path = mediapipe/render/core/GaussianBlurMonoFilter.hpp; sourceTree = ""; }; + 6BF2BEB1F19C372400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1F21484F900000000 /* tag_map_helper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tag_map_helper.h; path = mediapipe/framework/tool/tag_map_helper.h; sourceTree = ""; }; + 6BF2BEB1F23F890000000000 /* input_stream_handler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = input_stream_handler.h; path = mediapipe/framework/input_stream_handler.h; sourceTree = ""; }; + 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaBeautyFilter.cpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp; sourceTree = ""; }; 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; 6BF2BEB1F3F047F600000000 /* 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 = ""; }; 6BF2BEB1F413FAAB00000000 /* 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 = ""; }; 6BF2BEB1F45BDEFB00000000 /* numbers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = numbers.h; path = mediapipe/framework/deps/numbers.h; sourceTree = ""; }; 6BF2BEB1F48893FA00000000 /* graph_tracer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = graph_tracer.h; path = mediapipe/framework/profiler/graph_tracer.h; sourceTree = ""; }; 6BF2BEB1F4BC7EAB00000000 /* node.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = node.h; path = mediapipe/framework/api2/node.h; sourceTree = ""; }; + 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a; path = lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1F500366D00000000 /* ssd_anchors_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ssd_anchors_calculator.cc; path = mediapipe/calculators/tflite/ssd_anchors_calculator.cc; sourceTree = ""; }; + 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = validated_graph_config.cc; path = mediapipe/framework/validated_graph_config.cc; sourceTree = ""; }; 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; 6BF2BEB1F588AA1C00000000 /* subgraph_expansion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = subgraph_expansion.h; path = mediapipe/framework/tool/subgraph_expansion.h; sourceTree = ""; }; 6BF2BEB1F5A7462400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a; path = lib_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1338,14 +1567,19 @@ 6BF2BEB1F6DC151700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/framework/deps/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1F711CCAC00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; 6BF2BEB1F7A5F05D00000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; + 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_scheduler_queue_364511B6_ios_min11.0.a; path = lib_idx_scheduler_queue_364511B6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1F816D91B00000000 /* file_helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = file_helpers.h; path = mediapipe/framework/deps/file_helpers.h; sourceTree = ""; }; 6BF2BEB1F879A06600000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; path = lib_idx_location_image_frame_opencv_D6F50F87_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1F9338C6300000000 /* topologicalsorter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = topologicalsorter.h; path = mediapipe/framework/port/topologicalsorter.h; sourceTree = ""; }; 6BF2BEB1FAAA803400000000 /* type_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = type_util.h; path = mediapipe/framework/tool/type_util.h; sourceTree = ""; }; + 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = calculator_graph.cc; path = mediapipe/framework/calculator_graph.cc; sourceTree = ""; }; + 6BF2BEB1FCBC06F000000000 /* face_mesh_common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_common.h; path = mediapipe/render/module/beauty/face_mesh_common.h; sourceTree = ""; }; 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CVFramebuffer.cpp; path = mediapipe/render/core/CVFramebuffer.cpp; sourceTree = ""; }; 6BF2BEB1FCFCD34500000000 /* monotonic_clock.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = monotonic_clock.h; path = mediapipe/framework/deps/monotonic_clock.h; sourceTree = ""; }; 6BF2BEB1FD2AF7C900000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; 6BF2BEB1FD86B18B00000000 /* singleton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = singleton.h; path = mediapipe/framework/port/singleton.h; sourceTree = ""; }; + 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = delegating_executor.cc; path = mediapipe/framework/delegating_executor.cc; sourceTree = ""; }; + 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a; path = lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; 6BF2BEB1FFFFBBA500000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; /* End PBXFileReference section */ @@ -1492,15 +1726,6 @@ name = common; sourceTree = ""; }; - A2FEA7361E84DE5500000000 /* face_detection */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1119EB78500000000 /* BUILD */, - 6BF2BEB14E71984800000000 /* face_detection_short_range.tflite */, - ); - name = face_detection; - sourceTree = ""; - }; A2FEA73620B6F45900000000 /* module */ = { isa = PBXGroup; children = ( @@ -1673,7 +1898,11 @@ A2FEA7365B40412100000001 /* core */ = { isa = PBXGroup; children = ( + 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */, + 6BF2BEB1B030713700000000 /* AlphaBlendFilter.hpp */, 6BF2BEB186F599C300000000 /* BUILD */, + 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */, + 6BF2BEB10F7B42BA00000000 /* BilateralFilter.hpp */, 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */, 6BF2BEB1948567FF00000000 /* CVFramebuffer.hpp */, 6BF2BEB1D9E0F97500000000 /* Context.cpp */, @@ -1695,8 +1924,16 @@ 6BF2BEB1CD892EC300000000 /* GPUImageTarget.h */, 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */, 6BF2BEB1872E92F200000000 /* GPUImageUtil.h */, + 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */, + 6BF2BEB1993D6F9000000000 /* GaussianBlurFilter.hpp */, + 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */, + 6BF2BEB1F14A7B4C00000000 /* GaussianBlurMonoFilter.hpp */, 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */, 6BF2BEB19365292D00000000 /* IOSTarget.hpp */, + 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */, + 6BF2BEB151587D2F00000000 /* LUTFilter.hpp */, + 6BF2BEB176651B8000000000 /* OlaContext.cpp */, + 6BF2BEB18751E1EB00000000 /* OlaContext.hpp */, 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */, 6BF2BEB1B6C12DD500000000 /* OlaShareTextureFilter.hpp */, 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */, @@ -1741,13 +1978,94 @@ A2FEA7366242245000000001 /* framework */ = { isa = PBXGroup; children = ( + 6BF2BEB1F19C372400000000 /* BUILD */, A2FEA736B175697000000000 /* api2 */, + 6BF2BEB173FC11FB00000000 /* calculator_base.cc */, + 6BF2BEB1C3BD3DCA00000000 /* calculator_base.h */, + 6BF2BEB112EE194500000000 /* calculator_context.cc */, + 6BF2BEB1CB82B7FB00000000 /* calculator_context.h */, + 6BF2BEB116BDCDE400000000 /* calculator_context_manager.cc */, + 6BF2BEB190FA612200000000 /* calculator_context_manager.h */, + 6BF2BEB18E62014A00000000 /* calculator_contract.cc */, + 6BF2BEB1880AB3FC00000000 /* calculator_contract.h */, + 6BF2BEB17C18B4B200000000 /* calculator_framework.h */, + 6BF2BEB1FC0D516900000000 /* calculator_graph.cc */, + 6BF2BEB137525DD000000000 /* calculator_graph.h */, + 6BF2BEB14CC60F6C00000000 /* calculator_node.cc */, + 6BF2BEB15878665C00000000 /* calculator_node.h */, + 6BF2BEB15D3BB86000000000 /* calculator_registry.h */, + 6BF2BEB1B90D6AD700000000 /* calculator_state.cc */, + 6BF2BEB12DC641F500000000 /* calculator_state.h */, + 6BF2BEB1C5D7FA5E00000000 /* collection.h */, + 6BF2BEB113D967B800000000 /* collection_item_id.cc */, + 6BF2BEB11804FA3400000000 /* collection_item_id.h */, + 6BF2BEB1B27784D400000000 /* counter.h */, + 6BF2BEB1CD235A4400000000 /* counter_factory.cc */, + 6BF2BEB1E23DFAD100000000 /* counter_factory.h */, + 6BF2BEB1FE21B94600000000 /* delegating_executor.cc */, + 6BF2BEB19F67F7B300000000 /* delegating_executor.h */, + 6BF2BEB1535F4B0A00000000 /* demangle.h */, A2FEA73601EBA99700000000 /* deps */, + 6BF2BEB1953F4C1900000000 /* executor.cc */, + 6BF2BEB19D427FC400000000 /* executor.h */, A2FEA7369325E62D00000000 /* formats */, + 6BF2BEB103047E7100000000 /* graph_output_stream.cc */, + 6BF2BEB131F66BEE00000000 /* graph_output_stream.h */, + 6BF2BEB1574A245900000000 /* graph_service.h */, + 6BF2BEB12C20ABC800000000 /* graph_service_manager.cc */, + 6BF2BEB128904C9100000000 /* graph_service_manager.h */, + 6BF2BEB1B3D8E01500000000 /* input_side_packet_handler.cc */, + 6BF2BEB18EADB4B800000000 /* input_side_packet_handler.h */, + 6BF2BEB1D4FF55E300000000 /* input_stream.h */, + 6BF2BEB108D791BD00000000 /* input_stream_handler.cc */, + 6BF2BEB1F23F890000000000 /* input_stream_handler.h */, + 6BF2BEB1196F87BE00000000 /* input_stream_manager.cc */, + 6BF2BEB18878AA2E00000000 /* input_stream_manager.h */, + 6BF2BEB15176F86500000000 /* input_stream_shard.cc */, + 6BF2BEB1BDE9DAE500000000 /* input_stream_shard.h */, + 6BF2BEB1676E503E00000000 /* legacy_calculator_support.cc */, + 6BF2BEB122C19C9500000000 /* legacy_calculator_support.h */, + 6BF2BEB111AB9FD300000000 /* mediapipe_profiling.h */, + 6BF2BEB11D502F6200000000 /* output_side_packet.h */, + 6BF2BEB1D265CD3E00000000 /* output_side_packet_impl.cc */, + 6BF2BEB167ED182A00000000 /* output_side_packet_impl.h */, + 6BF2BEB1E4E7AC2300000000 /* output_stream.h */, + 6BF2BEB1BAE062CD00000000 /* output_stream_handler.cc */, + 6BF2BEB1A5426DFA00000000 /* output_stream_handler.h */, + 6BF2BEB12467AA1E00000000 /* output_stream_manager.cc */, + 6BF2BEB17E824DDD00000000 /* output_stream_manager.h */, + 6BF2BEB184E8641C00000000 /* output_stream_poller.h */, + 6BF2BEB1051CE57300000000 /* output_stream_shard.cc */, + 6BF2BEB159A4B20700000000 /* output_stream_shard.h */, + 6BF2BEB15369E8AC00000000 /* packet.cc */, + 6BF2BEB12780166200000000 /* packet.h */, + 6BF2BEB17D8559CA00000000 /* packet_generator.h */, + 6BF2BEB14EA6318000000000 /* packet_generator_graph.cc */, + 6BF2BEB1869D07B400000000 /* packet_generator_graph.h */, + 6BF2BEB11F031A2300000000 /* packet_set.h */, + 6BF2BEB1EC826FBE00000000 /* packet_type.cc */, + 6BF2BEB1A688B9F200000000 /* packet_type.h */, + 6BF2BEB15BDB816A00000000 /* platform_specific_profiling.h */, A2FEA736C8B0BA2700000000 /* port */, + 6BF2BEB1C3DCE75400000000 /* port.h */, A2FEA736EFE2DD4800000000 /* profiler */, + 6BF2BEB12418B90200000000 /* scheduler.cc */, + 6BF2BEB16B9D59FB00000000 /* scheduler.h */, + 6BF2BEB1A3BD02C100000000 /* scheduler_queue.cc */, + 6BF2BEB10EF5627700000000 /* scheduler_queue.h */, + 6BF2BEB1AFFDFEDD00000000 /* scheduler_shared.h */, + 6BF2BEB19322F49600000000 /* status_handler.h */, A2FEA736F804838200000000 /* stream_handler */, + 6BF2BEB1CB59887700000000 /* subgraph.cc */, + 6BF2BEB14AB5830800000000 /* subgraph.h */, + 6BF2BEB1CC1CEC7400000000 /* thread_pool_executor.cc */, + 6BF2BEB1160C2A4100000000 /* thread_pool_executor.h */, + 6BF2BEB10DAD0F4C00000000 /* timestamp.cc */, + 6BF2BEB1808B066100000000 /* timestamp.h */, A2FEA7364C20727A00000000 /* tool */, + 6BF2BEB1D3C1DEA500000000 /* type_map.h */, + 6BF2BEB1F50E8E8800000000 /* validated_graph_config.cc */, + 6BF2BEB1E95EE0B700000000 /* validated_graph_config.h */, ); name = framework; sourceTree = ""; @@ -1777,11 +2095,14 @@ 6BF2BEB115ABCCEE00000000 /* BUILD */, 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */, 6BF2BEB13382907A00000000 /* face_mesh_beauty_render.h */, + 6BF2BEB1FCBC06F000000000 /* face_mesh_common.h */, 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */, 6BF2BEB18386342A00000000 /* face_mesh_module.h */, 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */, 6BF2BEB1ACECC86600000000 /* face_mesh_module_imp.h */, + A2FEA73698071DC200000000 /* filters */, A2FEA736CF167CF800000001 /* ios */, + 6BF2BEB1EBADEF3000000000 /* whiten.png */, ); name = beauty; sourceTree = ""; @@ -1805,14 +2126,12 @@ 6BF2BEB120CC110A00000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */, 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */, 6BF2BEB15FE6FF0200000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */, - 6BF2BEB19D2AF81E00000000 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */, - 6BF2BEB12F27755200000000 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */, + 6BF2BEB1E922429600000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */, + 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */, 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */, 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */, 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */, 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */, - 6BF2BEB1D5E0B49400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */, - 6BF2BEB14766558400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */, 6BF2BEB161D5A49A00000000 /* lib_idx_file_path_E61EA0A1_ios_min11.0.a */, 6BF2BEB1B0FBE87A00000000 /* lib_idx_file_path_E61EA0A1_ios_min15.5.a */, 6BF2BEB1EDF6BDAE00000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a */, @@ -1837,8 +2156,6 @@ 6BF2BEB14E78690800000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5.a */, 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */, 6BF2BEB146128B7C00000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5.a */, - 6BF2BEB117E02C1400000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a */, - 6BF2BEB1E77A1E6A00000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a */, 6BF2BEB1F5BD4E1400000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0.a */, 6BF2BEB177AE156000000000 /* lib_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5.a */, 6BF2BEB138ACA16200000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0.a */, @@ -1861,16 +2178,20 @@ 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */, 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */, 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */, + 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */, + 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */, 6BF2BEB1089308C200000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0.a */, 6BF2BEB115B4CC0800000000 /* lib_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5.a */, - 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */, - 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */, + 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */, + 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */, 6BF2BEB15757E2E000000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min11.0.a */, 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */, 6BF2BEB196E75F6C00000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0.a */, 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */, 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, + 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */, + 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */, 6BF2BEB107671C9600000000 /* lib_idx_shader_util_C047EBB4_ios_min11.0.a */, 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */, 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */, @@ -1887,18 +2208,22 @@ 6BF2BEB1C94D4D4E00000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5.a */, 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */, 6BF2BEB17982938200000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */, + 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */, + 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */, 6BF2BEB1E29809CA00000000 /* 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_87112A87_ios_min11.0.a */, 6BF2BEB121CFE74A00000000 /* 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_87112A87_ios_min15.5.a */, - 6BF2BEB1535ED83200000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */, - 6BF2BEB120769C4400000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */, + 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */, + 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */, 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */, 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */, 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */, 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */, - 6BF2BEB1674D2B8C00000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */, - 6BF2BEB1BF5A686400000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */, - 6BF2BEB165CF582600000000 /* 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_A7BDE743_ios_min11.0.a */, - 6BF2BEB15B7FC03800000000 /* 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_A7BDE743_ios_min15.5.a */, + 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */, + 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */, + 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */, + 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */, + 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */, + 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */, ); name = Indexer; sourceTree = ""; @@ -1971,6 +2296,22 @@ name = formats; sourceTree = ""; }; + A2FEA73698071DC200000000 /* filters */ = { + isa = PBXGroup; + children = ( + 6BF2BEB1AEA6171A00000000 /* BUILD */, + 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */, + 6BF2BEB15B1A675D00000000 /* BilateralAdjustFilter.hpp */, + 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */, + 6BF2BEB1A061BE4E00000000 /* FaceDistortionFilter.hpp */, + 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */, + 6BF2BEB1E1673ED500000000 /* OlaBeautyFilter.hpp */, + 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */, + 6BF2BEB198ABE7D300000000 /* UnSharpMaskFilter.hpp */, + ); + name = filters; + sourceTree = ""; + }; A2FEA736A2BCADC200000000 /* operations */ = { isa = PBXGroup; children = ( @@ -2024,7 +2365,6 @@ A2FEA7366242245000000001 /* framework */, A2FEA7360FECADA800000000 /* gpu */, A2FEA73660C4D6AA00000000 /* graphs */, - A2FEA736EFEBFE9300000000 /* modules */, A2FEA736F5B39ADD00000000 /* objc */, A2FEA73631B5716A00000001 /* render */, A2FEA736FC640C8700000001 /* util */, @@ -2101,15 +2441,6 @@ name = ios; sourceTree = ""; }; - A2FEA736CFC4601700000000 /* face_landmark */ = { - isa = PBXGroup; - children = ( - 6BF2BEB19E1406F200000000 /* BUILD */, - 6BF2BEB1185F0D7700000000 /* face_landmark_with_attention.tflite */, - ); - name = face_landmark; - sourceTree = ""; - }; A2FEA736DF32B42C00000000 /* x */ = { isa = PBXGroup; children = ( @@ -2155,15 +2486,6 @@ name = profiler; sourceTree = ""; }; - A2FEA736EFEBFE9300000000 /* modules */ = { - isa = PBXGroup; - children = ( - A2FEA7361E84DE5500000000 /* face_detection */, - A2FEA736CFC4601700000000 /* face_landmark */, - ); - name = modules; - sourceTree = ""; - }; A2FEA736F4E8108700000000 /* bazel-tulsi-includes */ = { isa = PBXGroup; children = ( @@ -2288,16 +2610,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508981699FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000064 /* Sources */, + 4A9C8A580000000000000068 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, + 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; productName = _idx_tensors_to_detections_calculator_39B944A4_ios_min11.0; @@ -2308,7 +2630,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000005E /* Sources */, + 4A9C8A580000000000000064 /* Sources */, ); buildRules = ( ); @@ -2320,36 +2642,21 @@ productReference = 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE022F905200000000 /* _idx_file_helpers_cpu_util_33FB6263_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50854188FAD00000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_33FB6263_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000018 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, - ); - name = _idx_file_helpers_cpu_util_33FB6263_ios_min15.5; - productName = _idx_file_helpers_cpu_util_33FB6263_ios_min15.5; - productReference = 6BF2BEB14766558400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE043D6EB800000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000008 /* Sources */, + 4A9C8A58000000000000000E /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9AAB070CC500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); @@ -2362,13 +2669,13 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000003 /* Sources */, + 4A9C8A58000000000000000F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; productName = _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0; @@ -2379,14 +2686,14 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000063 /* Sources */, + 4A9C8A580000000000000067 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A148AEA4700000000 /* PBXTargetDependency */, 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, + 285B8B9A148AEA4700000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; @@ -2394,41 +2701,30 @@ productReference = 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089320C55E00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000061 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* PBXTargetDependency */, - 285B8B9AEA11A96900000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; - productName = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; - productReference = 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE091FB26A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000050 /* Sources */, + 4A9C8A58000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A48F8627F00000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, ); name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0; @@ -2439,12 +2735,13 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DC607B3500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000009 /* Sources */, + 4A9C8A580000000000000010 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, ); @@ -2473,7 +2770,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508BE819FF200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001B /* Sources */, + 4A9C8A580000000000000025 /* Sources */, ); buildRules = ( ); @@ -2490,7 +2787,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003F /* Sources */, + 4A9C8A58000000000000004B /* Sources */, ); buildRules = ( ); @@ -2512,10 +2809,10 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, ); name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min11.0; @@ -2526,7 +2823,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50812D5985D00000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000035 /* Sources */, + 4A9C8A580000000000000043 /* Sources */, ); buildRules = ( ); @@ -2542,7 +2839,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000039 /* Sources */, + 4A9C8A580000000000000049 /* Sources */, ); buildRules = ( ); @@ -2558,7 +2855,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508CA95FAFE00000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000047 /* Sources */, + 4A9C8A580000000000000053 /* Sources */, ); buildRules = ( ); @@ -2575,7 +2872,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000003A /* Sources */, + 4A9C8A580000000000000047 /* Sources */, ); buildRules = ( ); @@ -2591,14 +2888,14 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002E /* Sources */, + 4A9C8A58000000000000003D /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, ); name = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; productName = _idx_location_image_frame_opencv_D6F50F87_ios_min15.5; @@ -2609,7 +2906,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084B7E0ABB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000043 /* Sources */, + 4A9C8A580000000000000051 /* Sources */, ); buildRules = ( ); @@ -2626,7 +2923,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003E /* Sources */, + 4A9C8A58000000000000004D /* Sources */, ); buildRules = ( ); @@ -2642,18 +2939,26 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000052 /* Sources */, + 4A9C8A58000000000000001B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9ADBC0365300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, ); name = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; productName = _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5; @@ -2664,7 +2969,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508B2EE11E100000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001A /* Sources */, + 4A9C8A580000000000000024 /* Sources */, ); buildRules = ( ); @@ -2681,14 +2986,14 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000058 /* Sources */, + 4A9C8A58000000000000005E /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_loader_254BEB33_ios_min15.5; productName = _idx_tflite_model_loader_254BEB33_ios_min15.5; @@ -2699,18 +3004,18 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003C /* Sources */, + 4A9C8A58000000000000004A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A0F58F30900000000 /* PBXTargetDependency */, + 285B8B9A0F58F30900000000 /* PBXTargetDependency */, + 285B8B9A0F58F30900000000 /* PBXTargetDependency */, 285B8B9A9CC89BB300000000 /* PBXTargetDependency */, 285B8B9A216C14B900000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, 285B8B9A216C14B900000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min15.5; productName = _idx_cpu_op_resolver_519CBACD_ios_min15.5; @@ -2721,17 +3026,17 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081CDA19BF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000048 /* Sources */, + 4A9C8A580000000000000055 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9A4A0F047D00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A4A0F047D00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_calculator_FF109E68_ios_min15.5; @@ -2743,22 +3048,29 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002F /* Sources */, + 4A9C8A58000000000000003B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AF84C49B100000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; productName = _idx_gl_calculator_helper_DC51F13C_ios_min15.5; @@ -2769,12 +3081,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508FD0C7ADF00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000006B /* Sources */, + 4A9C8A58000000000000006F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; productName = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5; @@ -2785,7 +3101,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000027 /* Sources */, + 4A9C8A580000000000000039 /* Sources */, ); buildRules = ( ); @@ -2797,63 +3113,32 @@ productReference = 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE3FD289C400000000 /* _idx_core_core-ios_7905855A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084D7419FD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_7905855A_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000021 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - 285B8B9A7E908C2900000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_7905855A_ios_min15.5"; - productName = "_idx_core_core-ios_7905855A_ios_min15.5"; - productReference = 6BF2BEB12F27755200000000 /* lib_idx_core_core-ios_7905855A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE4098134E00000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000002 /* Sources */, + 4A9C8A580000000000000006 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; productName = _idx_image_frame_graph_tracer_4E004B23_ios_min11.0; productReference = 6BF2BEB1E25C746E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE42ACE2AE00000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508739EFB5E00000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000004E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0; - productName = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0; - productReference = 6BF2BEB117E02C1400000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE4581F61200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508B760D34B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000016 /* Sources */, + 4A9C8A580000000000000022 /* Sources */, ); buildRules = ( ); @@ -2870,16 +3155,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DBB67FD700000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000030 /* Sources */, + 4A9C8A580000000000000033 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; productName = _idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5; @@ -2890,7 +3175,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50889D7C38200000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004B /* Sources */, + 4A9C8A580000000000000056 /* Sources */, ); buildRules = ( ); @@ -2907,7 +3192,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000051 /* Sources */, + 4A9C8A58000000000000000C /* Sources */, ); buildRules = ( ); @@ -2924,16 +3209,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50852D61F6100000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004A /* Sources */, + 4A9C8A580000000000000057 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A20F64D9900000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; productName = _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5; @@ -2944,14 +3229,15 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001C /* Sources */, + 4A9C8A580000000000000026 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A77193CED00000000 /* PBXTargetDependency */, 285B8B9A8489C38D00000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, ); name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; @@ -2968,6 +3254,7 @@ ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); @@ -2976,19 +3263,95 @@ productReference = 6BF2BEB11CA1FEB600000000 /* lib_idx_MPPGraphGPUData_39C9C70C_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE5CD7B2DA00000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5 */ = { + F2FE34CE5631D7AC00000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */; + buildConfigurationList = 84EFF508A58E44BE00000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000069 /* Sources */, + 4A9C8A580000000000000011 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A2E1AEAFB00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + ); + name = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; + productName = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; + productReference = 6BF2BEB16F07E71A00000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE5B9442FC00000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508CF55CF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000031 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A605975F300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A45BF9C0300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + ); + name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; + productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; + productReference = 6BF2BEB1CC15ACD800000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE5CD7B2DA00000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */; + buildPhases = ( + 4A9C8A58000000000000006D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A94BE0ED500000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, + 285B8B9A2E1AEAFB00000000 /* PBXTargetDependency */, ); name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; productName = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5; @@ -2999,7 +3362,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000025 /* Sources */, + 4A9C8A580000000000000035 /* Sources */, ); buildRules = ( ); @@ -3015,7 +3378,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000036 /* Sources */, + 4A9C8A580000000000000044 /* Sources */, ); buildRules = ( ); @@ -3027,11 +3390,31 @@ productReference = 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CE605975F200000000 /* _idx_scheduler_queue_364511B6_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508A90E0DE000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000032 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + ); + name = _idx_scheduler_queue_364511B6_ios_min15.5; + productName = _idx_scheduler_queue_364511B6_ios_min15.5; + productReference = 6BF2BEB12E3487DE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CE60F40B8000000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50883769D1F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000028 /* Sources */, + 4A9C8A580000000000000037 /* Sources */, ); buildRules = ( ); @@ -3047,38 +3430,59 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000001 /* Sources */, + 4A9C8A580000000000000009 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, ); name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0; productReference = 6BF2BEB1D0386F0200000000 /* lib_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE66EAEF7400000000 /* _idx_inference_calculator_metal_9450E505_ios_min15.5 */ = { + F2FE34CE66E95E1200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */; + buildConfigurationList = 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000005B /* Sources */, + 4A9C8A580000000000000014 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A8B56A57900000000 /* PBXTargetDependency */, + 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, + ); + name = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; + productName = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; + productReference = 6BF2BEB14D3C632E00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE66EAEF7400000000 /* _idx_inference_calculator_metal_9450E505_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000061 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A4581F61300000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, 285B8B9ACC596BC100000000 /* PBXTargetDependency */, 285B8B9A0F49CEED00000000 /* PBXTargetDependency */, - 285B8B9A4581F61300000000 /* PBXTargetDependency */, + 285B8B9A8B56A57900000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_metal_9450E505_ios_min15.5; productName = _idx_inference_calculator_metal_9450E505_ios_min15.5; @@ -3089,25 +3493,42 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000055 /* Sources */, + 4A9C8A58000000000000005B /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A762E872100000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_loader_254BEB33_ios_min11.0; productName = _idx_tflite_model_loader_254BEB33_ios_min11.0; productReference = 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CE6EE3185E00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000017 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + ); + name = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + productName = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + productReference = 6BF2BEB1FF5FAD7200000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CE70815F2C00000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000F /* Sources */, + 4A9C8A580000000000000018 /* Sources */, ); buildRules = ( ); @@ -3119,29 +3540,11 @@ productReference = 6BF2BEB1C0AA537800000000 /* lib_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7092C35800000000 /* _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080432744C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000004 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - ); - name = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; - productName = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; - productReference = 6BF2BEB1674D2B8C00000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE717FBD3200000000 /* _idx_gl_simple_shaders_CB7AD146_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002D /* Sources */, + 4A9C8A58000000000000003E /* Sources */, ); buildRules = ( ); @@ -3153,11 +3556,49 @@ productReference = 6BF2BEB1A6AE93A200000000 /* lib_idx_gl_simple_shaders_CB7AD146_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CE71A9D19E00000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */; + buildPhases = ( + 4A9C8A58000000000000000A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A091FB26B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + ); + name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + productName = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + productReference = 6BF2BEB13B97637C00000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CE721498C400000000 /* _idx_matrix_E57ACF41_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50841AF058700000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000033 /* Sources */, + 4A9C8A580000000000000041 /* Sources */, ); buildRules = ( ); @@ -3173,7 +3614,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000056 /* Sources */, + 4A9C8A58000000000000005C /* Sources */, ); buildRules = ( ); @@ -3186,54 +3627,71 @@ productReference = 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE77193CEC00000000 /* _idx_core_core-ios_7905855A_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086B31487A00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_7905855A_ios_min11.0" */; - buildPhases = ( - 4A9C8A58000000000000001D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7E674A3900000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - ); - name = "_idx_core_core-ios_7905855A_ios_min11.0"; - productName = "_idx_core_core-ios_7905855A_ios_min11.0"; - productReference = 6BF2BEB19D2AF81E00000000 /* lib_idx_core_core-ios_7905855A_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CE79D4949600000000 /* _idx_image_frame_graph_tracer_4E004B23_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000B /* Sources */, + 4A9C8A580000000000000016 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; productName = _idx_image_frame_graph_tracer_4E004B23_ios_min15.5; productReference = 6BF2BEB15E75465E00000000 /* lib_idx_image_frame_graph_tracer_4E004B23_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7BDEC79000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5 */ = { + F2FE34CE7AADD3C400000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */; + buildConfigurationList = 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000067 /* Sources */, + 4A9C8A580000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + ); + name = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + productName = _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; + productReference = 6BF2BEB1F126859800000000 /* lib_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE7BDEC79000000000 /* _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */; + buildPhases = ( + 4A9C8A58000000000000006B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; productName = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5; @@ -3244,7 +3702,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000037 /* Sources */, + 4A9C8A580000000000000045 /* Sources */, ); buildRules = ( ); @@ -3260,7 +3718,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001E /* Sources */, + 4A9C8A58000000000000002C /* Sources */, ); buildRules = ( ); @@ -3276,7 +3734,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000022 /* Sources */, + 4A9C8A58000000000000002F /* Sources */, ); buildRules = ( ); @@ -3292,38 +3750,69 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000023 /* Sources */, + 4A9C8A580000000000000030 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9A022F905300000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min15.5; productName = _idx_olamodule_common_library_63E72567_ios_min15.5; productReference = 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */ = { + F2FE34CE80D4856E00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */; + buildConfigurationList = 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001F /* Sources */, + 4A9C8A580000000000000002 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + ); + name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; + productName = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; + productReference = 6BF2BEB1DBA1F4D600000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */; + buildPhases = ( + 4A9C8A580000000000000027 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9AF9FAA4C300000000 /* PBXTargetDependency */, 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9AA616095700000000 /* PBXTargetDependency */, ); name = _idx_olamodule_common_library_63E72567_ios_min11.0; productName = _idx_olamodule_common_library_63E72567_ios_min11.0; @@ -3334,19 +3823,19 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000024 /* Sources */, + 4A9C8A580000000000000034 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, - 285B8B9A3E081CF900000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, 285B8B9A60F40B8100000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9AF43963A700000000 /* PBXTargetDependency */, + 285B8B9A3E081CF900000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; @@ -3357,18 +3846,18 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000013 /* Sources */, + 4A9C8A580000000000000021 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A0552442F00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A4EC3F25F00000000 /* PBXTargetDependency */, - 285B8B9AF9FAA4C300000000 /* PBXTargetDependency */, + 285B8B9A0552442F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; productName = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; @@ -3379,42 +3868,59 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5086042AB7700000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000057 /* Sources */, + 4A9C8A58000000000000005D /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A2C307FC300000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9A022F905300000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, - 285B8B9AEA11A96900000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5; productReference = 6BF2BEB19E6C836600000000 /* lib_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CE8D69C4A200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */; + buildPhases = ( + 4A9C8A580000000000000004 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, + ); + name = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + productName = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; + productReference = 6BF2BEB19B1FC05C00000000 /* lib_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CE900EF31A00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002B /* Sources */, + 4A9C8A58000000000000003A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, - 285B8B9AC180231D00000000 /* PBXTargetDependency */, - 285B8B9A717FBD3300000000 /* PBXTargetDependency */, - 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, 285B8B9AF84C49B100000000 /* PBXTargetDependency */, + 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, + 285B8B9A717FBD3300000000 /* PBXTargetDependency */, + 285B8B9AC180231D00000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, ); name = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; productName = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; @@ -3425,13 +3931,17 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000034 /* Sources */, + 4A9C8A580000000000000042 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A148AEA4700000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; @@ -3442,7 +3952,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000005F /* Sources */, + 4A9C8A580000000000000065 /* Sources */, ); buildRules = ( ); @@ -3458,16 +3968,16 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508FA3A52CA00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000004C /* Sources */, + 4A9C8A580000000000000058 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9AF437D55300000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0; @@ -3475,18 +3985,38 @@ productReference = 6BF2BEB1062DDCBE00000000 /* lib_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9988932800000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0 */ = { + F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */; + buildConfigurationList = 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000068 /* Sources */, + 4A9C8A58000000000000002E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + 285B8B9A7E908C2900000000 /* PBXTargetDependency */, + 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + 285B8B9A70815F2D00000000 /* PBXTargetDependency */, + ); + name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + productReference = 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CE9988932800000000 /* _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */; + buildPhases = ( + 4A9C8A58000000000000006C /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, 285B8B9A019362DD00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9AE4F68A4900000000 /* PBXTargetDependency */, ); name = _idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0; @@ -3498,7 +4028,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000059 /* Sources */, + 4A9C8A58000000000000005F /* Sources */, ); buildRules = ( ); @@ -3515,7 +4045,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000003D /* Sources */, + 4A9C8A58000000000000004C /* Sources */, ); buildRules = ( ); @@ -3531,7 +4061,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000006 /* Sources */, + 4A9C8A580000000000000008 /* Sources */, ); buildRules = ( ); @@ -3547,7 +4077,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000003B /* Sources */, + 4A9C8A580000000000000048 /* Sources */, ); buildRules = ( ); @@ -3559,45 +4089,75 @@ productReference = 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9D5E869800000000 /* _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50896E542FC00000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000000D /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - ); - name = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5; - productName = _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5; - productReference = 6BF2BEB1BF5A686400000000 /* lib_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEA13C97FE00000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508DBA80DDD00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000006A /* Sources */, + 4A9C8A58000000000000006E /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; productName = _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0; productReference = 6BF2BEB1775B508800000000 /* lib_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CEA616095600000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */; + buildPhases = ( + 4A9C8A580000000000000028 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9AECB1197500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A12002F2D00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + ); + name = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; + productName = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0; + productReference = 6BF2BEB140A1AF9000000000 /* lib_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CEAB070CC400000000 /* _idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000007 /* Sources */, + 4A9C8A58000000000000000D /* Sources */, ); buildRules = ( ); @@ -3610,17 +4170,59 @@ productReference = 6BF2BEB10F66ADE200000000 /* lib_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CEAC80CFF000000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */; + buildPhases = ( + 4A9C8A58000000000000001A /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A22E7A19300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + ); + name = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + productName = _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + productReference = 6BF2BEB11338C3A000000000 /* lib_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CEB297DEA800000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000032 /* Sources */, + 4A9C8A580000000000000040 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A721498C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, ); name = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; productName = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; @@ -3631,14 +4233,14 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000005C /* Sources */, + 4A9C8A580000000000000062 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, 285B8B9AC7F9A94500000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, ); name = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; productName = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; @@ -3649,13 +4251,13 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085CC6057F00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000066 /* Sources */, + 4A9C8A58000000000000006A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0; @@ -3667,7 +4269,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000005D /* Sources */, + 4A9C8A580000000000000063 /* Sources */, ); buildRules = ( ); @@ -3681,39 +4283,22 @@ productReference = 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEBA2FFD3800000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089B3F34A800000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000005 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9CD320B700000000 /* PBXTargetDependency */, - ); - name = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0; - productName = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0; - productReference = 6BF2BEB1535ED83200000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEBCF3D3C600000000 /* _idx_image_to_tensor_calculator_FF109E68_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508E0BB30A300000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000044 /* Sources */, + 4A9C8A580000000000000052 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AE60E967B00000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9AE60E967B00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; productName = _idx_image_to_tensor_calculator_FF109E68_ios_min11.0; @@ -3724,7 +4309,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000015 /* Sources */, + 4A9C8A580000000000000005 /* Sources */, ); buildRules = ( ); @@ -3740,17 +4325,17 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50867F6D39600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000005A /* Sources */, + 4A9C8A580000000000000060 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A270212EF00000000 /* PBXTargetDependency */, + 285B8B9ADBAB600300000000 /* PBXTargetDependency */, 285B8B9A8B4CD5DF00000000 /* PBXTargetDependency */, 285B8B9A043D6EB900000000 /* PBXTargetDependency */, 285B8B9AF437D55300000000 /* PBXTargetDependency */, - 285B8B9ADBAB600300000000 /* PBXTargetDependency */, + 285B8B9A270212EF00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_metal_9450E505_ios_min11.0; productName = _idx_inference_calculator_metal_9450E505_ios_min11.0; @@ -3761,7 +4346,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002C /* Sources */, + 4A9C8A58000000000000003F /* Sources */, ); buildRules = ( ); @@ -3777,17 +4362,17 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5084BDA704A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000004D /* Sources */, + 4A9C8A580000000000000059 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9A4581F61300000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A4581F61300000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, + 285B8B9AEE4F724300000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; productName = _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5; @@ -3798,52 +4383,33 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000026 /* Sources */, + 4A9C8A580000000000000036 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, ); name = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; productName = _idx_location_image_frame_opencv_D6F50F87_ios_min11.0; productReference = 6BF2BEB12D97516200000000 /* lib_idx_location_image_frame_opencv_D6F50F87_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000060 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A42ACE2AF00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */, - ); - name = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; - productName = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; - productReference = 6BF2BEB1E88ABD0C00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CECC45E21A00000000 /* _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508D94DA60100000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000065 /* Sources */, + 4A9C8A580000000000000069 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9A1BB1D91900000000 /* PBXTargetDependency */, 285B8B9AD4B7599D00000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, 285B8B9A486DB1DD00000000 /* PBXTargetDependency */, ); name = _idx_tensors_to_detections_calculator_39B944A4_ios_min15.5; @@ -3851,28 +4417,65 @@ productReference = 6BF2BEB11925DF0400000000 /* lib_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CECC596BC000000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min15.5 */ = { + F2FE34CECC49096A00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */; + buildConfigurationList = 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000017 /* Sources */, + 4A9C8A580000000000000007 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A0BF0E74100000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, - 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + ); + name = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + productName = _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + productReference = 6BF2BEB121F5530600000000 /* lib_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CECC596BC000000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000023 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, 285B8B9AEF9E075500000000 /* PBXTargetDependency */, - 285B8B9A022F905300000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A0BF0E74100000000 /* PBXTargetDependency */, ); name = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; productName = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; productReference = 6BF2BEB1E364A8E800000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CECDF0E1D000000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */; + buildPhases = ( + 4A9C8A58000000000000002B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + 285B8B9A7E674A3900000000 /* PBXTargetDependency */, + 285B8B9A9CD320B700000000 /* PBXTargetDependency */, + ); + name = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + productName = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + productReference = 6BF2BEB1E922429600000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CED4660C9200000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5085EC1FB9F00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */; @@ -3893,7 +4496,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000019 /* Sources */, + 4A9C8A580000000000000015 /* Sources */, ); buildRules = ( ); @@ -3909,23 +4512,33 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF50882F3329000000000 /* 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_87112A87_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000006D /* Sources */, + 4A9C8A580000000000000071 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEA11A96900000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - 285B8B9A07268A4900000000 /* PBXTargetDependency */, - 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, + 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, 285B8B9A3CEC689D00000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, + 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* 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_87112A87_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_87112A87_ios_min15.5; @@ -3936,19 +4549,19 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508B71D3E1900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000054 /* Sources */, + 4A9C8A58000000000000005A /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A42ACE2AF00000000 /* PBXTargetDependency */, - 285B8B9AF9FAA4C300000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, 285B8B9A6729A1D100000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, ); name = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; productName = _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0; @@ -3959,7 +4572,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000053 /* Sources */, + 4A9C8A58000000000000001C /* Sources */, ); buildRules = ( ); @@ -3972,18 +4585,47 @@ productReference = 6BF2BEB12CFA860400000000 /* lib_idx_profiler_resource_util_35C39BA3_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */ = { + F2FE34CEDBE24C2C00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */; + buildConfigurationList = 84EFF50804A631DD00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000062 /* Sources */, + 4A9C8A580000000000000012 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + ); + name = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + productName = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + productReference = 6BF2BEB1CC2F532800000000 /* lib_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */; + buildPhases = ( + 4A9C8A580000000000000066 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, 285B8B9A721498C500000000 /* PBXTargetDependency */, + 285B8B9A762E872100000000 /* PBXTargetDependency */, 285B8B9A192D58FB00000000 /* PBXTargetDependency */, ); name = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; @@ -3991,11 +4633,38 @@ productReference = 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CEDDC0B1B200000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */; + buildPhases = ( + 4A9C8A580000000000000003 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + ); + name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; + productName = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; + productReference = 6BF2BEB1F4EF873200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CEDF5731D000000000 /* _idx_image_opencv_9E4E8A87_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF50871BCBA0600000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000042 /* Sources */, + 4A9C8A580000000000000050 /* Sources */, ); buildRules = ( ); @@ -4008,39 +4677,22 @@ productReference = 6BF2BEB1112804BA00000000 /* lib_idx_image_opencv_9E4E8A87_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEE2CE384C00000000 /* _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_A7BDE743_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508F2ECBE8B00000000 /* 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_A7BDE743_ios_min15.5" */; - buildPhases = ( - 4A9C8A580000000000000049 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEA7F109100000000 /* 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_A7BDE743_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_A7BDE743_ios_min15.5; - productReference = 6BF2BEB15B7FC03800000000 /* 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_A7BDE743_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEE4F68A4800000000 /* _idx_cpu_op_resolver_519CBACD_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000038 /* Sources */, + 4A9C8A580000000000000046 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */, 285B8B9A1838F83F00000000 /* PBXTargetDependency */, 285B8B9A1838F83F00000000 /* PBXTargetDependency */, + 285B8B9A1838F83F00000000 /* PBXTargetDependency */, ); name = _idx_cpu_op_resolver_519CBACD_ios_min11.0; productName = _idx_cpu_op_resolver_519CBACD_ios_min11.0; @@ -4051,15 +4703,15 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508DC4A836900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000046 /* Sources */, + 4A9C8A580000000000000054 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A192D58FB00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, + 285B8B9A192D58FB00000000 /* PBXTargetDependency */, 285B8B9ADF5731D100000000 /* PBXTargetDependency */, ); name = _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0; @@ -4067,72 +4719,62 @@ productReference = 6BF2BEB175EE83F000000000 /* lib_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEEA11A96800000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF50880B9102700000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000004F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5; - productName = _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5; - productReference = 6BF2BEB1E77A1E6A00000000 /* lib_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CEEA7F109000000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508912983F900000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000000E /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A70815F2D00000000 /* PBXTargetDependency */, - ); - name = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5; - productName = _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5; - productReference = 6BF2BEB120769C4400000000 /* lib_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEECAE0B3600000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000020 /* Sources */, + 4A9C8A58000000000000002D /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A3FD289C500000000 /* PBXTargetDependency */, + 285B8B9A97A002A700000000 /* PBXTargetDependency */, 285B8B9A7FF66ACD00000000 /* PBXTargetDependency */, + 285B8B9A97A002A700000000 /* PBXTargetDependency */, ); name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; productReference = 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEED47024C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5 */ = { + F2FE34CEECB1197400000000 /* _idx_scheduler_queue_364511B6_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */; + buildConfigurationList = 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000011 /* Sources */, + 4A9C8A580000000000000029 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, - 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + ); + name = _idx_scheduler_queue_364511B6_ios_min11.0; + productName = _idx_scheduler_queue_364511B6_ios_min11.0; + productReference = 6BF2BEB1F7A9B6EE00000000 /* lib_idx_scheduler_queue_364511B6_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + F2FE34CEED47024C00000000 /* _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */; + buildPhases = ( + 4A9C8A58000000000000001E /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, 285B8B9AEFD48CB500000000 /* PBXTargetDependency */, + 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AEE4F724300000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, ); name = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; productName = _idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5; @@ -4143,7 +4785,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000010 /* Sources */, + 4A9C8A58000000000000001D /* Sources */, ); buildRules = ( ); @@ -4160,13 +4802,13 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000C /* Sources */, + 4A9C8A58000000000000001F /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, ); name = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; productName = _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5; @@ -4177,17 +4819,21 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5085F91827A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000A /* Sources */, + 4A9C8A580000000000000019 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A79D4949700000000 /* PBXTargetDependency */, - 285B8B9AEF9E075500000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */, 285B8B9AEE4F724300000000 /* PBXTargetDependency */, - 285B8B9A9D5E869900000000 /* PBXTargetDependency */, 285B8B9AED47024D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9AF164385B00000000 /* PBXTargetDependency */, + 285B8B9AEF9E075500000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, ); name = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; productName = _idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5; @@ -4198,7 +4844,7 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000041 /* Sources */, + 4A9C8A58000000000000004F /* Sources */, ); buildRules = ( ); @@ -4211,11 +4857,38 @@ productReference = 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; + F2FE34CEF164385A00000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */; + buildPhases = ( + 4A9C8A580000000000000013 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A79D4949700000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + 285B8B9A66E95E1300000000 /* PBXTargetDependency */, + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */, + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */, + ); + name = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + productName = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + productReference = 6BF2BEB1CF0EECC200000000 /* lib_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; F2FE34CEF437D55200000000 /* _idx_MPPMetalHelper_D24F76A1_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5085B94398200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000012 /* Sources */, + 4A9C8A580000000000000020 /* Sources */, ); buildRules = ( ); @@ -4232,50 +4905,40 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000029 /* Sources */, + 4A9C8A580000000000000038 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A5D24269700000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AAB070CC500000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, 285B8B9A12002F2D00000000 /* PBXTargetDependency */, - 285B8B9A043D6EB900000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9AAB070CC500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A5D24269700000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9ACC49096B00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, + 285B8B9A043D6EB900000000 /* PBXTargetDependency */, ); name = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; productName = _idx_gl_calculator_helper_DC51F13C_ios_min11.0; productReference = 6BF2BEB1EDF6BDAE00000000 /* lib_idx_gl_calculator_helper_DC51F13C_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEF4401A3A00000000 /* _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_A7BDE743_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B2289D2600000000 /* 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_A7BDE743_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000045 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABA2FFD3900000000 /* 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_A7BDE743_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_A7BDE743_ios_min11.0; - productReference = 6BF2BEB165CF582600000000 /* 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_A7BDE743_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEF84C49B000000000 /* _idx_shader_util_C047EBB4_ios_min15.5 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000031 /* Sources */, + 4A9C8A58000000000000003C /* Sources */, ); buildRules = ( ); @@ -4287,28 +4950,11 @@ productReference = 6BF2BEB1D65644E600000000 /* lib_idx_shader_util_C047EBB4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEF9FAA4C200000000 /* _idx_file_helpers_cpu_util_33FB6263_ios_min11.0 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080A9DA25200000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_33FB6263_ios_min11.0" */; - buildPhases = ( - 4A9C8A580000000000000014 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */, - ); - name = _idx_file_helpers_cpu_util_33FB6263_ios_min11.0; - productName = _idx_file_helpers_cpu_util_33FB6263_ios_min11.0; - productReference = 6BF2BEB1D5E0B49400000000 /* lib_idx_file_helpers_cpu_util_33FB6263_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */ = { isa = PBXNativeTarget; buildConfigurationList = 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000040 /* Sources */, + 4A9C8A58000000000000004E /* Sources */, ); buildRules = ( ); @@ -4325,23 +4971,33 @@ isa = PBXNativeTarget; buildConfigurationList = 84EFF508E0B95D0800000000 /* 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_87112A87_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000006C /* Sources */, + 4A9C8A580000000000000070 /* Sources */, ); buildRules = ( ); dependencies = ( 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A42ACE2AF00000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, - 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */, - 285B8B9A62520DF700000000 /* PBXTargetDependency */, - 285B8B9A4098134F00000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */, 285B8B9AF43963A700000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */, - 285B8B9A7092C35900000000 /* PBXTargetDependency */, + 285B8B9AA616095700000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */, + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */, + 285B8B9A4098134F00000000 /* PBXTargetDependency */, + 285B8B9AA616095700000000 /* PBXTargetDependency */, + 285B8B9A62520DF700000000 /* PBXTargetDependency */, + 285B8B9A80D4856F00000000 /* PBXTargetDependency */, + 285B8B9A762E872100000000 /* 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_87112A87_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_87112A87_ios_min11.0; @@ -4384,14 +5040,12 @@ F2FE34CE901820A600000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min15.5 */, F2FE34CE5FA9419400000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0 */, F2FE34CE7D22C97800000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5 */, - F2FE34CE77193CEC00000000 /* _idx_core_core-ios_7905855A_ios_min11.0 */, - F2FE34CE3FD289C400000000 /* _idx_core_core-ios_7905855A_ios_min15.5 */, + F2FE34CECDF0E1D000000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0 */, + F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */, F2FE34CEE4F68A4800000000 /* _idx_cpu_op_resolver_519CBACD_ios_min11.0 */, F2FE34CE2E1AEAFA00000000 /* _idx_cpu_op_resolver_519CBACD_ios_min15.5 */, F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */, F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */, - F2FE34CEF9FAA4C200000000 /* _idx_file_helpers_cpu_util_33FB6263_ios_min11.0 */, - F2FE34CE022F905200000000 /* _idx_file_helpers_cpu_util_33FB6263_ios_min15.5 */, F2FE34CEBEE3CE7400000000 /* _idx_file_path_E61EA0A1_ios_min11.0 */, F2FE34CED4B7599C00000000 /* _idx_file_path_E61EA0A1_ios_min15.5 */, F2FE34CEF43963A600000000 /* _idx_gl_calculator_helper_DC51F13C_ios_min11.0 */, @@ -4416,8 +5070,6 @@ F2FE34CEC49D7CB200000000 /* _idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5 */, F2FE34CEE60E967A00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min11.0 */, F2FE34CE4A0F047C00000000 /* _idx_image_to_tensor_converter_opencv_22266321_ios_min15.5 */, - F2FE34CE42ACE2AE00000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0 */, - F2FE34CEEA11A96800000000 /* _idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5 */, F2FE34CE091FB26A00000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0 */, F2FE34CE22E7A19200000000 /* _idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5 */, F2FE34CEDBAB600200000000 /* _idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0 */, @@ -4440,16 +5092,20 @@ F2FE34CE7FF66ACC00000000 /* _idx_olamodule_common_library_63E72567_ios_min15.5 */, F2FE34CE019362DC00000000 /* _idx_op_resolver_0836C983_ios_min11.0 */, F2FE34CE94BE0ED400000000 /* _idx_op_resolver_0836C983_ios_min15.5 */, + F2FE34CE71A9D19E00000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0 */, + F2FE34CEAC80CFF000000000 /* _idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5 */, F2FE34CE0552442E00000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0 */, F2FE34CEEF9E075400000000 /* _idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5 */, - F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */, - F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */, + F2FE34CEA616095600000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0 */, + F2FE34CE5B9442FC00000000 /* _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5 */, F2FE34CE48F8627E00000000 /* _idx_profiler_resource_util_35C39BA3_ios_min11.0 */, F2FE34CEDBC0365200000000 /* _idx_profiler_resource_util_35C39BA3_ios_min15.5 */, F2FE34CE9CD320B600000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0 */, F2FE34CE70815F2C00000000 /* _idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5 */, F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */, F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */, + F2FE34CEECB1197400000000 /* _idx_scheduler_queue_364511B6_ios_min11.0 */, + F2FE34CE605975F200000000 /* _idx_scheduler_queue_364511B6_ios_min15.5 */, F2FE34CE5D24269600000000 /* _idx_shader_util_C047EBB4_ios_min11.0 */, F2FE34CEF84C49B000000000 /* _idx_shader_util_C047EBB4_ios_min15.5 */, F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */, @@ -4466,18 +5122,22 @@ F2FE34CE3DB4BB0000000000 /* _idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5 */, F2FE34CE6729A1D000000000 /* _idx_tflite_model_loader_254BEB33_ios_min11.0 */, F2FE34CE2C307FC200000000 /* _idx_tflite_model_loader_254BEB33_ios_min15.5 */, + F2FE34CE8D69C4A200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0 */, + F2FE34CE66E95E1200000000 /* _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5 */, F2FE34CEFE75ECB400000000 /* _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_87112A87_ios_min11.0 */, F2FE34CED7BFBE2C00000000 /* _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_87112A87_ios_min15.5 */, - F2FE34CEBA2FFD3800000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0 */, - F2FE34CEEA7F109000000000 /* _idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5 */, + F2FE34CECC49096A00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0 */, + F2FE34CE6EE3185E00000000 /* _idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5 */, F2FE34CE1838F83E00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0 */, F2FE34CE0F58F30800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5 */, F2FE34CE9CDDB50C00000000 /* _idx_transpose_conv_bias_E3459F40_ios_min11.0 */, F2FE34CE9CC89BB200000000 /* _idx_transpose_conv_bias_E3459F40_ios_min15.5 */, - F2FE34CE7092C35800000000 /* _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0 */, - F2FE34CE9D5E869800000000 /* _idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5 */, - F2FE34CEF4401A3A00000000 /* _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_A7BDE743_ios_min11.0 */, - F2FE34CEE2CE384C00000000 /* _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_A7BDE743_ios_min15.5 */, + F2FE34CEDDC0B1B200000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0 */, + F2FE34CEF164385A00000000 /* _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5 */, + F2FE34CE80D4856E00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0 */, + F2FE34CEDBE24C2C00000000 /* _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5 */, + F2FE34CE7AADD3C400000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0 */, + F2FE34CE5631D7AC00000000 /* _idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5 */, F2FE34CED4660C9200000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */, ); }; @@ -4532,14 +5192,83 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B6988F9900000000 /* image.cc in formats */, - FF9503010E7AA6A100000000 /* gl_context.cc in gpu */, - FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */, - FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */, + FF950301F50E8E8800000000 /* validated_graph_config.cc in framework */, + FF95030173FC11FB00000000 /* calculator_base.cc in framework */, + FF95030112EE194500000000 /* calculator_context.cc in framework */, + FF95030116BDCDE400000000 /* calculator_context_manager.cc in framework */, + FF950301B90D6AD700000000 /* calculator_state.cc in framework */, + FF950301676E503E00000000 /* legacy_calculator_support.cc in framework */, ); runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A580000000000000002 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301C42F44E800000000 /* validate_name.cc in tool */, + FF950301E6069BD500000000 /* callback_packet_calculator.cc in internal */, + FF950301FE21B94600000000 /* delegating_executor.cc in framework */, + FF950301953F4C1900000000 /* executor.cc in framework */, + FF9503013C0D6D5B00000000 /* image_to_tensor_utils.cc in tensor */, + FF95030179C61E6000000000 /* name_util.cc in tool */, + FF950301217E6F9B00000000 /* options_field_util.cc in tool */, + FF950301CF12C0C800000000 /* options_registry.cc in tool */, + FF950301D822317800000000 /* options_syntax_util.cc in tool */, + FF9503011622036E00000000 /* options_util.cc in tool */, + FF9503014EA6318000000000 /* packet_generator_graph.cc in framework */, + FF95030182E727FD00000000 /* packet_generator_wrapper_calculator.cc in tool */, + FF9503019343B56C00000000 /* proto_util_lite.cc in tool */, + FF9503013B1C97FA00000000 /* rectangle_util.cc in util */, + FF9503019F1006A000000000 /* subgraph_expansion.cc in tool */, + FF950301903FFB7900000000 /* tag_map.cc in tool */, + FF950301125965EB00000000 /* tag_map_helper.cc in tool */, + FF9503013824086F00000000 /* template_expander.cc in tool */, + FF950301CC1CEC7400000000 /* thread_pool_executor.cc in framework */, + FF95030194ACD3D200000000 /* validate.cc in tool */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000003 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301202F72AF00000000 /* util.cc in objc */, + FF9503018E62014A00000000 /* calculator_contract.cc in framework */, + FF950301095EF97200000000 /* fill_packet_set.cc in tool */, + FF9503012C20ABC800000000 /* graph_service_manager.cc in framework */, + FF950301B3D8E01500000000 /* input_side_packet_handler.cc in framework */, + FF950301196F87BE00000000 /* input_stream_manager.cc in framework */, + FF9503015176F86500000000 /* input_stream_shard.cc in framework */, + FF950301EFCD23DE00000000 /* node.cc in api2 */, + FF950301D265CD3E00000000 /* output_side_packet_impl.cc in framework */, + FF950301051CE57300000000 /* output_stream_shard.cc in framework */, + FF9503015369E8AC00000000 /* packet.cc in framework */, + FF950301C0242BD100000000 /* packet.cc in api2 */, + FF950301EC826FBE00000000 /* packet_type.cc in framework */, + FF950301CB59887700000000 /* subgraph.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000004 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503010DAD0F4C00000000 /* timestamp.cc in framework */, + FF95030113D967B800000000 /* collection_item_id.cc in framework */, + FF9503016EE5C41200000000 /* cpu_util.cc in util */, + FF9503017B0DE23500000000 /* file_helpers.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000005 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017CA09C8900000000 /* file_path.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4549,32 +5278,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000003 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000004 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301202F72AF00000000 /* util.cc in objc */, - FF950301095EF97200000000 /* fill_packet_set.cc in tool */, - FF950301EFCD23DE00000000 /* node.cc in api2 */, - FF950301C0242BD100000000 /* packet.cc in api2 */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000005 /* Sources */ = { + 4A9C8A580000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( FF950301EF2DB52100000000 /* topologicalsorter.cc in deps */, FF950301DB9D1C2A00000000 /* clock.cc in deps */, FF950301EE3C320400000000 /* monotonic_clock.cc in deps */, + FF950301CD235A4400000000 /* counter_factory.cc in framework */, FF9503014FE9977200000000 /* registration.cc in deps */, FF950301412CF91400000000 /* ret_check.cc in deps */, FF9503010F561D5C00000000 /* status.cc in deps */, @@ -4584,7 +5295,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000006 /* Sources */ = { + 4A9C8A580000000000000008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4595,7 +5306,52 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000007 /* Sources */ = { + 4A9C8A580000000000000009 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301B6988F9900000000 /* image.cc in formats */, + FF9503010E7AA6A100000000 /* gl_context.cc in gpu */, + FF9503015361890F00000000 /* gl_context_eagl.cc in gpu */, + FF9503011615959C00000000 /* gpu_buffer_multi_pool.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503012467AA1E00000000 /* output_stream_manager.cc in framework */, + FF9503014CC60F6C00000000 /* calculator_node.cc in framework */, + FF95030198F8470300000000 /* default_input_stream_handler.cc in stream_handler */, + FF950301176DF12500000000 /* fixed_size_input_stream_handler.cc in stream_handler */, + FF95030103047E7100000000 /* graph_output_stream.cc in framework */, + FF950301A3360C7800000000 /* immediate_input_stream_handler.cc in stream_handler */, + FF95030108D791BD00000000 /* input_stream_handler.cc in framework */, + FF950301BAE062CD00000000 /* output_stream_handler.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030179275DA200000000 /* in_order_output_stream_handler.cc in stream_handler */, + FF950301BAF6D7FB00000000 /* graph_profiler.cc in profiler */, + FF950301D90020AA00000000 /* gl_context_profiler.cc in profiler */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301AC57DDE300000000 /* profiler_resource_util_common.cc in profiler */, + FF9503015F87272300000000 /* profiler_resource_util_ios.cc in profiler */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4604,7 +5360,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000008 /* Sources */ = { + 4A9C8A58000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4616,7 +5372,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000009 /* Sources */ = { + 4A9C8A58000000000000000F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503011D16CB6700000000 /* pixel_buffer_pool_util.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4625,18 +5389,87 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000A /* Sources */ = { + 4A9C8A580000000000000011 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B6988F9900000001 /* image.cc in formats */, - FF9503010E7AA6A100000001 /* gl_context.cc in gpu */, - FF9503015361890F00000001 /* gl_context_eagl.cc in gpu */, - FF9503011615959C00000001 /* gpu_buffer_multi_pool.cc in gpu */, + FF950301F50E8E8800000001 /* validated_graph_config.cc in framework */, + FF95030173FC11FB00000001 /* calculator_base.cc in framework */, + FF95030112EE194500000001 /* calculator_context.cc in framework */, + FF95030116BDCDE400000001 /* calculator_context_manager.cc in framework */, + FF950301B90D6AD700000001 /* calculator_state.cc in framework */, + FF950301676E503E00000001 /* legacy_calculator_support.cc in framework */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000B /* Sources */ = { + 4A9C8A580000000000000012 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301C42F44E800000001 /* validate_name.cc in tool */, + FF950301E6069BD500000001 /* callback_packet_calculator.cc in internal */, + FF950301FE21B94600000001 /* delegating_executor.cc in framework */, + FF950301953F4C1900000001 /* executor.cc in framework */, + FF9503013C0D6D5B00000001 /* image_to_tensor_utils.cc in tensor */, + FF95030179C61E6000000001 /* name_util.cc in tool */, + FF950301217E6F9B00000001 /* options_field_util.cc in tool */, + FF950301CF12C0C800000001 /* options_registry.cc in tool */, + FF950301D822317800000001 /* options_syntax_util.cc in tool */, + FF9503011622036E00000001 /* options_util.cc in tool */, + FF9503014EA6318000000001 /* packet_generator_graph.cc in framework */, + FF95030182E727FD00000001 /* packet_generator_wrapper_calculator.cc in tool */, + FF9503019343B56C00000001 /* proto_util_lite.cc in tool */, + FF9503013B1C97FA00000001 /* rectangle_util.cc in util */, + FF9503019F1006A000000001 /* subgraph_expansion.cc in tool */, + FF950301903FFB7900000001 /* tag_map.cc in tool */, + FF950301125965EB00000001 /* tag_map_helper.cc in tool */, + FF9503013824086F00000001 /* template_expander.cc in tool */, + FF950301CC1CEC7400000001 /* thread_pool_executor.cc in framework */, + FF95030194ACD3D200000001 /* validate.cc in tool */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000013 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301202F72AF00000001 /* util.cc in objc */, + FF9503018E62014A00000001 /* calculator_contract.cc in framework */, + FF950301095EF97200000001 /* fill_packet_set.cc in tool */, + FF9503012C20ABC800000001 /* graph_service_manager.cc in framework */, + FF950301B3D8E01500000001 /* input_side_packet_handler.cc in framework */, + FF950301196F87BE00000001 /* input_stream_manager.cc in framework */, + FF9503015176F86500000001 /* input_stream_shard.cc in framework */, + FF950301EFCD23DE00000001 /* node.cc in api2 */, + FF950301D265CD3E00000001 /* output_side_packet_impl.cc in framework */, + FF950301051CE57300000001 /* output_stream_shard.cc in framework */, + FF9503015369E8AC00000001 /* packet.cc in framework */, + FF950301C0242BD100000001 /* packet.cc in api2 */, + FF950301EC826FBE00000001 /* packet_type.cc in framework */, + FF950301CB59887700000001 /* subgraph.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000014 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503010DAD0F4C00000001 /* timestamp.cc in framework */, + FF95030113D967B800000001 /* collection_item_id.cc in framework */, + FF9503016EE5C41200000001 /* cpu_util.cc in util */, + FF9503017B0DE23500000001 /* file_helpers.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000015 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017CA09C8900000001 /* file_path.cc in deps */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4646,32 +5479,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301202F72AF00000001 /* util.cc in objc */, - FF950301095EF97200000001 /* fill_packet_set.cc in tool */, - FF950301EFCD23DE00000001 /* node.cc in api2 */, - FF950301C0242BD100000001 /* packet.cc in api2 */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000000E /* Sources */ = { + 4A9C8A580000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( FF950301EF2DB52100000001 /* topologicalsorter.cc in deps */, FF950301DB9D1C2A00000001 /* clock.cc in deps */, FF950301EE3C320400000001 /* monotonic_clock.cc in deps */, + FF950301CD235A4400000001 /* counter_factory.cc in framework */, FF9503014FE9977200000001 /* registration.cc in deps */, FF950301412CF91400000001 /* ret_check.cc in deps */, FF9503010F561D5C00000001 /* status.cc in deps */, @@ -4681,7 +5496,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000F /* Sources */ = { + 4A9C8A580000000000000018 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4692,7 +5507,52 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000010 /* Sources */ = { + 4A9C8A580000000000000019 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301B6988F9900000001 /* image.cc in formats */, + FF9503010E7AA6A100000001 /* gl_context.cc in gpu */, + FF9503015361890F00000001 /* gl_context_eagl.cc in gpu */, + FF9503011615959C00000001 /* gpu_buffer_multi_pool.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000001A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503012467AA1E00000001 /* output_stream_manager.cc in framework */, + FF9503014CC60F6C00000001 /* calculator_node.cc in framework */, + FF95030198F8470300000001 /* default_input_stream_handler.cc in stream_handler */, + FF950301176DF12500000001 /* fixed_size_input_stream_handler.cc in stream_handler */, + FF95030103047E7100000001 /* graph_output_stream.cc in framework */, + FF950301A3360C7800000001 /* immediate_input_stream_handler.cc in stream_handler */, + FF95030108D791BD00000001 /* input_stream_handler.cc in framework */, + FF950301BAE062CD00000001 /* output_stream_handler.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000001B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030179275DA200000001 /* in_order_output_stream_handler.cc in stream_handler */, + FF950301BAF6D7FB00000001 /* graph_profiler.cc in profiler */, + FF950301D90020AA00000001 /* gl_context_profiler.cc in profiler */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000001C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301AC57DDE300000001 /* profiler_resource_util_common.cc in profiler */, + FF9503015F87272300000001 /* profiler_resource_util_ios.cc in profiler */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4701,7 +5561,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000011 /* Sources */ = { + 4A9C8A58000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4713,7 +5573,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000012 /* Sources */ = { + 4A9C8A58000000000000001F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503011D16CB6700000001 /* pixel_buffer_pool_util.mm in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4721,7 +5589,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000013 /* Sources */ = { + 4A9C8A580000000000000021 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4731,24 +5599,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000014 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017B0DE23500000000 /* file_helpers.cc in deps */, - FF9503016EE5C41200000000 /* cpu_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000015 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017CA09C8900000000 /* file_path.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000016 /* Sources */ = { + 4A9C8A580000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4756,7 +5607,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000017 /* Sources */ = { + 4A9C8A580000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4766,24 +5617,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000018 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017B0DE23500000001 /* file_helpers.cc in deps */, - FF9503016EE5C41200000001 /* cpu_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000019 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017CA09C8900000001 /* file_path.cc in deps */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000001A /* Sources */ = { + 4A9C8A580000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4791,7 +5625,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001B /* Sources */ = { + 4A9C8A580000000000000025 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4799,7 +5633,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001C /* Sources */ = { + 4A9C8A580000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4810,7 +5644,43 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001D /* Sources */ = { + 4A9C8A580000000000000027 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017071A1E200000000 /* ola_graph.cc in common */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000028 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, + FF950301FC0D516900000000 /* calculator_graph.cc in framework */, + FF9503012418B90200000000 /* scheduler.cc in framework */, + FF950301FFFFBBA500000000 /* header_util.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301A3BD02C100000000 /* scheduler_queue.cc in framework */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000002A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301892D264500000000 /* image_properties_calculator.cc in image */, + FF950301D36B7DD000000000 /* gpu_service.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4831,6 +5701,16 @@ FF95030122A81B8400000000 /* GLThreadDispatch.cpp in core */, FF9503013604E74800000000 /* OpipeDispatch.cpp in core */, FF950301695F7B1800000000 /* OlaShareTextureFilter.cpp in core */, + FF95030166524CD000000000 /* AlphaBlendFilter.cpp in core */, + FF9503018C3C5D5200000000 /* BilateralFilter.cpp in core */, + FF950301012F72CA00000000 /* GaussianBlurFilter.cpp in core */, + FF950301F015768000000000 /* GaussianBlurMonoFilter.cpp in core */, + FF9503016E142DC700000000 /* LUTFilter.cpp in core */, + FF95030176651B8000000000 /* OlaContext.cpp in core */, + FF9503013300B09700000000 /* BilateralAdjustFilter.cpp in filters */, + FF950301EA26099000000000 /* FaceDistortionFilter.cpp in filters */, + FF950301F2C948BB00000000 /* OlaBeautyFilter.cpp in filters */, + FF95030172ED6A0900000000 /* UnSharpMaskFilter.cpp in filters */, FF950301F02D7B8400000001 /* FramebufferCache.cpp in core */, FF95030182C4C71800000001 /* Framebuffer.cpp in core */, FF950301D796612B00000001 /* Target.cpp in core */, @@ -4848,10 +5728,16 @@ FF95030122A81B8400000001 /* GLThreadDispatch.cpp in core */, FF9503013604E74800000001 /* OpipeDispatch.cpp in core */, FF950301695F7B1800000001 /* OlaShareTextureFilter.cpp in core */, + FF95030166524CD000000001 /* AlphaBlendFilter.cpp in core */, + FF9503018C3C5D5200000001 /* BilateralFilter.cpp in core */, + FF950301012F72CA00000001 /* GaussianBlurFilter.cpp in core */, + FF950301F015768000000001 /* GaussianBlurMonoFilter.cpp in core */, + FF9503016E142DC700000001 /* LUTFilter.cpp in core */, + FF95030176651B8000000001 /* OlaContext.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001E /* Sources */ = { + 4A9C8A58000000000000002C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4863,15 +5749,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017071A1E200000000 /* ola_graph.cc in common */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000020 /* Sources */ = { + 4A9C8A58000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4882,7 +5760,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000021 /* Sources */ = { + 4A9C8A58000000000000002E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4903,6 +5781,16 @@ FF95030122A81B8400000002 /* GLThreadDispatch.cpp in core */, FF9503013604E74800000002 /* OpipeDispatch.cpp in core */, FF950301695F7B1800000002 /* OlaShareTextureFilter.cpp in core */, + FF95030166524CD000000002 /* AlphaBlendFilter.cpp in core */, + FF9503018C3C5D5200000002 /* BilateralFilter.cpp in core */, + FF950301012F72CA00000002 /* GaussianBlurFilter.cpp in core */, + FF950301F015768000000002 /* GaussianBlurMonoFilter.cpp in core */, + FF9503016E142DC700000002 /* LUTFilter.cpp in core */, + FF95030176651B8000000002 /* OlaContext.cpp in core */, + FF9503013300B09700000001 /* BilateralAdjustFilter.cpp in filters */, + FF950301EA26099000000001 /* FaceDistortionFilter.cpp in filters */, + FF950301F2C948BB00000001 /* OlaBeautyFilter.cpp in filters */, + FF95030172ED6A0900000001 /* UnSharpMaskFilter.cpp in filters */, FF950301F02D7B8400000003 /* FramebufferCache.cpp in core */, FF95030182C4C71800000003 /* Framebuffer.cpp in core */, FF950301D796612B00000003 /* Target.cpp in core */, @@ -4920,10 +5808,16 @@ FF95030122A81B8400000003 /* GLThreadDispatch.cpp in core */, FF9503013604E74800000003 /* OpipeDispatch.cpp in core */, FF950301695F7B1800000003 /* OlaShareTextureFilter.cpp in core */, + FF95030166524CD000000003 /* AlphaBlendFilter.cpp in core */, + FF9503018C3C5D5200000003 /* BilateralFilter.cpp in core */, + FF950301012F72CA00000003 /* GaussianBlurFilter.cpp in core */, + FF950301F015768000000003 /* GaussianBlurMonoFilter.cpp in core */, + FF9503016E142DC700000003 /* LUTFilter.cpp in core */, + FF95030176651B8000000003 /* OlaContext.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000022 /* Sources */ = { + 4A9C8A58000000000000002F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4935,7 +5829,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000023 /* Sources */ = { + 4A9C8A580000000000000030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -4943,108 +5837,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000024 /* Sources */ = { + 4A9C8A580000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503012834F00600000000 /* annotation_overlay_calculator.cc in util */, + FF950301908FF76600000001 /* previous_loopback_calculator.cc in core */, + FF950301FC0D516900000001 /* calculator_graph.cc in framework */, + FF9503012418B90200000001 /* scheduler.cc in framework */, + FF950301FFFFBBA500000001 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000025 /* Sources */ = { + 4A9C8A580000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017D2972A300000000 /* shader_util.cc in gpu */, + FF950301A3BD02C100000001 /* scheduler_queue.cc in framework */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000026 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030104BA59E200000000 /* location.cc in formats */, - FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000027 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000028 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301664209C000000000 /* gl_simple_shaders.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000029 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301892D264500000000 /* image_properties_calculator.cc in image */, - FF950301D36B7DD000000000 /* gpu_service.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503012834F00600000001 /* annotation_overlay_calculator.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030104BA59E200000001 /* location.cc in formats */, - FF950301D3E5087100000001 /* image_frame_opencv.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000002F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */, - FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000030 /* Sources */ = { + 4A9C8A580000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5053,35 +5865,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000031 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF9503017D2972A300000001 /* shader_util.cc in gpu */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000032 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301AB2D5D1300000000 /* begin_loop_calculator.cc in core */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000033 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301224D079A00000000 /* matrix.cc in formats */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4A9C8A580000000000000034 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301AB2D5D1300000001 /* begin_loop_calculator.cc in core */, + FF9503012834F00600000000 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5089,7 +5877,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301224D079A00000001 /* matrix.cc in formats */, + FF9503017D2972A300000000 /* shader_util.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5097,7 +5885,8 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in core */, + FF95030104BA59E200000000 /* location.cc in formats */, + FF950301D3E5087100000000 /* image_frame_opencv.cc in formats */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5105,7 +5894,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in core */, + FF950301664209C000000000 /* gl_simple_shaders.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5113,11 +5902,143 @@ isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030101794B7100000000 /* cpu_op_resolver.cc in tflite */, + FF950301CDB6653400000000 /* gl_calculator_helper.cc in gpu */, + FF950301646C577900000000 /* gl_calculator_helper_impl_common.cc in gpu */, ); runOnlyForDeploymentPostprocessing = 0; }; 4A9C8A580000000000000039 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503014A8EF4EF00000000 /* annotation_renderer.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503012834F00600000001 /* annotation_overlay_calculator.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301CDB6653400000001 /* gl_calculator_helper.cc in gpu */, + FF950301646C577900000001 /* gl_calculator_helper_impl_common.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503017D2972A300000001 /* shader_util.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030104BA59E200000001 /* location.cc in formats */, + FF950301D3E5087100000001 /* image_frame_opencv.cc in formats */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301664209C000000001 /* gl_simple_shaders.cc in gpu */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000003F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF9503014A8EF4EF00000001 /* annotation_renderer.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000040 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301AB2D5D1300000000 /* begin_loop_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000041 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301224D079A00000000 /* matrix.cc in formats */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000042 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301AB2D5D1300000001 /* begin_loop_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000043 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301224D079A00000001 /* matrix.cc in formats */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000046 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030101794B7100000000 /* cpu_op_resolver.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000047 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030118A3906A00000000 /* max_unpooling.cc in operations */, + FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000048 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000049 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5127,24 +6048,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000003A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030118A3906A00000000 /* max_unpooling.cc in operations */, - FF950301042A0E6500000000 /* max_pool_argmax.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F3F047F600000000 /* transpose_conv_bias.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003C /* Sources */ = { + 4A9C8A58000000000000004A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5152,24 +6056,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000003D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301F3F047F600000001 /* transpose_conv_bias.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030118A3906A00000001 /* max_unpooling.cc in operations */, - FF950301042A0E6500000001 /* max_pool_argmax.cc in operations */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000003F /* Sources */ = { + 4A9C8A58000000000000004B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5179,7 +6066,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000040 /* Sources */ = { + 4A9C8A58000000000000004C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF950301F3F047F600000001 /* transpose_conv_bias.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000004D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030118A3906A00000001 /* max_unpooling.cc in operations */, + FF950301042A0E6500000001 /* max_pool_argmax.cc in operations */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A58000000000000004E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5187,7 +6091,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000041 /* Sources */ = { + 4A9C8A58000000000000004F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5195,7 +6099,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000042 /* Sources */ = { + 4A9C8A580000000000000050 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5203,7 +6107,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000043 /* Sources */ = { + 4A9C8A580000000000000051 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5211,7 +6115,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000044 /* Sources */ = { + 4A9C8A580000000000000052 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5219,38 +6123,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000045 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C42F44E800000000 /* validate_name.cc in tool */, - FF950301E6069BD500000000 /* callback_packet_calculator.cc in internal */, - FF9503013C0D6D5B00000000 /* image_to_tensor_utils.cc in tensor */, - FF95030179C61E6000000000 /* name_util.cc in tool */, - FF950301217E6F9B00000000 /* options_field_util.cc in tool */, - FF950301CF12C0C800000000 /* options_registry.cc in tool */, - FF950301D822317800000000 /* options_syntax_util.cc in tool */, - FF9503011622036E00000000 /* options_util.cc in tool */, - FF95030182E727FD00000000 /* packet_generator_wrapper_calculator.cc in tool */, - FF9503019343B56C00000000 /* proto_util_lite.cc in tool */, - FF9503013B1C97FA00000000 /* rectangle_util.cc in util */, - FF9503019F1006A000000000 /* subgraph_expansion.cc in tool */, - FF950301903FFB7900000000 /* tag_map.cc in tool */, - FF950301125965EB00000000 /* tag_map_helper.cc in tool */, - FF9503013824086F00000000 /* template_expander.cc in tool */, - FF95030194ACD3D200000000 /* validate.cc in tool */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000046 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030114E720D900000000 /* image_to_tensor_converter_opencv.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000047 /* Sources */ = { + 4A9C8A580000000000000053 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5259,7 +6132,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000048 /* Sources */ = { + 4A9C8A580000000000000054 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030114E720D900000000 /* image_to_tensor_converter_opencv.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000055 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5267,38 +6148,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000049 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301C42F44E800000001 /* validate_name.cc in tool */, - FF950301E6069BD500000001 /* callback_packet_calculator.cc in internal */, - FF9503013C0D6D5B00000001 /* image_to_tensor_utils.cc in tensor */, - FF95030179C61E6000000001 /* name_util.cc in tool */, - FF950301217E6F9B00000001 /* options_field_util.cc in tool */, - FF950301CF12C0C800000001 /* options_registry.cc in tool */, - FF950301D822317800000001 /* options_syntax_util.cc in tool */, - FF9503011622036E00000001 /* options_util.cc in tool */, - FF95030182E727FD00000001 /* packet_generator_wrapper_calculator.cc in tool */, - FF9503019343B56C00000001 /* proto_util_lite.cc in tool */, - FF9503013B1C97FA00000001 /* rectangle_util.cc in util */, - FF9503019F1006A000000001 /* subgraph_expansion.cc in tool */, - FF950301903FFB7900000001 /* tag_map.cc in tool */, - FF950301125965EB00000001 /* tag_map_helper.cc in tool */, - FF9503013824086F00000001 /* template_expander.cc in tool */, - FF95030194ACD3D200000001 /* validate.cc in tool */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000004A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030114E720D900000001 /* image_to_tensor_converter_opencv.cc in tensor */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000004B /* Sources */ = { + 4A9C8A580000000000000056 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5307,7 +6157,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004C /* Sources */ = { + 4A9C8A580000000000000057 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + FF95030114E720D900000001 /* image_to_tensor_converter_opencv.cc in tensor */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A9C8A580000000000000058 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5315,7 +6173,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004D /* Sources */ = { + 4A9C8A580000000000000059 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5323,65 +6181,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000004E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301A3360C7800000000 /* immediate_input_stream_handler.cc in stream_handler */, - FF95030198F8470300000000 /* default_input_stream_handler.cc in stream_handler */, - FF950301176DF12500000000 /* fixed_size_input_stream_handler.cc in stream_handler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A58000000000000004F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301A3360C7800000001 /* immediate_input_stream_handler.cc in stream_handler */, - FF95030198F8470300000001 /* default_input_stream_handler.cc in stream_handler */, - FF950301176DF12500000001 /* fixed_size_input_stream_handler.cc in stream_handler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000050 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030179275DA200000000 /* in_order_output_stream_handler.cc in stream_handler */, - FF950301BAF6D7FB00000000 /* graph_profiler.cc in profiler */, - FF950301D90020AA00000000 /* gl_context_profiler.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000051 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301AC57DDE300000000 /* profiler_resource_util_common.cc in profiler */, - FF9503015F87272300000000 /* profiler_resource_util_ios.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000052 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF95030179275DA200000001 /* in_order_output_stream_handler.cc in stream_handler */, - FF950301BAF6D7FB00000001 /* graph_profiler.cc in profiler */, - FF950301D90020AA00000001 /* gl_context_profiler.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000053 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301AC57DDE300000001 /* profiler_resource_util_common.cc in profiler */, - FF9503015F87272300000001 /* profiler_resource_util_ios.cc in profiler */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000054 /* Sources */ = { + 4A9C8A58000000000000005A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5390,7 +6190,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000055 /* Sources */ = { + 4A9C8A58000000000000005B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5398,7 +6198,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000056 /* Sources */ = { + 4A9C8A58000000000000005C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5407,7 +6207,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000057 /* Sources */ = { + 4A9C8A58000000000000005D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5416,7 +6216,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000058 /* Sources */ = { + 4A9C8A58000000000000005E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5424,7 +6224,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000059 /* Sources */ = { + 4A9C8A58000000000000005F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5433,7 +6233,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005A /* Sources */ = { + 4A9C8A580000000000000060 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5441,7 +6241,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005B /* Sources */ = { + 4A9C8A580000000000000061 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5449,7 +6249,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005C /* Sources */ = { + 4A9C8A580000000000000062 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5457,7 +6257,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005D /* Sources */ = { + 4A9C8A580000000000000063 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5465,7 +6265,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005E /* Sources */ = { + 4A9C8A580000000000000064 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5473,7 +6273,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000005F /* Sources */ = { + 4A9C8A580000000000000065 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5481,25 +6281,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000060 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301908FF76600000000 /* previous_loopback_calculator.cc in core */, - FF950301FFFFBBA500000000 /* header_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000061 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 0; - files = ( - FF950301908FF76600000001 /* previous_loopback_calculator.cc in core */, - FF950301FFFFBBA500000001 /* header_util.cc in util */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A9C8A580000000000000062 /* Sources */ = { + 4A9C8A580000000000000066 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5507,7 +6289,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000063 /* Sources */ = { + 4A9C8A580000000000000067 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5515,7 +6297,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000064 /* Sources */ = { + 4A9C8A580000000000000068 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5523,7 +6305,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000065 /* Sources */ = { + 4A9C8A580000000000000069 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5531,7 +6313,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000066 /* Sources */ = { + 4A9C8A58000000000000006A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5540,7 +6322,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000067 /* Sources */ = { + 4A9C8A58000000000000006B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5549,7 +6331,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000068 /* Sources */ = { + 4A9C8A58000000000000006C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5557,7 +6339,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000069 /* Sources */ = { + 4A9C8A58000000000000006D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5565,7 +6347,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000006A /* Sources */ = { + 4A9C8A58000000000000006E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5574,7 +6356,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000006B /* Sources */ = { + 4A9C8A58000000000000006F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5583,7 +6365,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000006C /* Sources */ = { + 4A9C8A580000000000000070 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5614,7 +6396,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000006D /* Sources */ = { + 4A9C8A580000000000000071 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( @@ -5652,10 +6434,6 @@ isa = PBXTargetDependency; targetProxy = 6CA32826019362DD00000000 /* PBXContainerItemProxy */; }; - 285B8B9A022F905300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826022F905300000000 /* PBXContainerItemProxy */; - }; 285B8B9A043D6EB900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826043D6EB900000000 /* PBXContainerItemProxy */; @@ -5664,9 +6442,9 @@ isa = PBXTargetDependency; targetProxy = 6CA328260552442F00000000 /* PBXContainerItemProxy */; }; - 285B8B9A07268A4900000000 /* PBXTargetDependency */ = { + 285B8B9A091FB26B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA3282607268A4900000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826091FB26B00000000 /* PBXContainerItemProxy */; }; 285B8B9A0BF0E74100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5712,6 +6490,10 @@ isa = PBXTargetDependency; targetProxy = 6CA32826216C14B900000000 /* PBXContainerItemProxy */; }; + 285B8B9A22E7A19300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA3282622E7A19300000000 /* PBXContainerItemProxy */; + }; 285B8B9A270212EF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826270212EF00000000 /* PBXContainerItemProxy */; @@ -5736,18 +6518,10 @@ isa = PBXTargetDependency; targetProxy = 6CA328263E081CF900000000 /* PBXContainerItemProxy */; }; - 285B8B9A3FD289C500000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328263FD289C500000000 /* PBXContainerItemProxy */; - }; 285B8B9A4098134F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328264098134F00000000 /* PBXContainerItemProxy */; }; - 285B8B9A42ACE2AF00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282642ACE2AF00000000 /* PBXContainerItemProxy */; - }; 285B8B9A4581F61300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328264581F61300000000 /* PBXContainerItemProxy */; @@ -5772,10 +6546,22 @@ isa = PBXTargetDependency; targetProxy = 6CA328264EC3F25F00000000 /* PBXContainerItemProxy */; }; + 285B8B9A5631D7AD00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA328265631D7AD00000000 /* PBXContainerItemProxy */; + }; + 285B8B9A5B9442FD00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA328265B9442FD00000000 /* PBXContainerItemProxy */; + }; 285B8B9A5D24269700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328265D24269700000000 /* PBXContainerItemProxy */; }; + 285B8B9A605975F300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA32826605975F300000000 /* PBXContainerItemProxy */; + }; 285B8B9A60F40B8100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA3282660F40B8100000000 /* PBXContainerItemProxy */; @@ -5784,22 +6570,30 @@ isa = PBXTargetDependency; targetProxy = 6CA3282662520DF700000000 /* PBXContainerItemProxy */; }; + 285B8B9A66E95E1300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA3282666E95E1300000000 /* PBXContainerItemProxy */; + }; 285B8B9A6729A1D100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328266729A1D100000000 /* PBXContainerItemProxy */; }; + 285B8B9A6EE3185F00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA328266EE3185F00000000 /* PBXContainerItemProxy */; + }; 285B8B9A70815F2D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA3282670815F2D00000000 /* PBXContainerItemProxy */; }; - 285B8B9A7092C35900000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA328267092C35900000000 /* PBXContainerItemProxy */; - }; 285B8B9A717FBD3300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826717FBD3300000000 /* PBXContainerItemProxy */; }; + 285B8B9A71A9D19F00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA3282671A9D19F00000000 /* PBXContainerItemProxy */; + }; 285B8B9A721498C500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826721498C500000000 /* PBXContainerItemProxy */; @@ -5808,14 +6602,14 @@ isa = PBXTargetDependency; targetProxy = 6CA32826762E872100000000 /* PBXContainerItemProxy */; }; - 285B8B9A77193CED00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA3282677193CED00000000 /* PBXContainerItemProxy */; - }; 285B8B9A79D4949700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA3282679D4949700000000 /* PBXContainerItemProxy */; }; + 285B8B9A7AADD3C500000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA328267AADD3C500000000 /* PBXContainerItemProxy */; + }; 285B8B9A7E674A3900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328267E674A3900000000 /* PBXContainerItemProxy */; @@ -5828,6 +6622,10 @@ isa = PBXTargetDependency; targetProxy = 6CA328267FF66ACD00000000 /* PBXContainerItemProxy */; }; + 285B8B9A80D4856F00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA3282680D4856F00000000 /* PBXContainerItemProxy */; + }; 285B8B9A8489C38D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328268489C38D00000000 /* PBXContainerItemProxy */; @@ -5840,10 +6638,18 @@ isa = PBXTargetDependency; targetProxy = 6CA328268B56A57900000000 /* PBXContainerItemProxy */; }; + 285B8B9A8D69C4A300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA328268D69C4A300000000 /* PBXContainerItemProxy */; + }; 285B8B9A94BE0ED500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA3282694BE0ED500000000 /* PBXContainerItemProxy */; }; + 285B8B9A97A002A700000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA3282697A002A700000000 /* PBXContainerItemProxy */; + }; 285B8B9A9B64E5B500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA328269B64E5B500000000 /* PBXContainerItemProxy */; @@ -5860,17 +6666,17 @@ isa = PBXTargetDependency; targetProxy = 6CA328269CDDB50D00000000 /* PBXContainerItemProxy */; }; - 285B8B9A9D5E869900000000 /* PBXTargetDependency */ = { + 285B8B9AA616095700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA328269D5E869900000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826A616095700000000 /* PBXContainerItemProxy */; }; 285B8B9AAB070CC500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826AB070CC500000000 /* PBXContainerItemProxy */; }; - 285B8B9ABA2FFD3900000000 /* PBXTargetDependency */ = { + 285B8B9AAC80CFF100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826BA2FFD3900000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826AC80CFF100000000 /* PBXContainerItemProxy */; }; 285B8B9ABEE3CE7500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5884,14 +6690,18 @@ isa = PBXTargetDependency; targetProxy = 6CA32826C7F9A94500000000 /* PBXContainerItemProxy */; }; - 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */ = { + 285B8B9ACC49096B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826CC49096B00000000 /* PBXContainerItemProxy */; }; 285B8B9ACC596BC100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826CC596BC100000000 /* PBXContainerItemProxy */; }; + 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */; + }; 285B8B9AD4B7599D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826D4B7599D00000000 /* PBXContainerItemProxy */; @@ -5904,14 +6714,18 @@ isa = PBXTargetDependency; targetProxy = 6CA32826DBC0365300000000 /* PBXContainerItemProxy */; }; + 285B8B9ADBE24C2D00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA32826DBE24C2D00000000 /* PBXContainerItemProxy */; + }; + 285B8B9ADDC0B1B300000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA32826DDC0B1B300000000 /* PBXContainerItemProxy */; + }; 285B8B9ADF5731D100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826DF5731D100000000 /* PBXContainerItemProxy */; }; - 285B8B9AE2CE384D00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826E2CE384D00000000 /* PBXContainerItemProxy */; - }; 285B8B9AE4F68A4900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826E4F68A4900000000 /* PBXContainerItemProxy */; @@ -5920,13 +6734,9 @@ isa = PBXTargetDependency; targetProxy = 6CA32826E60E967B00000000 /* PBXContainerItemProxy */; }; - 285B8B9AEA11A96900000000 /* PBXTargetDependency */ = { + 285B8B9AECB1197500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - targetProxy = 6CA32826EA11A96900000000 /* PBXContainerItemProxy */; - }; - 285B8B9AEA7F109100000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826EA7F109100000000 /* PBXContainerItemProxy */; + targetProxy = 6CA32826ECB1197500000000 /* PBXContainerItemProxy */; }; 285B8B9AED47024D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5944,6 +6754,10 @@ isa = PBXTargetDependency; targetProxy = 6CA32826EFD48CB500000000 /* PBXContainerItemProxy */; }; + 285B8B9AF164385B00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = 6CA32826F164385B00000000 /* PBXContainerItemProxy */; + }; 285B8B9AF437D55300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826F437D55300000000 /* PBXContainerItemProxy */; @@ -5952,18 +6766,10 @@ isa = PBXTargetDependency; targetProxy = 6CA32826F43963A700000000 /* PBXContainerItemProxy */; }; - 285B8B9AF4401A3B00000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F4401A3B00000000 /* PBXContainerItemProxy */; - }; 285B8B9AF84C49B100000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; targetProxy = 6CA32826F84C49B100000000 /* PBXContainerItemProxy */; }; - 285B8B9AF9FAA4C300000000 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - targetProxy = 6CA32826F9FAA4C300000000 /* PBXContainerItemProxy */; - }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -6046,7 +6852,7 @@ 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"; @@ -6133,10 +6939,10 @@ 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 "; + HEADER_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 = "-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_99A08626_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_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6146,10 +6952,10 @@ 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 "; + HEADER_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_image_frame_graph_tracer_4E004B23_ios_min11.0; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6162,7 +6968,7 @@ HEADER_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_F1B36E38_ios_min11.0; + PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6172,224 +6978,16 @@ 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 "; + HEADER_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_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; C1A2A5811882E1BB00000007 /* 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_156DBF0B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000008 /* 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_2A6F224E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000009 /* 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 -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_06E221FF_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000A /* 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 -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_0402C5B7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000B /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_MPPGraphGPUData_39C9C70C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000C /* 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 -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_99A08626_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000D /* 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_4E004B23_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000E /* 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 = "-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_F1B36E38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000000F /* 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 = "-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_46C4C02A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000010 /* 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_156DBF0B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000011 /* 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_2A6F224E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000012 /* 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_06E221FF_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000013 /* 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_0402C5B7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000014 /* 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_MPPMetalHelper_D24F76A1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000015 /* 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_mediapipe_framework_ios_C158E828_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000016 /* 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 = "-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_33FB6263_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000017 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6402,46 +7000,202 @@ }; name = Debug; }; - C1A2A5811882E1BB00000018 /* Debug */ = { + C1A2A5811882E1BB00000008 /* 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_4E004B23_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000009 /* 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_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000A /* 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_2A6F224E_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000B /* 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 -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_99A08626_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000C /* 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_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000D /* 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_CE40ED18_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000E /* 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_35C39BA3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000000F /* 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 -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_06E221FF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000010 /* 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 -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_0402C5B7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000011 /* 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 = "-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_F1B36E38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000012 /* 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_MPPMetalHelper_D24F76A1_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_39C9C70C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000019 /* Debug */ = { + C1A2A5811882E1BB00000013 /* 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 "; + HEADER_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 = "-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_C158E828_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_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000001A /* Debug */ = { + C1A2A5811882E1BB00000014 /* 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 = "-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_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000015 /* 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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000016 /* 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 = "-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_33FB6263_ios_min15.5; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000001B /* Debug */ = { + C1A2A5811882E1BB00000017 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6454,7 +7208,189 @@ }; name = Debug; }; + C1A2A5811882E1BB00000018 /* 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_4E004B23_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000019 /* 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_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001A /* 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_2A6F224E_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001B /* 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 -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_99A08626_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; C1A2A5811882E1BB0000001C /* 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_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001D /* 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_CE40ED18_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001E /* 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_35C39BA3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000001F /* 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_06E221FF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000020 /* 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_0402C5B7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000021 /* 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 = "-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_F1B36E38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000022 /* 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_MPPMetalHelper_D24F76A1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000023 /* 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_mediapipe_framework_ios_C158E828_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000024 /* 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_MPPMetalHelper_D24F76A1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000025 /* 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_mediapipe_framework_ios_C158E828_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000026 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6467,7 +7403,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001D /* Debug */ = { + C1A2A5811882E1BB00000027 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6480,7 +7416,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001E /* Debug */ = { + C1A2A5811882E1BB00000028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6494,33 +7430,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000001F /* 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_7905855A_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000020 /* 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_68C63536_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000021 /* Debug */ = { + C1A2A5811882E1BB00000029 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6533,122 +7443,14 @@ }; name = Debug; }; - C1A2A5811882E1BB00000022 /* 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 -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_2770987F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000023 /* 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_7905855A_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000024 /* 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_68C63536_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000025 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000026 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000027 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000028 /* 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_D6F50F87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000029 /* 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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; C1A2A5811882E1BB0000002A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_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_calculator_graph_header_util_CF5B401B_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6658,10 +7460,10 @@ 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 "; + HEADER_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 = "-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_DC51F13C_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -6681,6 +7483,205 @@ name = Debug; }; C1A2A5811882E1BB0000002D /* 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_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002E /* 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_68C63536_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000002F /* 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 -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_2770987F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000030 /* 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_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000031 /* 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_68C63536_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000032 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000033 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000034 /* 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 = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000035 /* 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_56DC0B61_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000036 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000037 /* 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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000038 /* 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_D6F50F87_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000039 /* 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_CB7AD146_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000003A /* 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_DC51F13C_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000003B /* 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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000003C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6694,34 +7695,33 @@ }; name = Debug; }; - C1A2A5811882E1BB0000002E /* Debug */ = { + C1A2A5811882E1BB0000003D /* 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 "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_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_gl_calculator_helper_DC51F13C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002F /* Debug */ = { + C1A2A5811882E1BB0000003E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_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_gl_simple_shaders_CB7AD146_ios_min15.5; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000030 /* Debug */ = { + C1A2A5811882E1BB0000003F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6735,46 +7735,34 @@ }; name = Debug; }; - C1A2A5811882E1BB00000031 /* Debug */ = { + C1A2A5811882E1BB00000040 /* 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_DC51F13C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000032 /* 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_56DC0B61_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000033 /* 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 "; + 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_shader_util_C047EBB4_ios_min15.5; + PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000034 /* Debug */ = { + C1A2A5811882E1BB00000041 /* 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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000042 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6787,7 +7775,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000035 /* Debug */ = { + C1A2A5811882E1BB00000043 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6800,7 +7788,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000036 /* Debug */ = { + C1A2A5811882E1BB00000044 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6813,7 +7801,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000037 /* Debug */ = { + C1A2A5811882E1BB00000045 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6826,7 +7814,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000038 /* Debug */ = { + C1A2A5811882E1BB00000046 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6839,7 +7827,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000039 /* Debug */ = { + C1A2A5811882E1BB00000047 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6852,7 +7840,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000003A /* Debug */ = { + C1A2A5811882E1BB00000048 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6865,20 +7853,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000003B /* 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 -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_DD005500_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000003C /* Debug */ = { + C1A2A5811882E1BB00000049 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6891,7 +7866,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000003D /* Debug */ = { + C1A2A5811882E1BB0000004A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6904,7 +7879,20 @@ }; name = Debug; }; - C1A2A5811882E1BB0000003E /* Debug */ = { + C1A2A5811882E1BB0000004B /* 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 -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_DD005500_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000004C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6917,33 +7905,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000003F /* 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 -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_E3459F40_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000040 /* 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 -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_615F909D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000041 /* Debug */ = { + C1A2A5811882E1BB0000004D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -6956,7 +7918,33 @@ }; name = Debug; }; - C1A2A5811882E1BB00000042 /* Debug */ = { + C1A2A5811882E1BB0000004E /* 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 -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_E3459F40_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB0000004F /* 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 -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_615F909D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + C1A2A5811882E1BB00000050 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6970,7 +7958,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000043 /* Debug */ = { + C1A2A5811882E1BB00000051 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6984,7 +7972,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000044 /* Debug */ = { + C1A2A5811882E1BB00000052 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -6998,7 +7986,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000045 /* Debug */ = { + C1A2A5811882E1BB00000053 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7012,7 +8000,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000046 /* Debug */ = { + C1A2A5811882E1BB00000054 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7026,20 +8014,20 @@ }; name = Debug; }; - C1A2A5811882E1BB00000047 /* Debug */ = { + C1A2A5811882E1BB00000055 /* 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 "; + HEADER_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_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_A7BDE743_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_tensor_7303F5EA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000048 /* Debug */ = { + C1A2A5811882E1BB00000056 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7053,20 +8041,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000049 /* 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_7303F5EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004A /* Debug */ = { + C1A2A5811882E1BB00000057 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7080,20 +8055,20 @@ }; name = Debug; }; - C1A2A5811882E1BB0000004B /* Debug */ = { + C1A2A5811882E1BB00000058 /* 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 "; + HEADER_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_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_A7BDE743_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_7303F5EA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000004C /* Debug */ = { + C1A2A5811882E1BB00000059 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7107,20 +8082,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000004D /* 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 = "-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_7303F5EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB0000004E /* Debug */ = { + C1A2A5811882E1BB0000005A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7133,7 +8095,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000004F /* Debug */ = { + C1A2A5811882E1BB0000005B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7146,85 +8108,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000050 /* 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_EDD516E8_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000051 /* 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_EDD516E8_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000052 /* 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_CE40ED18_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000053 /* 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_35C39BA3_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000054 /* 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_CE40ED18_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000055 /* 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_35C39BA3_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000056 /* Debug */ = { + C1A2A5811882E1BB0000005C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7237,7 +8121,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000057 /* Debug */ = { + C1A2A5811882E1BB0000005D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7250,7 +8134,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000058 /* Debug */ = { + C1A2A5811882E1BB0000005E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7263,7 +8147,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000059 /* Debug */ = { + C1A2A5811882E1BB0000005F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7276,7 +8160,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005A /* Debug */ = { + C1A2A5811882E1BB00000060 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7289,7 +8173,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005B /* Debug */ = { + C1A2A5811882E1BB00000061 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7302,7 +8186,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005C /* Debug */ = { + C1A2A5811882E1BB00000062 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7315,7 +8199,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005D /* Debug */ = { + C1A2A5811882E1BB00000063 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7328,7 +8212,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005E /* Debug */ = { + C1A2A5811882E1BB00000064 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7342,7 +8226,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000005F /* Debug */ = { + C1A2A5811882E1BB00000065 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7356,7 +8240,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000060 /* Debug */ = { + C1A2A5811882E1BB00000066 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7369,7 +8253,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000061 /* Debug */ = { + C1A2A5811882E1BB00000067 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7382,33 +8266,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000062 /* 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 -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_D60754F6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000063 /* 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 -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_D60754F6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000064 /* Debug */ = { + C1A2A5811882E1BB00000068 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7421,7 +8279,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000065 /* Debug */ = { + C1A2A5811882E1BB00000069 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7434,7 +8292,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000066 /* Debug */ = { + C1A2A5811882E1BB0000006A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7448,7 +8306,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000067 /* Debug */ = { + C1A2A5811882E1BB0000006B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -7462,7 +8320,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000068 /* Debug */ = { + C1A2A5811882E1BB0000006C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7475,7 +8333,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000069 /* Debug */ = { + C1A2A5811882E1BB0000006D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7488,7 +8346,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006A /* Debug */ = { + C1A2A5811882E1BB0000006E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7501,7 +8359,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006B /* Debug */ = { + C1A2A5811882E1BB0000006F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7514,7 +8372,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006C /* Debug */ = { + C1A2A5811882E1BB00000070 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7527,7 +8385,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006D /* Debug */ = { + C1A2A5811882E1BB00000071 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7540,7 +8398,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006E /* Debug */ = { + C1A2A5811882E1BB00000072 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7553,7 +8411,7 @@ }; name = Debug; }; - C1A2A5811882E1BB0000006F /* Debug */ = { + C1A2A5811882E1BB00000073 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; @@ -7566,7 +8424,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000070 /* Debug */ = { + C1A2A5811882E1BB00000074 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -7574,7 +8432,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + 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; @@ -7655,10 +8513,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + HEADER_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 = "-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_99A08626_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_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7668,10 +8526,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + HEADER_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_image_frame_graph_tracer_4E004B23_ios_min11.0; + PRODUCT_NAME = _idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7684,7 +8542,7 @@ HEADER_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_F1B36E38_ios_min11.0; + PRODUCT_NAME = _idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -7694,224 +8552,16 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + HEADER_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_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; C1A2A581215C43D600000007 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_156DBF0B_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000008 /* 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_2A6F224E_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000009 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_06E221FF_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000A /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_0402C5B7_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_39C9C70C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_99A08626_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_4E004B23_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000E /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_F1B36E38_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000000F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_46C4C02A_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000010 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_156DBF0B_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000011 /* 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_2A6F224E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000012 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_06E221FF_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000013 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_0402C5B7_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000014 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D24F76A1_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000015 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_C158E828_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000016 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_33FB6263_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000017 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -7924,46 +8574,202 @@ }; name = Release; }; - C1A2A581215C43D600000018 /* Release */ = { + C1A2A581215C43D600000008 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_4E004B23_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000009 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000A /* 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_2A6F224E_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_99A08626_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_CE40ED18_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_35C39BA3_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000000F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_06E221FF_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000010 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_0402C5B7_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000011 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_F1B36E38_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000012 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D24F76A1_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_39C9C70C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000019 /* Release */ = { + C1A2A581215C43D600000013 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 "; + HEADER_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 = "-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_C158E828_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_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000001A /* Release */ = { + C1A2A581215C43D600000014 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000015 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000016 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_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_33FB6263_ios_min15.5; + PRODUCT_NAME = _idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000001B /* Release */ = { + C1A2A581215C43D600000017 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -7976,7 +8782,189 @@ }; name = Release; }; + C1A2A581215C43D600000018 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_4E004B23_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000019 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001A /* 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_2A6F224E_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_99A08626_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; C1A2A581215C43D60000001C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_CE40ED18_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_35C39BA3_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000001F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_06E221FF_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000020 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_0402C5B7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000021 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_F1B36E38_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000022 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D24F76A1_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000023 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_C158E828_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D24F76A1_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000025 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_C158E828_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000026 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -7989,7 +8977,7 @@ }; name = Release; }; - C1A2A581215C43D60000001D /* Release */ = { + C1A2A581215C43D600000027 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8002,7 +8990,7 @@ }; name = Release; }; - C1A2A581215C43D60000001E /* Release */ = { + C1A2A581215C43D600000028 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8016,33 +9004,7 @@ }; name = Release; }; - C1A2A581215C43D60000001F /* 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_7905855A_ios_min11.0"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000020 /* 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_68C63536_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000021 /* Release */ = { + C1A2A581215C43D600000029 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8055,122 +9017,14 @@ }; name = Release; }; - C1A2A581215C43D600000022 /* 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_2770987F_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000023 /* 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_7905855A_ios_min15.5"; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000024 /* 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_68C63536_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000025 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_63E72567_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000026 /* 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_D98E9275_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000027 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_C047EBB4_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000028 /* 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_D6F50F87_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000029 /* 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_8D68840D_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; C1A2A581215C43D60000002A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_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_calculator_graph_header_util_CF5B401B_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8180,10 +9034,10 @@ isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 "; + HEADER_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 = "-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_DC51F13C_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; @@ -8203,6 +9057,205 @@ name = Release; }; C1A2A581215C43D60000002D /* 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_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002E /* 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_68C63536_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000002F /* 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_2770987F_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000030 /* 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_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000031 /* 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_68C63536_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000032 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_63E72567_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000033 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_calculator_graph_header_util_CF5B401B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000034 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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 = "-ObjC++ -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_scheduler_queue_364511B6_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000035 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_56DC0B61_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000036 /* 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_D98E9275_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000037 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_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_C047EBB4_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000038 /* 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_D6F50F87_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000039 /* 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_CB7AD146_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000003A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_DC51F13C_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000003B /* 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_8D68840D_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000003C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8216,34 +9269,33 @@ }; name = Release; }; - C1A2A581215C43D60000002E /* Release */ = { + C1A2A581215C43D60000003D /* 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 "; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_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_gl_calculator_helper_DC51F13C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002F /* Release */ = { + C1A2A581215C43D60000003E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; + HEADER_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_gl_simple_shaders_CB7AD146_ios_min15.5; + PRODUCT_NAME = _idx_shader_util_C047EBB4_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000030 /* Release */ = { + C1A2A581215C43D60000003F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8257,46 +9309,34 @@ }; name = Release; }; - C1A2A581215C43D600000031 /* Release */ = { + C1A2A581215C43D600000040 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_DC51F13C_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000032 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_56DC0B61_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000033 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + 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_shader_util_C047EBB4_ios_min15.5; + PRODUCT_NAME = _idx_gl_simple_shaders_CB7AD146_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000034 /* Release */ = { + C1A2A581215C43D600000041 /* 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_8D68840D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000042 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8309,7 +9349,7 @@ }; name = Release; }; - C1A2A581215C43D600000035 /* Release */ = { + C1A2A581215C43D600000043 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8322,7 +9362,7 @@ }; name = Release; }; - C1A2A581215C43D600000036 /* Release */ = { + C1A2A581215C43D600000044 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8335,7 +9375,7 @@ }; name = Release; }; - C1A2A581215C43D600000037 /* Release */ = { + C1A2A581215C43D600000045 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8348,7 +9388,7 @@ }; name = Release; }; - C1A2A581215C43D600000038 /* Release */ = { + C1A2A581215C43D600000046 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8361,7 +9401,7 @@ }; name = Release; }; - C1A2A581215C43D600000039 /* Release */ = { + C1A2A581215C43D600000047 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8374,7 +9414,7 @@ }; name = Release; }; - C1A2A581215C43D60000003A /* Release */ = { + C1A2A581215C43D600000048 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8387,20 +9427,7 @@ }; name = Release; }; - C1A2A581215C43D60000003B /* 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_DD005500_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000003C /* Release */ = { + C1A2A581215C43D600000049 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8413,7 +9440,7 @@ }; name = Release; }; - C1A2A581215C43D60000003D /* Release */ = { + C1A2A581215C43D60000004A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8426,7 +9453,20 @@ }; name = Release; }; - C1A2A581215C43D60000003E /* Release */ = { + C1A2A581215C43D60000004B /* 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_DD005500_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000004C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8439,33 +9479,7 @@ }; name = Release; }; - C1A2A581215C43D60000003F /* 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_E3459F40_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000040 /* 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_615F909D_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000041 /* Release */ = { + C1A2A581215C43D60000004D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8478,7 +9492,33 @@ }; name = Release; }; - C1A2A581215C43D600000042 /* Release */ = { + C1A2A581215C43D60000004E /* 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_E3459F40_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D60000004F /* 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_615F909D_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + C1A2A581215C43D600000050 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8492,7 +9532,7 @@ }; name = Release; }; - C1A2A581215C43D600000043 /* Release */ = { + C1A2A581215C43D600000051 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8506,7 +9546,7 @@ }; name = Release; }; - C1A2A581215C43D600000044 /* Release */ = { + C1A2A581215C43D600000052 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8520,7 +9560,7 @@ }; name = Release; }; - C1A2A581215C43D600000045 /* Release */ = { + C1A2A581215C43D600000053 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8534,7 +9574,7 @@ }; name = Release; }; - C1A2A581215C43D600000046 /* Release */ = { + C1A2A581215C43D600000054 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8548,20 +9588,20 @@ }; name = Release; }; - C1A2A581215C43D600000047 /* Release */ = { + C1A2A581215C43D600000055 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + HEADER_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_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_A7BDE743_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_tensor_7303F5EA_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000048 /* Release */ = { + C1A2A581215C43D600000056 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8575,20 +9615,7 @@ }; name = Release; }; - C1A2A581215C43D600000049 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_7303F5EA_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004A /* Release */ = { + C1A2A581215C43D600000057 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8602,20 +9629,20 @@ }; name = Release; }; - C1A2A581215C43D60000004B /* Release */ = { + C1A2A581215C43D600000058 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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 "; + HEADER_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_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_A7BDE743_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_7303F5EA_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000004C /* Release */ = { + C1A2A581215C43D600000059 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8629,20 +9656,7 @@ }; name = Release; }; - C1A2A581215C43D60000004D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_7303F5EA_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D60000004E /* Release */ = { + C1A2A581215C43D60000005A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8655,7 +9669,7 @@ }; name = Release; }; - C1A2A581215C43D60000004F /* Release */ = { + C1A2A581215C43D60000005B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8668,85 +9682,7 @@ }; name = Release; }; - C1A2A581215C43D600000050 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_EDD516E8_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000051 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_EDD516E8_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000052 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_CE40ED18_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000053 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_35C39BA3_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000054 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_CE40ED18_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000055 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_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_35C39BA3_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000056 /* Release */ = { + C1A2A581215C43D60000005C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8759,7 +9695,7 @@ }; name = Release; }; - C1A2A581215C43D600000057 /* Release */ = { + C1A2A581215C43D60000005D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8772,7 +9708,7 @@ }; name = Release; }; - C1A2A581215C43D600000058 /* Release */ = { + C1A2A581215C43D60000005E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8785,7 +9721,7 @@ }; name = Release; }; - C1A2A581215C43D600000059 /* Release */ = { + C1A2A581215C43D60000005F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8798,7 +9734,7 @@ }; name = Release; }; - C1A2A581215C43D60000005A /* Release */ = { + C1A2A581215C43D600000060 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8811,7 +9747,7 @@ }; name = Release; }; - C1A2A581215C43D60000005B /* Release */ = { + C1A2A581215C43D600000061 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8824,7 +9760,7 @@ }; name = Release; }; - C1A2A581215C43D60000005C /* Release */ = { + C1A2A581215C43D600000062 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8837,7 +9773,7 @@ }; name = Release; }; - C1A2A581215C43D60000005D /* Release */ = { + C1A2A581215C43D600000063 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8850,7 +9786,7 @@ }; name = Release; }; - C1A2A581215C43D60000005E /* Release */ = { + C1A2A581215C43D600000064 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8864,7 +9800,7 @@ }; name = Release; }; - C1A2A581215C43D60000005F /* Release */ = { + C1A2A581215C43D600000065 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8878,7 +9814,7 @@ }; name = Release; }; - C1A2A581215C43D600000060 /* Release */ = { + C1A2A581215C43D600000066 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8891,7 +9827,7 @@ }; name = Release; }; - C1A2A581215C43D600000061 /* Release */ = { + C1A2A581215C43D600000067 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8904,33 +9840,7 @@ }; name = Release; }; - C1A2A581215C43D600000062 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D60754F6_ios_min11.0; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000063 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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_D60754F6_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000064 /* Release */ = { + C1A2A581215C43D600000068 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8943,7 +9853,7 @@ }; name = Release; }; - C1A2A581215C43D600000065 /* Release */ = { + C1A2A581215C43D600000069 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8956,7 +9866,7 @@ }; name = Release; }; - C1A2A581215C43D600000066 /* Release */ = { + C1A2A581215C43D60000006A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8970,7 +9880,7 @@ }; name = Release; }; - C1A2A581215C43D600000067 /* Release */ = { + C1A2A581215C43D60000006B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; @@ -8984,7 +9894,7 @@ }; name = Release; }; - C1A2A581215C43D600000068 /* Release */ = { + C1A2A581215C43D60000006C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -8997,7 +9907,7 @@ }; name = Release; }; - C1A2A581215C43D600000069 /* Release */ = { + C1A2A581215C43D60000006D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9010,7 +9920,7 @@ }; name = Release; }; - C1A2A581215C43D60000006A /* Release */ = { + C1A2A581215C43D60000006E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9023,7 +9933,7 @@ }; name = Release; }; - C1A2A581215C43D60000006B /* Release */ = { + C1A2A581215C43D60000006F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9036,7 +9946,7 @@ }; name = Release; }; - C1A2A581215C43D60000006C /* Release */ = { + C1A2A581215C43D600000070 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9049,7 +9959,7 @@ }; name = Release; }; - C1A2A581215C43D60000006D /* Release */ = { + C1A2A581215C43D600000071 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9062,7 +9972,7 @@ }; name = Release; }; - C1A2A581215C43D60000006E /* Release */ = { + C1A2A581215C43D600000072 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9075,7 +9985,7 @@ }; name = Release; }; - C1A2A581215C43D60000006F /* Release */ = { + C1A2A581215C43D600000073 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; @@ -9088,7 +9998,7 @@ }; name = Release; }; - C1A2A581215C43D600000070 /* Release */ = { + C1A2A581215C43D600000074 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -9096,7 +10006,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + 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; @@ -9183,7 +10093,7 @@ 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"; @@ -9200,31 +10110,127 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 84EFF5080432744C00000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min11.0" */ = { + 84EFF50804A631DD00000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000006 /* Debug */, - C1A2A581215C43D600000006 /* Release */, + C1A2A5811882E1BB00000014 /* Debug */, + C1A2A581215C43D600000014 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5080A9DA25200000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_33FB6263_ios_min11.0" */ = { + 84EFF5080908381B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000016 /* Debug */, - C1A2A581215C43D600000016 /* Release */, + C1A2A5811882E1BB00000005 /* Debug */, + C1A2A581215C43D600000005 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5080D167B7100000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000055 /* Debug */, - C1A2A581215C43D600000055 /* Release */, + C1A2A5811882E1BB0000001E /* Debug */, + C1A2A581215C43D60000001E /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5080DDBE57E00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000021 /* Debug */, + C1A2A581215C43D600000021 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000036 /* Debug */, + C1A2A581215C43D600000036 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5080F04FD2900000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000002A /* Debug */, + C1A2A581215C43D60000002A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000051 /* Debug */, + C1A2A581215C43D600000051 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50812D5985D00000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000045 /* Debug */, + C1A2A581215C43D600000045 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000006F /* Debug */, + C1A2A581215C43D60000006F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000004C /* Debug */, + C1A2A581215C43D60000004C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000023 /* Debug */, + C1A2A581215C43D600000023 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000067 /* Debug */, + C1A2A581215C43D600000067 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000063 /* Debug */, + C1A2A581215C43D600000063 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081CDA19BF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000057 /* Debug */, + C1A2A581215C43D600000057 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000B /* Debug */, + C1A2A581215C43D60000000B /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000000E /* Debug */, @@ -9232,123 +10238,43 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000026 /* Debug */, - C1A2A581215C43D600000026 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000043 /* Debug */, - C1A2A581215C43D600000043 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50812D5985D00000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000037 /* Debug */, - C1A2A581215C43D600000037 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508136ED85B00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006B /* Debug */, - C1A2A581215C43D60000006B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000003E /* Debug */, - C1A2A581215C43D60000003E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000015 /* Debug */, - C1A2A581215C43D600000015 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000061 /* Debug */, - C1A2A581215C43D600000061 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081B3AF97B00000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005D /* Debug */, - C1A2A581215C43D60000005D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081CDA19BF00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004A /* Debug */, - C1A2A581215C43D60000004A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081D89926500000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000003 /* Debug */, - C1A2A581215C43D600000003 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5081DAB3B6400000000 /* Build configuration list for PBXNativeTarget "_idx_profiler_resource_util_35C39BA3_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000053 /* Debug */, - C1A2A581215C43D600000053 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; 84EFF5081FB54A7400000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000009 /* Debug */, - C1A2A581215C43D600000009 /* Release */, + C1A2A5811882E1BB0000000F /* Debug */, + C1A2A581215C43D60000000F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003A /* Debug */, - C1A2A581215C43D60000003A /* Release */, + C1A2A5811882E1BB00000048 /* Debug */, + C1A2A581215C43D600000048 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000039 /* Debug */, - C1A2A581215C43D600000039 /* Release */, + C1A2A5811882E1BB00000047 /* Debug */, + C1A2A581215C43D600000047 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5082CF4B73A00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000019 /* Debug */, + C1A2A581215C43D600000019 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000060 /* Debug */, - C1A2A581215C43D600000060 /* Release */, + C1A2A5811882E1BB00000066 /* Debug */, + C1A2A581215C43D600000066 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -9365,36 +10291,60 @@ 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002D /* Debug */, - C1A2A581215C43D60000002D /* Release */, + C1A2A5811882E1BB0000003C /* Debug */, + C1A2A581215C43D60000003C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50837CF1CB300000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000003 /* Debug */, + C1A2A581215C43D600000003 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000034 /* Debug */, - C1A2A581215C43D600000034 /* Release */, + C1A2A5811882E1BB00000042 /* Debug */, + C1A2A581215C43D600000042 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5083BDB1A3300000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000A /* Debug */, - C1A2A581215C43D60000000A /* Release */, + C1A2A5811882E1BB00000010 /* Debug */, + C1A2A581215C43D600000010 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000041 /* Debug */, - C1A2A581215C43D600000041 /* Release */, + C1A2A5811882E1BB0000004D /* Debug */, + C1A2A581215C43D60000004D /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000064 /* Debug */, + C1A2A581215C43D600000064 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50841AF058700000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000043 /* Debug */, + C1A2A581215C43D600000043 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000005E /* Debug */, @@ -9402,55 +10352,135 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF50841AF058700000000 /* Build configuration list for PBXNativeTarget "_idx_matrix_E57ACF41_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000035 /* Debug */, - C1A2A581215C43D600000035 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000058 /* Debug */, - C1A2A581215C43D600000058 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003D /* Debug */, - C1A2A581215C43D60000003D /* Release */, + C1A2A5811882E1BB0000004A /* Debug */, + C1A2A581215C43D60000004A /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000057 /* Debug */, - C1A2A581215C43D600000057 /* Release */, + C1A2A5811882E1BB0000005D /* Debug */, + C1A2A581215C43D60000005D /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000005A /* Debug */, - C1A2A581215C43D60000005A /* Release */, + C1A2A5811882E1BB00000060 /* Debug */, + C1A2A581215C43D600000060 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5084B7E0ABB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000045 /* Debug */, - C1A2A581215C43D600000045 /* Release */, + C1A2A5811882E1BB00000053 /* Debug */, + C1A2A581215C43D600000053 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000004B /* Debug */, + C1A2A581215C43D60000004B /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5084BDA704A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000005B /* Debug */, + C1A2A581215C43D60000005B /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5084D89B18800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000016 /* Debug */, + C1A2A581215C43D600000016 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000006E /* Debug */, + C1A2A581215C43D60000006E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000011 /* Debug */, + C1A2A581215C43D600000011 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000025 /* Debug */, + C1A2A581215C43D600000025 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508509C6EAD00000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000C /* Debug */, + C1A2A581215C43D60000000C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50852D61F6100000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000059 /* Debug */, + C1A2A581215C43D600000059 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5085B94398200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000022 /* Debug */, + C1A2A581215C43D600000022 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000040 /* Debug */, + C1A2A581215C43D600000040 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5085CC6057F00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000006C /* Debug */, + C1A2A581215C43D60000006C /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000018 /* Debug */, + C1A2A581215C43D600000018 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000003B /* Debug */, @@ -9458,115 +10488,11 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF5084BDA704A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004F /* Debug */, - C1A2A581215C43D60000004F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084D7419FD00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_7905855A_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000023 /* Debug */, - C1A2A581215C43D600000023 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084D92825300000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_custom_op_resolver_calculator_772D286F_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006A /* Debug */, - C1A2A581215C43D60000006A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000062 /* Debug */, - C1A2A581215C43D600000062 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084E652AAB00000000 /* Build configuration list for PBXNativeTarget "_idx_pixel_buffer_pool_util_F1B36E38_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000005 /* Debug */, - C1A2A581215C43D600000005 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000019 /* Debug */, - C1A2A581215C43D600000019 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50852D61F6100000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004C /* Debug */, - C1A2A581215C43D60000004C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50854188FAD00000000 /* Build configuration list for PBXNativeTarget "_idx_file_helpers_cpu_util_33FB6263_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001A /* Debug */, - C1A2A581215C43D60000001A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085B94398200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000014 /* Debug */, - C1A2A581215C43D600000014 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085C39F12800000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002F /* Debug */, - C1A2A581215C43D60000002F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085CC6057F00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000068 /* Debug */, - C1A2A581215C43D600000068 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085E3AF8BB00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000D /* Debug */, - C1A2A581215C43D60000000D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000029 /* Debug */, - C1A2A581215C43D600000029 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; 84EFF5085EC1FB9F00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000070 /* Debug */, - C1A2A581215C43D600000070 /* Release */, + C1A2A5811882E1BB00000074 /* Debug */, + C1A2A581215C43D600000074 /* Release */, C1A2A581A47D8D4000000002 /* __TulsiTestRunner_Debug */, C1A2A58115BEFE3900000002 /* __TulsiTestRunner_Release */, ); @@ -9575,32 +10501,32 @@ 84EFF5085F91827A00000000 /* Build configuration list for PBXNativeTarget "_idx_image_gl_context_gpu_buffer_multi_pool_99A08626_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000C /* Debug */, - C1A2A581215C43D60000000C /* Release */, + C1A2A5811882E1BB0000001B /* Debug */, + C1A2A581215C43D60000001B /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5086042AB7700000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000059 /* Debug */, - C1A2A581215C43D600000059 /* Release */, + C1A2A5811882E1BB0000005F /* Debug */, + C1A2A581215C43D60000005F /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508626F7F6F00000000 /* Build configuration list for PBXNativeTarget "_idx_image_frame_graph_tracer_4E004B23_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000004 /* Debug */, - C1A2A581215C43D600000004 /* Release */, + C1A2A5811882E1BB00000008 /* Debug */, + C1A2A581215C43D600000008 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5086673135900000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_cv_pixel_buffer_gl_texture_buffer_gl_texture_buffer_pool_gl_texture_view_gpu_buffer_0402C5B7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000013 /* Debug */, - C1A2A581215C43D600000013 /* Release */, + C1A2A5811882E1BB00000020 /* Debug */, + C1A2A581215C43D600000020 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -9612,151 +10538,23 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF50867F6D39600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min11.0" */ = { + 84EFF50867D1B86E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_calculator_contract_fill_packet_set_graph_service_manager_input_side_packet_handler_input_stream_manager_input_stream_shard_node_output_side_packet_impl_output_stream_shar_etc_0921A8EE_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000005C /* Debug */, - C1A2A581215C43D60000005C /* Release */, + C1A2A5811882E1BB00000015 /* Debug */, + C1A2A581215C43D600000015 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5086B31487A00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_7905855A_ios_min11.0" */ = { + 84EFF50867F6D39600000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_metal_9450E505_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001F /* Debug */, - C1A2A581215C43D60000001F /* Release */, + C1A2A5811882E1BB00000062 /* Debug */, + C1A2A581215C43D600000062 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005F /* Debug */, - C1A2A581215C43D60000005F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000030 /* Debug */, - C1A2A581215C43D600000030 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50871BCBA0600000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000044 /* Debug */, - C1A2A581215C43D600000044 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000054 /* Debug */, - C1A2A581215C43D600000054 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508739EFB5E00000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000050 /* Debug */, - C1A2A581215C43D600000050 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000021 /* Debug */, - C1A2A581215C43D600000021 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000005B /* Debug */, - C1A2A581215C43D60000005B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000031 /* Debug */, - C1A2A581215C43D600000031 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50880B9102700000000 /* Build configuration list for PBXNativeTarget "_idx_immediate_input_stream_handler_default_input_stream_handler_fixed_size_input_stream_handler_EDD516E8_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000051 /* Debug */, - C1A2A581215C43D600000051 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50882F3329000000000 /* 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_87112A87_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006F /* Debug */, - C1A2A581215C43D60000006F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50883769D1F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000002A /* Debug */, - C1A2A581215C43D60000002A /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000008 /* Debug */, - C1A2A581215C43D600000008 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF50889D7C38200000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004D /* Debug */, - C1A2A581215C43D60000004D /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000020 /* Debug */, - C1A2A581215C43D600000020 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000001B /* Debug */, - C1A2A581215C43D60000001B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000012 /* Debug */, - C1A2A581215C43D600000012 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000065 /* Debug */, @@ -9764,31 +10562,31 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508912983F900000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min15.5" */ = { + 84EFF5086FD1C2A400000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000010 /* Debug */, - C1A2A581215C43D600000010 /* Release */, + C1A2A5811882E1BB0000003F /* Debug */, + C1A2A581215C43D60000003F /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5089320C55E00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5" */ = { + 84EFF50871BCBA0600000000 /* Build configuration list for PBXNativeTarget "_idx_image_opencv_9E4E8A87_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000063 /* Debug */, - C1A2A581215C43D600000063 /* Release */, + C1A2A5811882E1BB00000052 /* Debug */, + C1A2A581215C43D600000052 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF50896E542FC00000000 /* Build configuration list for PBXNativeTarget "_idx_util_fill_packet_set_node_packet_46C4C02A_ios_min15.5" */ = { + 84EFF508734E4FE900000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000F /* Debug */, - C1A2A581215C43D60000000F /* Release */, + C1A2A5811882E1BB0000001D /* Debug */, + C1A2A581215C43D60000001D /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */ = { + 84EFF508735E8FC000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000002B /* Debug */, @@ -9796,15 +10594,95 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF508981699FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0" */ = { + 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000066 /* Debug */, - C1A2A581215C43D600000066 /* Release */, + C1A2A5811882E1BB00000029 /* Debug */, + C1A2A581215C43D600000029 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */ = { + 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000061 /* Debug */, + C1A2A581215C43D600000061 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5087AB0E97E00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000003D /* Debug */, + C1A2A581215C43D60000003D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50882F3329000000000 /* 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_87112A87_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000073 /* Debug */, + C1A2A581215C43D600000073 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50883769D1F00000000 /* Build configuration list for PBXNativeTarget "_idx_gl_simple_shaders_CB7AD146_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000039 /* Debug */, + C1A2A581215C43D600000039 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000030 /* Debug */, + C1A2A581215C43D600000030 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50883C6DEA900000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000A /* Debug */, + C1A2A581215C43D60000000A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF50889D7C38200000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000058 /* Debug */, + C1A2A581215C43D600000058 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000002E /* Debug */, + C1A2A581215C43D60000002E /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5088CF1146C00000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000017 /* Debug */, + C1A2A581215C43D600000017 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5088E413F3200000000 /* Build configuration list for PBXNativeTarget "_idx_gpu_buffer_storage_gpu_buffer_format_06E221FF_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000001F /* Debug */, + C1A2A581215C43D60000001F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB00000069 /* Debug */, @@ -9812,63 +10690,79 @@ ); defaultConfigurationIsVisible = 0; }; - 84EFF5089B3F34A800000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_registration_ret_check_status_status_util_threadpool_156DBF0B_ios_min11.0" */ = { + 84EFF5089778129500000000 /* Build configuration list for PBXNativeTarget "_idx_gl_calculator_helper_DC51F13C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000007 /* Debug */, - C1A2A581215C43D600000007 /* Release */, + C1A2A5811882E1BB0000003A /* Debug */, + C1A2A581215C43D60000003A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508981699FA00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000006A /* Debug */, + C1A2A581215C43D60000006A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF5089A5E8EAF00000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_landmarks_calculator_tensors_to_floats_calculator_717D4ABA_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000006D /* Debug */, + C1A2A581215C43D60000006D /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5089DA663AF00000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000027 /* Debug */, - C1A2A581215C43D600000027 /* Release */, + C1A2A5811882E1BB00000037 /* Debug */, + C1A2A581215C43D600000037 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001E /* Debug */, - C1A2A581215C43D60000001E /* Release */, + C1A2A5811882E1BB00000028 /* Debug */, + C1A2A581215C43D600000028 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF5089F87702200000000 /* Build configuration list for PBXNativeTarget "_idx_shader_util_C047EBB4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000033 /* Debug */, - C1A2A581215C43D600000033 /* Release */, + C1A2A5811882E1BB0000003E /* Debug */, + C1A2A581215C43D60000003E /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */ = { + 84EFF508A3588D7D00000000 /* Build configuration list for PBXNativeTarget "_idx_topologicalsorter_clock_counter_factory_registration_ret_check_status_status_util_threadpool_F8EEF144_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000003C /* Debug */, - C1A2A581215C43D60000003C /* Release */, + C1A2A5811882E1BB00000009 /* Debug */, + C1A2A581215C43D600000009 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */ = { + 84EFF508A58E44BE00000000 /* Build configuration list for PBXNativeTarget "_idx_validated_graph_config_calculator_base_calculator_context_calculator_context_manager_calculator_state_legacy_calculator_support_29D781EE_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000011 /* Debug */, - C1A2A581215C43D600000011 /* Release */, + C1A2A5811882E1BB00000013 /* Debug */, + C1A2A581215C43D600000013 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508B2289D2600000000 /* 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_A7BDE743_ios_min11.0" */ = { + 84EFF508A90E0DE000000000 /* Build configuration list for PBXNativeTarget "_idx_scheduler_queue_364511B6_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000047 /* Debug */, - C1A2A581215C43D600000047 /* Release */, + C1A2A5811882E1BB00000034 /* Debug */, + C1A2A581215C43D600000034 /* Release */, ); defaultConfigurationIsVisible = 0; }; - 84EFF508B2EE11E100000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min11.0" */ = { + 84EFF508A9596AF100000000 /* Build configuration list for PBXNativeTarget "_idx_output_stream_manager_calculator_node_default_input_stream_handler_fixed_size_input_stream_handler_graph_output_stream_immediate_input_stream_handler_input_stream_handler_outpu_etc_920957D4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000001C /* Debug */, @@ -9876,19 +10770,51 @@ ); defaultConfigurationIsVisible = 0; }; + 84EFF508AB21E79200000000 /* Build configuration list for PBXNativeTarget "_idx_validate_name_callback_packet_calculator_delegating_executor_executor_image_to_tensor_utils_name_util_options_field_util_options_registry_options_syntax_util_options_util_packe_etc_97F9AA54_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000004 /* Debug */, + C1A2A581215C43D600000004 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000049 /* Debug */, + C1A2A581215C43D600000049 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508ADC0634800000000 /* Build configuration list for PBXNativeTarget "_idx_registration_token_gpuimagemath_gpuimageutil_ref_2A6F224E_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000001A /* Debug */, + C1A2A581215C43D60000001A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508B2EE11E100000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000026 /* Debug */, + C1A2A581215C43D600000026 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; 84EFF508B71D3E1900000000 /* Build configuration list for PBXNativeTarget "_idx_inference_calculator_interface_inference_calculator_cpu_EC7FC897_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000056 /* Debug */, - C1A2A581215C43D600000056 /* Release */, + C1A2A5811882E1BB0000005C /* Debug */, + C1A2A581215C43D60000005C /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508B760D34B00000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalHelper_D24F76A1_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000018 /* Debug */, - C1A2A581215C43D600000018 /* Release */, + C1A2A5811882E1BB00000024 /* Debug */, + C1A2A581215C43D600000024 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -9901,24 +10827,24 @@ 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000064 /* Debug */, - C1A2A581215C43D600000064 /* Release */, + C1A2A5811882E1BB00000068 /* Debug */, + C1A2A581215C43D600000068 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508BE819FF200000000 /* Build configuration list for PBXNativeTarget "_idx_MPPMetalUtil_455751A0_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001D /* Debug */, - C1A2A581215C43D60000001D /* Release */, + C1A2A5811882E1BB00000027 /* Debug */, + C1A2A581215C43D600000027 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000025 /* Debug */, - C1A2A581215C43D600000025 /* Release */, + C1A2A5811882E1BB00000032 /* Debug */, + C1A2A581215C43D600000032 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -9935,16 +10861,24 @@ 84EFF508CA95FAFE00000000 /* Build configuration list for PBXNativeTarget "_idx_tensor_7303F5EA_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000049 /* Debug */, - C1A2A581215C43D600000049 /* Release */, + C1A2A5811882E1BB00000055 /* Debug */, + C1A2A581215C43D600000055 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508CF55CF1A00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_calculator_graph_header_util_CF5B401B_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000033 /* Debug */, + C1A2A581215C43D600000033 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000038 /* Debug */, - C1A2A581215C43D600000038 /* Release */, + C1A2A5811882E1BB00000046 /* Debug */, + C1A2A581215C43D600000046 /* Release */, ); defaultConfigurationIsVisible = 0; }; @@ -9959,148 +10893,36 @@ 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000022 /* Debug */, - C1A2A581215C43D600000022 /* Release */, + C1A2A5811882E1BB0000002F /* Debug */, + C1A2A581215C43D60000002F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508D5E19DD800000000 /* Build configuration list for PBXNativeTarget "_idx_timestamp_collection_item_id_cpu_util_file_helpers_05C0AA73_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000006 /* Debug */, + C1A2A581215C43D600000006 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002E /* Debug */, - C1A2A581215C43D60000002E /* Release */, + C1A2A5811882E1BB00000041 /* Debug */, + C1A2A581215C43D600000041 /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508D94DA60100000000 /* Build configuration list for PBXNativeTarget "_idx_tensors_to_detections_calculator_39B944A4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000067 /* Debug */, - C1A2A581215C43D600000067 /* Release */, + C1A2A5811882E1BB0000006B /* Debug */, + C1A2A581215C43D60000006B /* Release */, ); defaultConfigurationIsVisible = 0; }; 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000003F /* Debug */, - C1A2A581215C43D60000003F /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000042 /* Debug */, - C1A2A581215C43D600000042 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000017 /* Debug */, - C1A2A581215C43D600000017 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DBA80DDD00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006C /* Debug */, - C1A2A581215C43D60000006C /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DBB67FD700000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000032 /* Debug */, - C1A2A581215C43D600000032 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DC4A836900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000048 /* Debug */, - C1A2A581215C43D600000048 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DC607B3500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000000B /* Debug */, - C1A2A581215C43D60000000B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000052 /* Debug */, - C1A2A581215C43D600000052 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E0B95D0800000000 /* 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_87112A87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000006E /* Debug */, - C1A2A581215C43D60000006E /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E0BB30A300000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000046 /* Debug */, - C1A2A581215C43D600000046 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000036 /* Debug */, - C1A2A581215C43D600000036 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000024 /* Debug */, - C1A2A581215C43D600000024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000028 /* Debug */, - C1A2A581215C43D600000028 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508F2ECBE8B00000000 /* 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_A7BDE743_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB0000004B /* Debug */, - C1A2A581215C43D60000004B /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C1A2A5811882E1BB00000040 /* Debug */, - C1A2A581215C43D600000040 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - 84EFF508FA3A52CA00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( C1A2A5811882E1BB0000004E /* Debug */, @@ -10108,11 +10930,131 @@ ); defaultConfigurationIsVisible = 0; }; + 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000050 /* Debug */, + C1A2A581215C43D600000050 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DB9B2BF000000000 /* Build configuration list for PBXNativeTarget "_idx_file_path_E61EA0A1_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000007 /* Debug */, + C1A2A581215C43D600000007 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DBA80DDD00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000070 /* Debug */, + C1A2A581215C43D600000070 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DBB67FD700000000 /* Build configuration list for PBXNativeTarget "_idx_image_properties_calculator_gpu_service_56DC0B61_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000035 /* Debug */, + C1A2A581215C43D600000035 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DC4A836900000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_opencv_22266321_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000056 /* Debug */, + C1A2A581215C43D600000056 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DC607B3500000000 /* Build configuration list for PBXNativeTarget "_idx_MPPGraphGPUData_39C9C70C_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000012 /* Debug */, + C1A2A581215C43D600000012 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508DF63089600000000 /* Build configuration list for PBXNativeTarget "_idx_in_order_output_stream_handler_graph_profiler_real_CE40ED18_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000000D /* Debug */, + C1A2A581215C43D60000000D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508E0B95D0800000000 /* 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_87112A87_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000072 /* Debug */, + C1A2A581215C43D600000072 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508E0BB30A300000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_calculator_FF109E68_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000054 /* Debug */, + C1A2A581215C43D600000054 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000044 /* Debug */, + C1A2A581215C43D600000044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000031 /* Debug */, + C1A2A581215C43D600000031 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508EE0A722C00000000 /* Build configuration list for PBXNativeTarget "_idx_location_image_frame_opencv_D6F50F87_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB00000038 /* Debug */, + C1A2A581215C43D600000038 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000002D /* Debug */, + C1A2A581215C43D60000002D /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000004F /* Debug */, + C1A2A581215C43D60000004F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 84EFF508FA3A52CA00000000 /* Build configuration list for PBXNativeTarget "_idx_image_to_tensor_converter_metal_4060E9DC_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1A2A5811882E1BB0000005A /* Debug */, + C1A2A581215C43D60000005A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; 84EFF508FD0C7ADF00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_calculator_end_loop_calculator_38D3CDB2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000006D /* Debug */, - C1A2A581215C43D60000006D /* Release */, + C1A2A5811882E1BB00000071 /* Debug */, + C1A2A581215C43D600000071 /* Release */, ); defaultConfigurationIsVisible = 0; }; 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 index c7bc61eddfe6c7885b3f6352d8089863fd28bf53..c9fe55e5ed21bb55947690e33ba75929ea454080 100644 GIT binary patch delta 6831 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 delta 6596 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 W=3DMt@jM|XkvlDo+-t7BmH!7X0Kbd? 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 index 89ecced6a..d7f713a59 100644 --- 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 @@ -1,29 +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 index 471ecfc6f..8d3374b12 100644 --- 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 @@ -2,915 +2,1107 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + \ 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 index 3ab3ee6e5..c79e4e91f 100644 --- 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 @@ -2,26 +2,26 @@ - - + + - + - + - + - + - + - +