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 f32487294..97d10fe35 100644 Binary files a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate and b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/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 c7bc61edd..c9fe55e5e 100644 Binary files a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate and b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.xcworkspace/xcuserdata/wangrenzhu.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/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 @@ - - + + - + - + - + - + - + - +