diff --git a/mediapipe/render/core/BUILD b/mediapipe/render/core/BUILD index 6786e2da7..185e24fb1 100644 --- a/mediapipe/render/core/BUILD +++ b/mediapipe/render/core/BUILD @@ -145,6 +145,9 @@ OLARENDER_SRCS = [ "GaussianBlurMonoFilter.cpp", "LUTFilter.cpp", "OlaContext.cpp", + "OlaYUVTexture.cpp", + "OlaYUVTexture420P.cpp", + "OlaCameraSource.cpp", ] @@ -174,6 +177,9 @@ OLARENDER_HDRS = [ "GaussianBlurMonoFilter.hpp", "LUTFilter.hpp", "OlaContext.hpp", + "OlaYUVTexture.hpp", + "OlaYUVTexture420P.hpp", + "OlaCameraSource.hpp", ] diff --git a/mediapipe/render/core/OlaCameraSource.cpp b/mediapipe/render/core/OlaCameraSource.cpp new file mode 100644 index 000000000..8d8d0236b --- /dev/null +++ b/mediapipe/render/core/OlaCameraSource.cpp @@ -0,0 +1,183 @@ +#include "OlaCameraSource.hpp" +#include "Context.hpp"" +#if defined(__APPLE__) +#import +#endif + +using namespace Opipe; + +namespace Opipe +{ + +OlaCameraSource::OlaCameraSource(Context *context, SourceType sourceType) : SourceCamera(context) +{ + _sourceType = sourceType; + _lastIOSurface = -1; + + switch (_sourceType) + { + case SourceType_RGBA: + _yuvTexture = nullptr; + break; + case SourceType_YUV420SP: + _yuvTexture = OlaYUVTexture::create(context); + break; + case SourceType_YUV420P: + _yuvTexture = OlaYUVTexture420P::create(context); + break; + default: + break; + } + if (_yuvTexture) { + addTarget(_yuvTexture); + } +} + +OlaCameraSource::~OlaCameraSource() +{ + if (_yuvTexture) + { + _yuvTexture->removeAllTargets(); + _yuvTexture->release(); + _yuvTexture = nullptr; + } +} + +void OlaCameraSource::setFrameData(int width, + int height, + const void *pixels, + GLenum type, + GLuint texture, + RotationMode outputRotation, + SourceType sourceType, + const void *upixels, + const void *vpixels, + bool keep_white) +{ + if (_sourceType != sourceType) + { + _sourceType = sourceType; + if (_yuvTexture) + { + _yuvTexture->removeAllTargets(); + _yuvTexture->release(); + _yuvTexture = nullptr; + } + + removeAllTargets(); + + switch (_sourceType) + { + case SourceType_RGBA: + _yuvTexture = nullptr; + break; + case SourceType_YUV420SP: + _yuvTexture = new OlaYUVTexture(_context); + break; + case SourceType_YUV420P: + _yuvTexture = new OlaYUVTexture420P(_context); + break; + default: + break; + } + if (_yuvTexture) { + addTarget(_yuvTexture); + } + } + + SourceCamera::setFrameData(width, height, pixels, type, texture, + outputRotation, sourceType, + upixels, vpixels, keep_white); +} + +OlaCameraSource* OlaCameraSource::create(Context *context) +{ + return new OlaCameraSource(context); +} + +Source* OlaCameraSource::addTarget(Target *target) +{ + if (_yuvTexture && target != _yuvTexture) + { + return _yuvTexture->addTarget(target); + } + return SourceCamera::addTarget(target); +} + +#if defined(__APPLE__) +void OlaCameraSource::setIORenderTexture(IOSurfaceID surfaceID, + GLuint texture, + int width, + int height, + RotationMode outputRotation, + SourceType sourceType, + const TextureAttributes textureAttributes) +{ + // iOS 版不支持切换格式 要么RGBA 要么YUV420F + _sourceType = sourceType; + if (sourceType == SourceType_RGBA) { + SourceCamera::setIORenderTexture(surfaceID, texture, width, height, + outputRotation, sourceType, textureAttributes); + } else { + if (surfaceID != _lastIOSurface) { + // surfaceID 变了需要重新创建Framebuffer + _bindIOSurfaceToTexture(surfaceID); + _lastIOSurface = surfaceID; + } + setFramebuffer(_framebuffer, outputRotation); + } +} + +void OlaCameraSource::_bindIOSurfaceToTexture(int iosurface, RotationMode outputRotation) +{ + IOSurfaceRef surface = IOSurfaceLookup(iosurface); + int width = (int)IOSurfaceGetWidth(surface); + int height = (int)IOSurfaceGetHeight(surface); + if (surface) + { + if (_UVFrameBuffer == nullptr) { + _UVFrameBuffer = _context->getFramebufferCache()-> + fetchFramebuffer(_context, width * 0.5, height * 0.5, true); + } + EAGLContext *eglContext = _context->getEglContext(); + if (_UVFrameBuffer) { + _UVFrameBuffer->active(); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, + GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, + GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + + BOOL rs = [eglContext texImageIOSurface:surface target:GL_TEXTURE_2D internalFormat:GL_LUMINANCE_ALPHA + width:width * 0.5 height:height * 0.5 format:GL_LUMINANCE_ALPHA type:GL_UNSIGNED_BYTE plane:1]; + if (rs) { + Log("Opipe", "IOSurface 绑定UV Texture 成功"); + } + } + + this->setFramebuffer(nullptr); + Framebuffer* framebuffer = _context->getFramebufferCache()->fetchFramebuffer(_context, width, height, true); + + this->setFramebuffer(framebuffer, outputRotation); + + _framebuffer->active(); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, + GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, + GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + BOOL rs = [eglContext texImageIOSurface:surface target:GL_TEXTURE_2D internalFormat:GL_LUMINANCE + width:width height:height format:GL_LUMINANCE type:GL_UNSIGNED_BYTE plane:0]; + if (rs) { + Log("Opipe", "IOSurface 绑定Y Texture 成功"); + } + + } +} + + + +#endif +} diff --git a/mediapipe/render/core/OlaCameraSource.hpp b/mediapipe/render/core/OlaCameraSource.hpp new file mode 100644 index 000000000..b7865aea2 --- /dev/null +++ b/mediapipe/render/core/OlaCameraSource.hpp @@ -0,0 +1,74 @@ +#ifndef OlaCameraSource_hpp +#define OlaCameraSource_hpp + +#include "SourceCamera.hpp" +#include "OlaYUVTexture.hpp" +#include "OlaYUVTexture420P.hpp" +#include "Framebuffer.hpp" + +#if defined(__APPLE__) +#import +#import +#import +#elif defined(__ANDROID__) || defined(ANDROID) +#if defined(__ANDROID__) || defined(ANDROID) +// for EGL calls +#define EGL_EGLEXT_PROTOTYPES +#include "EGL/egl.h" +#include "EGL/eglext.h" +#include "GLES/gl.h" +#define GL_GLEXT_PROTOTYPES +#include "GLES/glext.h" +#include "android/hardware_buffer.h" + +#endif +#endif + +using namespace Opipe; +namespace Opipe +{ + class OlaCameraSource : public SourceCamera + { + private: + Filter *_yuvTexture = nullptr; + SourceType _sourceType; + int _lastIOSurface = -1; + #if defined(__APPLE__) + void _bindIOSurfaceToTexture(int iosurface, RotationMode outputRotation = RotationMode::NoRotation); + #endif + + public: + OlaCameraSource(Context *context, SourceType sourceType = SourceType_RGBA); + virtual ~OlaCameraSource(); + static OlaCameraSource *create(Context *context); + + public: + + virtual void setFrameData(int width, + int height, + const void* pixels, + GLenum type, + GLuint texture, + RotationMode outputRotation = RotationMode::NoRotation, + SourceType sourceType = SourceType_RGBA, + const void* upixels = NULL, + const void* vpixels = NULL, + bool keep_white = false) override; + + #if defined(__APPLE__) + virtual void setIORenderTexture(IOSurfaceID surfaceID, + GLuint texture, + int width, + int height, + Opipe::RotationMode outputRotation = RotationMode::NoRotation, + SourceType sourceType = SourceType_RGBA, + const TextureAttributes textureAttributes = Framebuffer::defaultTextureAttribures) override; + #endif + // 获取相机渲染后缩小的Framebuffer + Framebuffer* getScaleFramebuffer(); + + virtual Opipe::Source* addTarget(Opipe::Target* target) override; + + }; +} +#endif diff --git a/mediapipe/render/core/OlaShareTextureFilter.hpp b/mediapipe/render/core/OlaShareTextureFilter.hpp index 019641675..353a72f83 100644 --- a/mediapipe/render/core/OlaShareTextureFilter.hpp +++ b/mediapipe/render/core/OlaShareTextureFilter.hpp @@ -25,6 +25,7 @@ namespace Opipe { GLuint targetTextureId; + public: OlaShareTextureFilter(Opipe::Context *context); virtual ~OlaShareTextureFilter() noexcept; diff --git a/mediapipe/render/core/OlaYUVTexture.cpp b/mediapipe/render/core/OlaYUVTexture.cpp new file mode 100644 index 000000000..7122803e0 --- /dev/null +++ b/mediapipe/render/core/OlaYUVTexture.cpp @@ -0,0 +1,85 @@ +#include "OlaYUVTexture.hpp" + +NS_GI_BEGIN + +#if defined(__APPLE__) +const std::string kYUVTextureFragmentShaderString = SHADER_STRING +( + varying highp vec2 vTexCoord; + + varying highp vec2 vTexCoord1; + + uniform sampler2D colorMap; + uniform sampler2D colorMap1; + void main() +{ + mediump vec3 yuv; + lowp vec3 rgb; + + yuv.x = texture2D(colorMap, vTexCoord).r; + yuv.yz = texture2D(colorMap1, vTexCoord1).ra - vec2(0.5, 0.5); + + rgb = mat3( 1.0, 1.0, 1.0, + 0.0, -0.343, 1.765, + 1.4, -0.711, 0.0) * yuv; + + gl_FragColor = vec4(rgb, 1); +} +); + +#else +//ITU-R BT.601 conversion +//R = 1.164*(Y-16) + 2.018*(Cr-128); +//G = 1.164*(Y-16) - 0.813*(Cb-128) - 0.391*(Cr-128); +//B = 1.164*(Y-16) + 1.596*(Cb-128); +const std::string kYUVTextureFragmentShaderString = SHADER_STRING +( + precision mediump float; + varying highp vec2 vTexCoord; + varying highp vec2 vTexCoord1; + + + uniform sampler2D colorMap; + uniform sampler2D colorMap1; + + void main() + { + vec4 y = vec4((texture2D(colorMap, vTexCoord).r - 16./255.) * 1.164); + vec4 u = vec4(texture2D(colorMap1, vTexCoord1).a - 128./255.); + vec4 v = vec4(texture2D(colorMap1, vTexCoord1).r - 128./255.); + y += v * vec4(1.596, -0.813, 0, 0); + y += u * vec4(0, -0.392, 2.017, 0); + y.a = 1.0; + + gl_FragColor = vec4(y.rgb, 1); + } +); + +#endif + +OlaYUVTexture::OlaYUVTexture(Context *context) : Filter(context) { + +} + +OlaYUVTexture::~OlaYUVTexture() { + +} + +OlaYUVTexture* OlaYUVTexture::create(Context *context) +{ + OlaYUVTexture* ret = new (std::nothrow)OlaYUVTexture(context); + if (!ret || !ret->init(context)) { + delete ret; + ret = 0; + } + return ret; +} + +bool OlaYUVTexture::init(Context *context) { + if (!Opipe::Filter::initWithFragmentShaderString(context, kYUVTextureFragmentShaderString, 2)) { + return false; + } + return true; +} + +NS_GI_END diff --git a/mediapipe/render/core/OlaYUVTexture.hpp b/mediapipe/render/core/OlaYUVTexture.hpp new file mode 100644 index 000000000..5443c54f8 --- /dev/null +++ b/mediapipe/render/core/OlaYUVTexture.hpp @@ -0,0 +1,17 @@ +#ifndef Ola_YUVTexture_hpp +#define Ola_YUVTexture_hpp + +#include "Filter.hpp" + +NS_GI_BEGIN +class OlaYUVTexture : public Opipe::Filter { +public: + static OlaYUVTexture* create(Opipe::Context *context); + bool init(Opipe::Context *context); +public: + ~OlaYUVTexture(); + OlaYUVTexture(Opipe::Context *context); + Opipe::Context *_context; +}; +NS_GI_END +#endif /* Ola_YUVTexture_hpp */ diff --git a/mediapipe/render/core/OlaYUVTexture420P.cpp b/mediapipe/render/core/OlaYUVTexture420P.cpp new file mode 100644 index 000000000..ce18daec2 --- /dev/null +++ b/mediapipe/render/core/OlaYUVTexture420P.cpp @@ -0,0 +1,87 @@ +#include "OlaYUVTexture420P.hpp" + +NS_GI_BEGIN + +#if defined(__APPLE__) +const std::string kYUVTextureFragmentShaderString = SHADER_STRING +( + varying highp vec2 vTexCoord; + varying highp vec2 vTexCoord1; + varying highp vec2 vTexCoord2; + uniform sampler2D colorMap; + uniform sampler2D colorMap1; + uniform sampler2D colorMap2; + void main() +{ + mediump vec3 yuv; + lowp vec3 rgb; + + yuv.x = texture2D(colorMap, vTexCoord).r; + yuv.y = texture2D(colorMap1, vTexCoord1).a - 0.5; + yuv.z = texture2D(colorMap2, vTexCoord2).a - 0.5; + + rgb = mat3( 1.0, 1.0, 1.0, + 0.0, -0.343, 1.765, + 1.4, -0.711, 0.0) * yuv; + + gl_FragColor = vec4(rgb, 1); +} + ); + +#else +//ITU-R BT.601 conversion +//R = 1.164*(Y-16) + 2.018*(Cr-128); +//G = 1.164*(Y-16) - 0.813*(Cb-128) - 0.391*(Cr-128); +//B = 1.164*(Y-16) + 1.596*(Cb-128); +const std::string kYUVTextureFragmentShaderString = SHADER_STRING +( + precision mediump float; + varying highp vec2 vTexCoord; + varying highp vec2 vTexCoord1; + varying highp vec2 vTexCoord2; + + uniform sampler2D colorMap; + uniform sampler2D colorMap1; + uniform sampler2D colorMap2; + + void main() + { + vec4 y = vec4((texture2D(colorMap, vTexCoord).r - 16./255.) * 1.164); + vec4 u = vec4(texture2D(colorMap1, vTexCoord1).r - 128./255.); + vec4 v = vec4(texture2D(colorMap2, vTexCoord2).r - 128./255.); + y += v * vec4(1.596, -0.813, 0, 0); + y += u * vec4(0, -0.392, 2.017, 0); + y.a = 1.0; + + gl_FragColor = vec4(y.rgb, 1); + } + ); + +#endif + +OlaYUVTexture420P::OlaYUVTexture420P(Context *context) : Filter(context) { + +} + +OlaYUVTexture420P::~OlaYUVTexture420P() { + +} + +OlaYUVTexture420P* OlaYUVTexture420P::create(Context *context) +{ + OlaYUVTexture420P* ret = new (std::nothrow)OlaYUVTexture420P(context); + if (!ret || !ret->init(context)) { + delete ret; + ret = 0; + } + return ret; +} + +bool OlaYUVTexture420P::init(Context *context) { + if (!Opipe::Filter::initWithFragmentShaderString(context, kYUVTextureFragmentShaderString, 3)) { + return false; + } + return true; +} + +NS_GI_END diff --git a/mediapipe/render/core/OlaYUVTexture420P.hpp b/mediapipe/render/core/OlaYUVTexture420P.hpp new file mode 100644 index 000000000..1ba924133 --- /dev/null +++ b/mediapipe/render/core/OlaYUVTexture420P.hpp @@ -0,0 +1,17 @@ +#ifndef OlaYUVTexture420P_hpp +#define OlaYUVTexture420P_hpp + +#include "Filter.hpp" + +NS_GI_BEGIN +class OlaYUVTexture420P : public Opipe::Filter { +public: + static OlaYUVTexture420P* create(Opipe::Context *context); + bool init(Opipe::Context *context); +public: + ~OlaYUVTexture420P(); + OlaYUVTexture420P(Opipe::Context *context); + Opipe::Context *_context; +}; +NS_GI_END +#endif /* OlaYUVTexture420P_hpp */ diff --git a/mediapipe/render/core/SourceCamera.cpp b/mediapipe/render/core/SourceCamera.cpp index 476d8d7b0..eee321a9b 100755 --- a/mediapipe/render/core/SourceCamera.cpp +++ b/mediapipe/render/core/SourceCamera.cpp @@ -81,7 +81,7 @@ void SourceCamera::setIORenderTexture(IOSurfaceID surfaceID, GLuint texture, int width, int height, - GPUImage::RotationMode outputRotation, + Opipe::RotationMode outputRotation, SourceType sourceType, TextureAttributes textureAttributes) { //纹理发生变化,使用新的framebuffer @@ -108,7 +108,7 @@ void SourceCamera::setIORenderTexture(IOSurfaceID surfaceID, // Framebuffer *framebuffer = getContext()->getFramebufferCache()->fetchFramebufferUseTextureId( // _context, width, height, texture); _customTexture = true; - this->setFramebuffer(framebuffer); + this->setFramebuffer(framebuffer, outputRotation); } CHECK_GL(glBindTexture(GL_TEXTURE_2D, this->getFramebuffer()->getTexture())); @@ -142,7 +142,7 @@ void SourceCamera::setRenderTexture(GLuint texture, int width, int height, Framebuffer *framebuffer = getContext()->getFramebufferCache()->fetchFramebufferUseTextureId( _context, width, height, texture); _customTexture = true; - this->setFramebuffer(framebuffer); + this->setFramebuffer(framebuffer, outputRotation); } CHECK_GL(glBindTexture(GL_TEXTURE_2D, this->getFramebuffer()->getTexture())); diff --git a/mediapipe/render/core/SourceCamera.hpp b/mediapipe/render/core/SourceCamera.hpp index ccd82103d..c25443eb0 100755 --- a/mediapipe/render/core/SourceCamera.hpp +++ b/mediapipe/render/core/SourceCamera.hpp @@ -1,5 +1,5 @@ /* - * GPUImage-x + * Opipe-x * * Copyright (C) 2017 Yijin Wang, Yiqian Wang * @@ -16,8 +16,8 @@ * limitations under the License. */ -#ifndef GPUIMAGE_X_SOURCECAMERA_H -#define GPUIMAGE_X_SOURCECAMERA_H +#ifndef Opipe_X_SOURCECAMERA_H +#define Opipe_X_SOURCECAMERA_H #include "Source.hpp" #if defined(__APPLE__) @@ -46,17 +46,17 @@ public: virtual void setRenderTexture(GLuint texture, int width, int height, - GPUImage::RotationMode outputRotation = GPUImage::RotationMode::NoRotation, + Opipe::RotationMode outputRotation = Opipe::RotationMode::NoRotation, SourceType sourceType = SourceType_RGBA, - const GPUImage::TextureAttributes textureAttributes = GPUImage::Framebuffer::defaultTextureAttribures); + const Opipe::TextureAttributes textureAttributes = Opipe::Framebuffer::defaultTextureAttribures); #if defined(__APPLE__) virtual void setIORenderTexture(IOSurfaceID surfaceID, GLuint texture, int width, int height, - GPUImage::RotationMode outputRotation = GPUImage::RotationMode::NoRotation, + Opipe::RotationMode outputRotation = Opipe::RotationMode::NoRotation, SourceType sourceType = SourceType_RGBA, - const GPUImage::TextureAttributes textureAttributes = GPUImage::Framebuffer::defaultTextureAttribures); + const Opipe::TextureAttributes textureAttributes = Opipe::Framebuffer::defaultTextureAttribures); #endif @@ -81,6 +81,6 @@ protected: }; NS_GI_END -#endif //GPUIMAGE_X_SOURCECAMERA_H +#endif //Opipe_X_SOURCECAMERA_H diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc index 3cd0b0d77..e17ced17e 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.cc +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.cc @@ -55,6 +55,14 @@ namespace Opipe delete _inputFramebuffer; _inputFramebuffer = nullptr; } + + if (_source) + { + _source->removeAllTargets(); + _source->release(); + _source = nullptr; + } + _context->getFramebufferCache()->purge(); } @@ -71,9 +79,10 @@ namespace Opipe void FaceMeshBeautyRender::renderTexture(TextureInfo inputTexture) { - if (!_isRendering) { + if (!_isRendering || _source) { return; } + if (!_inputFramebuffer) { _inputFramebuffer = new Framebuffer(_context, inputTexture.width, inputTexture.height, @@ -178,5 +187,10 @@ namespace Opipe } } + void FaceMeshBeautyRender::setInputSource(Source *source) { + source->addTarget(_olaBeautyFilter); + _source = source; + _source->retain(); + } } diff --git a/mediapipe/render/module/beauty/face_mesh_beauty_render.h b/mediapipe/render/module/beauty/face_mesh_beauty_render.h index 0e780ffbe..108833c13 100644 --- a/mediapipe/render/module/beauty/face_mesh_beauty_render.h +++ b/mediapipe/render/module/beauty/face_mesh_beauty_render.h @@ -58,9 +58,15 @@ namespace Opipe { // 瘦鼻 void setNoseFactor(float noseFactor); + + Filter* outputFilter() { + return _outputFilter; + } + void setInputSource(Source *source); private: + Source *_source = nullptr; OlaBeautyFilter *_olaBeautyFilter = nullptr; OlaShareTextureFilter *_outputFilter = nullptr; Framebuffer *_inputFramebuffer = nullptr; diff --git a/mediapipe/render/module/beauty/face_mesh_module.h b/mediapipe/render/module/beauty/face_mesh_module.h index b3dea02de..2289da38d 100644 --- a/mediapipe/render/module/beauty/face_mesh_module.h +++ b/mediapipe/render/module/beauty/face_mesh_module.h @@ -1,6 +1,7 @@ #ifndef OPIPE_FaceMeshModule #define OPIPE_FaceMeshModule #include +#include #include "mediapipe/render/core/OlaContext.hpp" #include "face_mesh_common.h" #if defined(__APPLE__) @@ -14,6 +15,8 @@ namespace Opipe { + class Source; + class Filter; struct OMat { int width = 0; @@ -152,6 +155,12 @@ namespace Opipe int height, int step, int64_t timeStamp) = 0; + + virtual void runInContextSync(std::function func) = 0; + + virtual void setInputSource(Source *source) = 0; + + virtual Filter* getOutputFilter() = 0; }; } #endif diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.cc b/mediapipe/render/module/beauty/face_mesh_module_imp.cc index c0a3ac150..0ffa4c4b6 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.cc +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.cc @@ -258,12 +258,13 @@ namespace Opipe { return; } + } TextureInfo FaceMeshModuleIMP::renderTexture(TextureInfo inputTexture) { TextureInfo textureInfo; - + if (!_isInit) { return textureInfo; @@ -295,4 +296,14 @@ namespace Opipe return textureInfo; } + Filter* FaceMeshModuleIMP::getOutputFilter() + { + return _render->outputFilter(); + } + + void FaceMeshModuleIMP::setInputSource(Source *source) { + _dispatch->runSync([&] { + _render->setInputSource(source); + }); + } } diff --git a/mediapipe/render/module/beauty/face_mesh_module_imp.h b/mediapipe/render/module/beauty/face_mesh_module_imp.h index 168907f54..326f92e60 100644 --- a/mediapipe/render/module/beauty/face_mesh_module_imp.h +++ b/mediapipe/render/module/beauty/face_mesh_module_imp.h @@ -5,6 +5,7 @@ #include "mediapipe/render/core/OpipeDispatch.hpp" #include "mediapipe/framework/formats/landmark.pb.h" #include "mediapipe/render/core/Context.hpp" +#include "mediapipe/render/core/Source.hpp" #include "face_mesh_module.h" #include "face_mesh_beauty_render.h" @@ -136,6 +137,14 @@ namespace Opipe return _dispatch.get(); } + void runInContextSync(std::function func) override { + _dispatch->runSync(func); + } + + virtual void setInputSource(Source *source) override; + + Filter* getOutputFilter() override; + private: std::unique_ptr _dispatch; std::unique_ptr _graph; @@ -145,7 +154,6 @@ namespace Opipe std::shared_ptr _delegate; FaceMeshBeautyRender *_render = nullptr; OlaContext *_olaContext = nullptr; - #if TestTemplateFace SourceImage *_templateFace = nullptr; #endif 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 833ee90de..05ecb3fc0 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 @@ -9,6 +9,7 @@ /* Begin PBXBuildFile section */ 3675CCEC28910DDB00D84244 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3675CC3128910DDB00D84244 /* CoreImage.framework */; }; 369E735D28978A0E001F44F3 /* templateFace.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 369E72EA28978A0E001F44F3 /* templateFace.jpg */; }; + 369E7547289BB59B001F44F3 /* GLRenderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 369E7546289BB59B001F44F3 /* GLRenderViewController.m */; }; 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 */; }; @@ -31,369 +32,397 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 3675CC7028910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7582289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1B38F435A00000000; - remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; + remoteGlobalIDString = 9D1A05183FD54BB400000000; + remoteInfo = _idx_BeautyFilters_A720FDA2_ios_min11.0; }; - 3675CC7228910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7584289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB13FC2509200000000; - remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; + remoteGlobalIDString = 9D1A0518A6381C9400000000; + remoteInfo = _idx_BeautyFilters_A720FDA2_ios_min15.5; }; - 3675CC7428910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7586289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB160EC260800000000; - remoteInfo = _idx_annotation_renderer_8D68840D_ios_min11.0; + remoteGlobalIDString = 9D1A0518B6B5272400000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0; }; - 3675CC7628910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7588289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1CE57CAE800000000; - remoteInfo = _idx_annotation_renderer_8D68840D_ios_min15.5; + remoteGlobalIDString = 9D1A0518C37C73A600000000; + remoteInfo = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5; }; - 3675CC7C28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E758A289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E22D8E4E00000000; - remoteInfo = _idx_cpu_op_resolver_519CBACD_ios_min11.0; + remoteGlobalIDString = 9D1A05189733546E00000000; + remoteInfo = _idx_annotation_overlay_calculator_844088AB_ios_min11.0; }; - 3675CC7E28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E758C289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB135330E2600000000; - remoteInfo = _idx_cpu_op_resolver_519CBACD_ios_min15.5; + remoteGlobalIDString = 9D1A0518DDD8C9DE00000000; + remoteInfo = _idx_annotation_overlay_calculator_844088AB_ios_min15.5; }; - 3675CCA428910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E758E289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1042285A000000000; - remoteInfo = _idx_math_68C63536_ios_min11.0; + remoteGlobalIDString = 9D1A0518B3937F2C00000000; + remoteInfo = _idx_annotation_renderer_78B04092_ios_min11.0; }; - 3675CCA628910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7590289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1D93FD90600000000; - remoteInfo = _idx_math_68C63536_ios_min15.5; + remoteGlobalIDString = 9D1A051892D87F3800000000; + remoteInfo = _idx_annotation_renderer_78B04092_ios_min15.5; }; - 3675CCAC28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7592289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1D6736AD800000000; - remoteInfo = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + remoteGlobalIDString = 9D1A051813CAE71A00000000; + remoteInfo = _idx_begin_loop_calculator_00B2416C_ios_min11.0; }; - 3675CCAE28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7594289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1616461B400000000; - remoteInfo = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; + remoteGlobalIDString = 9D1A0518C149E4D200000000; + remoteInfo = _idx_begin_loop_calculator_00B2416C_ios_min15.5; }; - 3675CCB028910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7596289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB105A13E0A00000000; - remoteInfo = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; + remoteGlobalIDString = 9D1A0518A4931D0C00000000; + remoteInfo = _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0; }; - 3675CCB228910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E7598289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E364A8E800000000; - remoteInfo = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; + remoteGlobalIDString = 9D1A0518BE434D4400000000; + remoteInfo = _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5; }; - 3675CCB428910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E759A289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB152022CF000000000; - remoteInfo = _idx_olamodule_common_library_63E72567_ios_min11.0; + remoteGlobalIDString = 9D1A05185153B35400000000; + remoteInfo = "_idx_core_core-ios_F9E9FB32_ios_min11.0"; }; - 3675CCB628910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E759C289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1DE300BF600000000; - remoteInfo = _idx_olamodule_common_library_63E72567_ios_min15.5; + remoteGlobalIDString = 9D1A051834FB261400000000; + remoteInfo = "_idx_core_core-ios_F9E9FB32_ios_min15.5"; }; - 3675CCB828910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E759E289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB12CA286D000000000; - remoteInfo = _idx_op_resolver_0836C983_ios_min11.0; + remoteGlobalIDString = 9D1A0518B664407200000000; + remoteInfo = _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0; }; - 3675CCBA28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75A0289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB10343A59400000000; - remoteInfo = _idx_op_resolver_0836C983_ios_min15.5; + remoteGlobalIDString = 9D1A05185F35D42400000000; + remoteInfo = _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5; }; - 3675CCC428910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75A2289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E9CE10DC00000000; - remoteInfo = _idx_resource_util_C5C5DB93_ios_min11.0; + remoteGlobalIDString = 9D1A05188627D7BA00000000; + remoteInfo = _idx_cpu_util_10B87B03_ios_min11.0; }; - 3675CCC628910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75A4289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB12E009AA400000000; - remoteInfo = _idx_resource_util_C5C5DB93_ios_min15.5; + remoteGlobalIDString = 9D1A0518F5B9388A00000000; + remoteInfo = _idx_cpu_util_10B87B03_ios_min15.5; }; - 3675CCD028910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75A6289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB17278B65600000000; - remoteInfo = _idx_tflite_model_loader_254BEB33_ios_min11.0; + remoteGlobalIDString = 9D1A0518D63539AE00000000; + remoteInfo = _idx_detection_projection_calculator_1999E439_ios_min11.0; }; - 3675CCD228910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75A8289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB17982938200000000; - remoteInfo = _idx_tflite_model_loader_254BEB33_ios_min15.5; + remoteGlobalIDString = 9D1A05180E1AA60400000000; + remoteInfo = _idx_detection_projection_calculator_1999E439_ios_min15.5; }; - 3675CCD828910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75AA289BB59B001F44F3 /* 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; + remoteGlobalIDString = 9D1A05180ECCEE5400000000; + remoteInfo = _idx_end_loop_calculator_86552B41_ios_min11.0; }; - 3675CCDA28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75AC289BB59B001F44F3 /* 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; + remoteGlobalIDString = 9D1A05189671FDDE00000000; + remoteInfo = _idx_end_loop_calculator_86552B41_ios_min15.5; }; - 3675CCDC28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75AE289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1CAFF3BDC00000000; - remoteInfo = _idx_transpose_conv_bias_E3459F40_ios_min11.0; + remoteGlobalIDString = 9D1A05187BE50ADE00000000; + remoteInfo = _idx_gpuimageutil_F68CBC21_ios_min11.0; }; - 3675CCDE28910DDB00D84244 /* PBXContainerItemProxy */ = { + 369E75B0289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB17C69A2E400000000; - remoteInfo = _idx_transpose_conv_bias_E3459F40_ios_min15.5; + remoteGlobalIDString = 9D1A0518AE1AB07600000000; + remoteInfo = _idx_gpuimageutil_F68CBC21_ios_min15.5; }; - 369E732128978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75B2289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB15656FB7600000000; - remoteInfo = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; + remoteGlobalIDString = 9D1A0518F509679800000000; + remoteInfo = _idx_math_CF33D7F4_ios_min11.0; }; - 369E732328978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75B4289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB15BA3402400000000; - remoteInfo = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; + remoteGlobalIDString = 9D1A05187B60069400000000; + remoteInfo = _idx_math_CF33D7F4_ios_min15.5; }; - 369E732528978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75B6289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1AE45ACD400000000; - remoteInfo = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; + remoteGlobalIDString = 9D1A0518DC58ED3200000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0; }; - 369E732728978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75B8289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB120CC110A00000000; - remoteInfo = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; + remoteGlobalIDString = 9D1A05184881BA4200000000; + remoteInfo = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5; }; - 369E732928978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75BA289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB100939AF800000000; - remoteInfo = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; + remoteGlobalIDString = 9D1A0518D74DCFC000000000; + remoteInfo = _idx_mediapipe_framework_ios_4D298135_ios_min11.0; }; - 369E732B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75BC289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB15FE6FF0200000000; - remoteInfo = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; + remoteGlobalIDString = 9D1A0518E9BFDC3600000000; + remoteInfo = _idx_mediapipe_framework_ios_4D298135_ios_min15.5; }; - 369E732D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75BE289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E922429600000000; - remoteInfo = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; + remoteGlobalIDString = 9D1A051857A288AA00000000; + remoteInfo = _idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0; }; - 369E732F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75C0289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1C9C325FA00000000; - remoteInfo = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; + remoteGlobalIDString = 9D1A05181525E57200000000; + remoteInfo = _idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5; }; - 369E733128978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75C2289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1311D3FFA00000000; - remoteInfo = _idx_cpu_util_C9677097_ios_min11.0; + remoteGlobalIDString = 9D1A0518B292C24E00000000; + remoteInfo = _idx_olamodule_common_library_54ECBB79_ios_min11.0; }; - 369E733328978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75C4289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB16F17AAC200000000; - remoteInfo = _idx_cpu_util_C9677097_ios_min15.5; + remoteGlobalIDString = 9D1A05188E7107A200000000; + remoteInfo = _idx_olamodule_common_library_54ECBB79_ios_min15.5; }; - 369E733528978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75C6289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB126D0D2E600000000; - remoteInfo = _idx_detection_projection_calculator_6C26583E_ios_min11.0; + remoteGlobalIDString = 9D1A05181B2F8A3200000000; + remoteInfo = _idx_op_resolver_E0F4B742_ios_min11.0; }; - 369E733728978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75C8289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1D488EF1800000000; - remoteInfo = _idx_detection_projection_calculator_6C26583E_ios_min15.5; + remoteGlobalIDString = 9D1A0518DB5F819800000000; + remoteInfo = _idx_op_resolver_E0F4B742_ios_min15.5; }; - 369E733928978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75CA289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1D89D727E00000000; - remoteInfo = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + remoteGlobalIDString = 9D1A0518C9DDC88E00000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0; }; - 369E733B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75CC289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB185A9B3FE00000000; - remoteInfo = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + remoteGlobalIDString = 9D1A0518D6C3FC5800000000; + remoteInfo = _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5; }; - 369E733D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75CE289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1C40DE00800000000; - remoteInfo = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; + remoteGlobalIDString = 9D1A0518319E66FE00000000; + remoteInfo = _idx_rectangle_util_F7F3797D_ios_min11.0; }; - 369E733F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75D0289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB179FA7B5A00000000; - remoteInfo = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; + remoteGlobalIDString = 9D1A05181DF1A9C200000000; + remoteInfo = _idx_rectangle_util_F7F3797D_ios_min15.5; }; - 369E734128978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75D2289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E88ABD0C00000000; - remoteInfo = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; + remoteGlobalIDString = 9D1A0518B23B789600000000; + remoteInfo = _idx_ref_gpuimagemath_6E8D4716_ios_min11.0; }; - 369E734328978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75D4289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB12B5DD40E00000000; - remoteInfo = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; + remoteGlobalIDString = 9D1A0518A746B79E00000000; + remoteInfo = _idx_ref_gpuimagemath_6E8D4716_ios_min15.5; }; - 369E734528978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75D6289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB10F69F5F200000000; - remoteInfo = _idx_rectangle_util_BC608102_ios_min11.0; + remoteGlobalIDString = 9D1A051827D99ADA00000000; + remoteInfo = _idx_resource_util_1F0C7A9C_ios_min11.0; }; - 369E734728978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75D8289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1A374D54C00000000; - remoteInfo = _idx_rectangle_util_BC608102_ios_min15.5; + remoteGlobalIDString = 9D1A0518422C40C000000000; + remoteInfo = _idx_resource_util_1F0C7A9C_ios_min15.5; }; - 369E734928978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75DA289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB12E6EE1D200000000; - remoteInfo = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + remoteGlobalIDString = 9D1A05187CDDDF8800000000; + remoteInfo = _idx_split_vector_calculator_EE664713_ios_min11.0; }; - 369E734B28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75DC289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1E3F4AD9A00000000; - remoteInfo = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; + remoteGlobalIDString = 9D1A0518744AC67600000000; + remoteInfo = _idx_split_vector_calculator_EE664713_ios_min15.5; }; - 369E734D28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75DE289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB115B04C8C00000000; - remoteInfo = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; + remoteGlobalIDString = 9D1A0518FC1FDA7A00000000; + remoteInfo = _idx_tflite_model_loader_22B76F2A_ios_min11.0; }; - 369E734F28978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75E0289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1A384020200000000; - remoteInfo = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; + remoteGlobalIDString = 9D1A0518512406DA00000000; + remoteInfo = _idx_tflite_model_loader_22B76F2A_ios_min15.5; }; - 369E735128978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75E2289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB13E6E92F600000000; - remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + remoteGlobalIDString = 9D1A051846C9BCC000000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0; }; - 369E735328978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75E4289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB1F180FE8800000000; - remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + remoteGlobalIDString = 9D1A051802966FD400000000; + remoteInfo = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5; }; - 369E735528978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75E6289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB17384850E00000000; - remoteInfo = _idx_util_C76AD427_ios_min11.0; + remoteGlobalIDString = 9D1A0518972E59FC00000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0; }; - 369E735728978A0E001F44F3 /* PBXContainerItemProxy */ = { + 369E75E8289BB59B001F44F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 6BF2BEB110B1FD6E00000000; - remoteInfo = _idx_util_C76AD427_ios_min15.5; + remoteGlobalIDString = 9D1A05189A6D4D1E00000000; + remoteInfo = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5; + }; + 369E75EA289BB59B001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9D1A0518E03ABFCA00000000; + remoteInfo = _idx_transpose_conv_bias_7C342083_ios_min11.0; + }; + 369E75EC289BB59B001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9D1A05182594A9C400000000; + remoteInfo = _idx_transpose_conv_bias_7C342083_ios_min15.5; + }; + 369E75EE289BB59B001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9D1A051854BA5F7800000000; + remoteInfo = _idx_util_DB4949E7_ios_min11.0; + }; + 369E75F0289BB59B001F44F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9D1A05186ABFADC400000000; + remoteInfo = _idx_util_DB4949E7_ios_min15.5; }; 36B239A428893CEE00A41D9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -448,7 +477,7 @@ isa = PBXContainerItemProxy; containerPortal = 36B23C7F288A7FB600A41D9E /* FaceUnityFramework.xcodeproj */; proxyType = 1; - remoteGlobalIDString = F2FE34CE0C5C7AFE00000000; + remoteGlobalIDString = EDD0A78501748AFE00000000; remoteInfo = OlaFaceUnityFramework; }; /* End PBXContainerItemProxy section */ @@ -471,6 +500,8 @@ /* Begin PBXFileReference section */ 3675CC3128910DDB00D84244 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; }; 369E72EA28978A0E001F44F3 /* templateFace.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = templateFace.jpg; sourceTree = ""; }; + 369E7545289BB59B001F44F3 /* GLRenderViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GLRenderViewController.h; sourceTree = ""; }; + 369E7546289BB59B001F44F3 /* GLRenderViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GLRenderViewController.m; sourceTree = ""; }; 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 = ""; }; @@ -550,6 +581,8 @@ 36B23947288934B200A41D9E /* LaunchScreen.storyboard */, 36B2394A288934B200A41D9E /* Info.plist */, 36B2394B288934B200A41D9E /* main.m */, + 369E7545289BB59B001F44F3 /* GLRenderViewController.h */, + 369E7546289BB59B001F44F3 /* GLRenderViewController.m */, ); path = OpipeBeautyModuleExample; sourceTree = ""; @@ -584,58 +617,62 @@ isa = PBXGroup; children = ( 36B23CD0288A7FB600A41D9E /* OlaFaceUnityFramework.framework */, - 3675CC7128910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */, - 3675CC7328910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */, - 369E732228978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */, - 369E732428978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */, - 3675CC7528910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */, - 3675CC7728910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */, - 369E732628978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */, - 369E732828978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */, - 369E732A28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */, - 369E732C28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */, - 369E732E28978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */, - 369E733028978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_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 */, - 369E733228978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */, - 369E733428978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */, - 369E733628978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */, - 369E733828978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */, - 369E733A28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */, - 369E733C28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */, - 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */, - 3675CCA728910DDB00D84244 /* lib_idx_math_68C63536_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 */, - 369E733E28978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */, - 369E734028978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_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 */, - 369E734228978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */, - 369E734428978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */, - 369E734628978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */, - 369E734828978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */, - 369E734A28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */, - 369E734C28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */, - 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, - 3675CCC728910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, - 369E734E28978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */, - 369E735028978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_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 */, - 369E735228978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */, - 369E735428978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_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 */, - 369E735628978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min11.0.a */, - 369E735828978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min15.5.a */, + 369E7583289BB59B001F44F3 /* lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a */, + 369E7585289BB59B001F44F3 /* lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a */, + 369E7587289BB59B001F44F3 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a */, + 369E7589289BB59B001F44F3 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a */, + 369E758B289BB59B001F44F3 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a */, + 369E758D289BB59B001F44F3 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a */, + 369E758F289BB59B001F44F3 /* lib_idx_annotation_renderer_78B04092_ios_min11.0.a */, + 369E7591289BB59B001F44F3 /* lib_idx_annotation_renderer_78B04092_ios_min15.5.a */, + 369E7593289BB59B001F44F3 /* lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a */, + 369E7595289BB59B001F44F3 /* lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a */, + 369E7597289BB59B001F44F3 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a */, + 369E7599289BB59B001F44F3 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a */, + 369E759B289BB59B001F44F3 /* lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a */, + 369E759D289BB59B001F44F3 /* lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a */, + 369E759F289BB59B001F44F3 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a */, + 369E75A1289BB59B001F44F3 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a */, + 369E75A3289BB59B001F44F3 /* lib_idx_cpu_util_10B87B03_ios_min11.0.a */, + 369E75A5289BB59B001F44F3 /* lib_idx_cpu_util_10B87B03_ios_min15.5.a */, + 369E75A7289BB59B001F44F3 /* lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a */, + 369E75A9289BB59B001F44F3 /* lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a */, + 369E75AB289BB59B001F44F3 /* lib_idx_end_loop_calculator_86552B41_ios_min11.0.a */, + 369E75AD289BB59B001F44F3 /* lib_idx_end_loop_calculator_86552B41_ios_min15.5.a */, + 369E75AF289BB59B001F44F3 /* lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a */, + 369E75B1289BB59B001F44F3 /* lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a */, + 369E75B3289BB59B001F44F3 /* lib_idx_math_CF33D7F4_ios_min11.0.a */, + 369E75B5289BB59B001F44F3 /* lib_idx_math_CF33D7F4_ios_min15.5.a */, + 369E75B7289BB59B001F44F3 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a */, + 369E75B9289BB59B001F44F3 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a */, + 369E75BB289BB59B001F44F3 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a */, + 369E75BD289BB59B001F44F3 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a */, + 369E75BF289BB59B001F44F3 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a */, + 369E75C1289BB59B001F44F3 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a */, + 369E75C3289BB59B001F44F3 /* lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a */, + 369E75C5289BB59B001F44F3 /* lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a */, + 369E75C7289BB59B001F44F3 /* lib_idx_op_resolver_E0F4B742_ios_min11.0.a */, + 369E75C9289BB59B001F44F3 /* lib_idx_op_resolver_E0F4B742_ios_min15.5.a */, + 369E75CB289BB59B001F44F3 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a */, + 369E75CD289BB59B001F44F3 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a */, + 369E75CF289BB59B001F44F3 /* lib_idx_rectangle_util_F7F3797D_ios_min11.0.a */, + 369E75D1289BB59B001F44F3 /* lib_idx_rectangle_util_F7F3797D_ios_min15.5.a */, + 369E75D3289BB59B001F44F3 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a */, + 369E75D5289BB59B001F44F3 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a */, + 369E75D7289BB59B001F44F3 /* lib_idx_resource_util_1F0C7A9C_ios_min11.0.a */, + 369E75D9289BB59B001F44F3 /* lib_idx_resource_util_1F0C7A9C_ios_min15.5.a */, + 369E75DB289BB59B001F44F3 /* lib_idx_split_vector_calculator_EE664713_ios_min11.0.a */, + 369E75DD289BB59B001F44F3 /* lib_idx_split_vector_calculator_EE664713_ios_min15.5.a */, + 369E75DF289BB59B001F44F3 /* lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a */, + 369E75E1289BB59B001F44F3 /* lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a */, + 369E75E3289BB59B001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a */, + 369E75E5289BB59B001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a */, + 369E75E7289BB59B001F44F3 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a */, + 369E75E9289BB59B001F44F3 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a */, + 369E75EB289BB59B001F44F3 /* lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a */, + 369E75ED289BB59B001F44F3 /* lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a */, + 369E75EF289BB59B001F44F3 /* lib_idx_util_DB4949E7_ios_min11.0.a */, + 369E75F1289BB59B001F44F3 /* lib_idx_util_DB4949E7_ios_min15.5.a */, 36B23D66288A7FB600A41D9E /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, ); name = Products; @@ -707,368 +744,396 @@ /* End PBXProject section */ /* Begin PBXReferenceProxy section */ - 3675CC7128910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */ = { + 369E7583289BB59B001F44F3 /* lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a; - remoteRef = 3675CC7028910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a; + remoteRef = 369E7582289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7328910DDB00D84244 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */ = { + 369E7585289BB59B001F44F3 /* lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a; - remoteRef = 3675CC7228910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a; + remoteRef = 369E7584289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7528910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */ = { + 369E7587289BB59B001F44F3 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_annotation_renderer_8D68840D_ios_min11.0.a; - remoteRef = 3675CC7428910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a; + remoteRef = 369E7586289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7728910DDB00D84244 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */ = { + 369E7589289BB59B001F44F3 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; - remoteRef = 3675CC7628910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a; + remoteRef = 369E7588289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7D28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = { + 369E758B289BB59B001F44F3 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a; - remoteRef = 3675CC7C28910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a; + remoteRef = 369E758A289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CC7F28910DDB00D84244 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */ = { + 369E758D289BB59B001F44F3 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a; - remoteRef = 3675CC7E28910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a; + remoteRef = 369E758C289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCA528910DDB00D84244 /* lib_idx_math_68C63536_ios_min11.0.a */ = { + 369E758F289BB59B001F44F3 /* lib_idx_annotation_renderer_78B04092_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_math_68C63536_ios_min11.0.a; - remoteRef = 3675CCA428910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_renderer_78B04092_ios_min11.0.a; + remoteRef = 369E758E289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCA728910DDB00D84244 /* lib_idx_math_68C63536_ios_min15.5.a */ = { + 369E7591289BB59B001F44F3 /* lib_idx_annotation_renderer_78B04092_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_math_68C63536_ios_min15.5.a; - remoteRef = 3675CCA628910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_annotation_renderer_78B04092_ios_min15.5.a; + remoteRef = 369E7590289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCAD28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = { + 369E7593289BB59B001F44F3 /* lib_idx_begin_loop_calculator_00B2416C_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 */; + path = lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a; + remoteRef = 369E7592289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCAF28910DDB00D84244 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */ = { + 369E7595289BB59B001F44F3 /* lib_idx_begin_loop_calculator_00B2416C_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 */; + path = lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a; + remoteRef = 369E7594289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCB128910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */ = { + 369E7597289BB59B001F44F3 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; - remoteRef = 3675CCB028910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a; + remoteRef = 369E7596289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCB328910DDB00D84244 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */ = { + 369E7599289BB59B001F44F3 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; - remoteRef = 3675CCB228910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a; + remoteRef = 369E7598289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCB528910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */ = { + 369E759B289BB59B001F44F3 /* lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_olamodule_common_library_63E72567_ios_min11.0.a; - remoteRef = 3675CCB428910DDB00D84244 /* PBXContainerItemProxy */; + path = "lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a"; + remoteRef = 369E759A289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCB728910DDB00D84244 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */ = { + 369E759D289BB59B001F44F3 /* lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_olamodule_common_library_63E72567_ios_min15.5.a; - remoteRef = 3675CCB628910DDB00D84244 /* PBXContainerItemProxy */; + path = "lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a"; + remoteRef = 369E759C289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCB928910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */ = { + 369E759F289BB59B001F44F3 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_op_resolver_0836C983_ios_min11.0.a; - remoteRef = 3675CCB828910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a; + remoteRef = 369E759E289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCBB28910DDB00D84244 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */ = { + 369E75A1289BB59B001F44F3 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_op_resolver_0836C983_ios_min15.5.a; - remoteRef = 3675CCBA28910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a; + remoteRef = 369E75A0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCC528910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = { + 369E75A3289BB59B001F44F3 /* lib_idx_cpu_util_10B87B03_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_resource_util_C5C5DB93_ios_min11.0.a; - remoteRef = 3675CCC428910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_cpu_util_10B87B03_ios_min11.0.a; + remoteRef = 369E75A2289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCC728910DDB00D84244 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */ = { + 369E75A5289BB59B001F44F3 /* lib_idx_cpu_util_10B87B03_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_resource_util_C5C5DB93_ios_min15.5.a; - remoteRef = 3675CCC628910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_cpu_util_10B87B03_ios_min15.5.a; + remoteRef = 369E75A4289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCD128910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = { + 369E75A7289BB59B001F44F3 /* lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a; - remoteRef = 3675CCD028910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a; + remoteRef = 369E75A6289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCD328910DDB00D84244 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */ = { + 369E75A9289BB59B001F44F3 /* lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a; - remoteRef = 3675CCD228910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a; + remoteRef = 369E75A8289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCD928910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = { + 369E75AB289BB59B001F44F3 /* lib_idx_end_loop_calculator_86552B41_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 */; + path = lib_idx_end_loop_calculator_86552B41_ios_min11.0.a; + remoteRef = 369E75AA289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCDB28910DDB00D84244 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */ = { + 369E75AD289BB59B001F44F3 /* lib_idx_end_loop_calculator_86552B41_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 */; + path = lib_idx_end_loop_calculator_86552B41_ios_min15.5.a; + remoteRef = 369E75AC289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCDD28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */ = { + 369E75AF289BB59B001F44F3 /* lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a; - remoteRef = 3675CCDC28910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a; + remoteRef = 369E75AE289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 3675CCDF28910DDB00D84244 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */ = { + 369E75B1289BB59B001F44F3 /* lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; - remoteRef = 3675CCDE28910DDB00D84244 /* PBXContainerItemProxy */; + path = lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a; + remoteRef = 369E75B0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732228978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */ = { + 369E75B3289BB59B001F44F3 /* lib_idx_math_CF33D7F4_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; - remoteRef = 369E732128978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_math_CF33D7F4_ios_min11.0.a; + remoteRef = 369E75B2289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732428978A0E001F44F3 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */ = { + 369E75B5289BB59B001F44F3 /* lib_idx_math_CF33D7F4_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; - remoteRef = 369E732328978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_math_CF33D7F4_ios_min15.5.a; + remoteRef = 369E75B4289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732628978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */ = { + 369E75B7289BB59B001F44F3 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a; - remoteRef = 369E732528978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a; + remoteRef = 369E75B6289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732828978A0E001F44F3 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */ = { + 369E75B9289BB59B001F44F3 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; - remoteRef = 369E732728978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a; + remoteRef = 369E75B8289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732A28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */ = { + 369E75BB289BB59B001F44F3 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a; - remoteRef = 369E732928978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a; + remoteRef = 369E75BA289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732C28978A0E001F44F3 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */ = { + 369E75BD289BB59B001F44F3 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a; - remoteRef = 369E732B28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a; + remoteRef = 369E75BC289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E732E28978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a */ = { + 369E75BF289BB59B001F44F3 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; - remoteRef = 369E732D28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a; + remoteRef = 369E75BE289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733028978A0E001F44F3 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */ = { + 369E75C1289BB59B001F44F3 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a"; - remoteRef = 369E732F28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a; + remoteRef = 369E75C0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733228978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */ = { + 369E75C3289BB59B001F44F3 /* lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_cpu_util_C9677097_ios_min11.0.a; - remoteRef = 369E733128978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a; + remoteRef = 369E75C2289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733428978A0E001F44F3 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */ = { + 369E75C5289BB59B001F44F3 /* lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_cpu_util_C9677097_ios_min15.5.a; - remoteRef = 369E733328978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a; + remoteRef = 369E75C4289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733628978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */ = { + 369E75C7289BB59B001F44F3 /* lib_idx_op_resolver_E0F4B742_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; - remoteRef = 369E733528978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_op_resolver_E0F4B742_ios_min11.0.a; + remoteRef = 369E75C6289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733828978A0E001F44F3 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */ = { + 369E75C9289BB59B001F44F3 /* lib_idx_op_resolver_E0F4B742_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; - remoteRef = 369E733728978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_op_resolver_E0F4B742_ios_min15.5.a; + remoteRef = 369E75C8289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733A28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */ = { + 369E75CB289BB59B001F44F3 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a; - remoteRef = 369E733928978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a; + remoteRef = 369E75CA289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733C28978A0E001F44F3 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */ = { + 369E75CD289BB59B001F44F3 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a; - remoteRef = 369E733B28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a; + remoteRef = 369E75CC289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E733E28978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */ = { + 369E75CF289BB59B001F44F3 /* lib_idx_rectangle_util_F7F3797D_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; - remoteRef = 369E733D28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_rectangle_util_F7F3797D_ios_min11.0.a; + remoteRef = 369E75CE289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734028978A0E001F44F3 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */ = { + 369E75D1289BB59B001F44F3 /* lib_idx_rectangle_util_F7F3797D_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a; - remoteRef = 369E733F28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_rectangle_util_F7F3797D_ios_min15.5.a; + remoteRef = 369E75D0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734228978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a */ = { + 369E75D3289BB59B001F44F3 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0.a; - remoteRef = 369E734128978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a; + remoteRef = 369E75D2289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734428978A0E001F44F3 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */ = { + 369E75D5289BB59B001F44F3 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; - remoteRef = 369E734328978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a; + remoteRef = 369E75D4289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734628978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */ = { + 369E75D7289BB59B001F44F3 /* lib_idx_resource_util_1F0C7A9C_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_rectangle_util_BC608102_ios_min11.0.a; - remoteRef = 369E734528978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_resource_util_1F0C7A9C_ios_min11.0.a; + remoteRef = 369E75D6289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734828978A0E001F44F3 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */ = { + 369E75D9289BB59B001F44F3 /* lib_idx_resource_util_1F0C7A9C_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_rectangle_util_BC608102_ios_min15.5.a; - remoteRef = 369E734728978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_resource_util_1F0C7A9C_ios_min15.5.a; + remoteRef = 369E75D8289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734A28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */ = { + 369E75DB289BB59B001F44F3 /* lib_idx_split_vector_calculator_EE664713_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a; - remoteRef = 369E734928978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_split_vector_calculator_EE664713_ios_min11.0.a; + remoteRef = 369E75DA289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734C28978A0E001F44F3 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */ = { + 369E75DD289BB59B001F44F3 /* lib_idx_split_vector_calculator_EE664713_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a; - remoteRef = 369E734B28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_split_vector_calculator_EE664713_ios_min15.5.a; + remoteRef = 369E75DC289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E734E28978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */ = { + 369E75DF289BB59B001F44F3 /* lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; - remoteRef = 369E734D28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a; + remoteRef = 369E75DE289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E735028978A0E001F44F3 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */ = { + 369E75E1289BB59B001F44F3 /* lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a; - remoteRef = 369E734F28978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a; + remoteRef = 369E75E0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E735228978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */ = { + 369E75E3289BB59B001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_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_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a; - remoteRef = 369E735128978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a; + remoteRef = 369E75E2289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E735428978A0E001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */ = { + 369E75E5289BB59B001F44F3 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_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_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a; - remoteRef = 369E735328978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a; + remoteRef = 369E75E4289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E735628978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min11.0.a */ = { + 369E75E7289BB59B001F44F3 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_util_C76AD427_ios_min11.0.a; - remoteRef = 369E735528978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a; + remoteRef = 369E75E6289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 369E735828978A0E001F44F3 /* lib_idx_util_C76AD427_ios_min15.5.a */ = { + 369E75E9289BB59B001F44F3 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; - path = lib_idx_util_C76AD427_ios_min15.5.a; - remoteRef = 369E735728978A0E001F44F3 /* PBXContainerItemProxy */; + path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a; + remoteRef = 369E75E8289BB59B001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E75EB289BB59B001F44F3 /* lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a; + remoteRef = 369E75EA289BB59B001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E75ED289BB59B001F44F3 /* lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a; + remoteRef = 369E75EC289BB59B001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E75EF289BB59B001F44F3 /* lib_idx_util_DB4949E7_ios_min11.0.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_DB4949E7_ios_min11.0.a; + remoteRef = 369E75EE289BB59B001F44F3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 369E75F1289BB59B001F44F3 /* lib_idx_util_DB4949E7_ios_min15.5.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = lib_idx_util_DB4949E7_ios_min15.5.a; + remoteRef = 369E75F0289BB59B001F44F3 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; 36B239A528893CEE00A41D9E /* OlaCameraFramework.framework */ = { @@ -1137,6 +1202,7 @@ 36B23941288934B100A41D9E /* ViewController.mm in Sources */, 36B2393B288934B100A41D9E /* AppDelegate.m in Sources */, 36B2394C288934B200A41D9E /* main.m in Sources */, + 369E7547289BB59B001F44F3 /* GLRenderViewController.m in Sources */, 36B2393E288934B100A41D9E /* SceneDelegate.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme index 03b08c48e..8f3d10062 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample.xcodeproj/xcshareddata/xcschemes/OpipeBeautyModuleExample.xcscheme @@ -39,7 +39,7 @@ ignoresPersistentStateOnLaunch = "NO" debugDocumentVersioning = "YES" debugServiceExtension = "internal" - enableGPUFrameCaptureMode = "1" + enableGPUFrameCaptureMode = "2" allowLocationSimulation = "YES"> diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard index 253113538..d19d59a80 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/Base.lproj/Main.storyboard @@ -107,7 +107,107 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -141,12 +241,22 @@ + + + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.h b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.h new file mode 100644 index 000000000..4eb726e9e --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.h @@ -0,0 +1,16 @@ +// +// GLRenderViewController.h +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/8/4. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface GLRenderViewController : UIViewController + +@end + +NS_ASSUME_NONNULL_END diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.m b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.m new file mode 100644 index 000000000..1e719fb44 --- /dev/null +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/GLRenderViewController.m @@ -0,0 +1,271 @@ +// +// GLRenderViewController.m +// OpipeBeautyModuleExample +// +// Created by 王韧竹 on 2022/8/4. +// + +#import "GLRenderViewController.h" +#import + +@interface GLRenderViewController () + +{ + CFAbsoluteTime _startRunTime; + CFAbsoluteTime _currentRunTIme; +} + +/** + 相机当前位置 + @return 0:后置 1:前置 + */ +- (int)devicePosition; + +/** + 切换前后摄像头 + */ +- (void)rotateCamera; + +- (void)startCapture; +- (void)stopCapture; + +- (void)pauseCapture; +- (void)resumeCapture; + +@property (nonatomic, strong) AVCaptureSession *captureSession; +@property (nonatomic, retain) AVCaptureDevice *captureDevice; +@property (nonatomic, strong) AVCaptureDeviceInput *videoInput; +@property (nonatomic, strong) AVCaptureVideoDataOutput *videoOutput; +@property (nonatomic, strong) AVCaptureAudioDataOutput *audioOutput; +@property (nonatomic, assign) CGSize cameraSize; +@property (nonatomic, assign) int pixelFormatType; +@property (nonatomic, assign) CGSize previewSize; + +@property (nonatomic, assign) BOOL isCapturePaused; +@property (nonatomic, strong) OlaFURenderView *renderView; + + +@end + +@implementation GLRenderViewController + +- (void)dealloc { + [[OlaFaceUnity sharedInstance] dispose]; +} + +- (void)viewDidLoad { + [super viewDidLoad]; + self.pixelFormatType = kCVPixelFormatType_420YpCbCr8BiPlanarFullRange; + _cameraSize = CGSizeMake(1280, 720); + if (fabs(_currentRunTIme - 0) < 0.0001) { + _startRunTime = CFAbsoluteTimeGetCurrent(); + _currentRunTIme = 0.; + } + [OlaFaceUnity sharedInstance].useGLRender = YES; + [self setupSession]; + [[OlaFaceUnity sharedInstance] initModule]; + [[OlaFaceUnity sharedInstance] resume]; + if (CGSizeEqualToSize(self.previewSize, self.view.bounds.size)) { + return; + } + _previewSize = self.view.bounds.size; + [self setupRenderView]; +} + +- (void)viewWillDisappear:(BOOL)animated { + [[OlaFaceUnity sharedInstance] suspend]; +} + +- (void)viewWillAppear:(BOOL)animated +{ + [super viewWillAppear:animated]; + [self startCapture]; + [[OlaFaceUnity sharedInstance] resume]; + [OlaFaceUnity sharedInstance].whiten = 0.0; + [OlaFaceUnity sharedInstance].smooth = 0.0; +} + +- (void)setupSession { + self.captureSession = [[AVCaptureSession alloc] init]; + [self.captureSession beginConfiguration]; + + // 设置换面尺寸 + [self.captureSession setSessionPreset:AVCaptureSessionPreset1280x720]; + // 设置输入设备 + AVCaptureDevice *inputCamera = nil; + NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]; + for (AVCaptureDevice *device in devices) { + if ([device position] == AVCaptureDevicePositionFront) { + inputCamera = device; + self.captureDevice = device; + } + } + + if (!inputCamera) { + return; + } + + NSError *error = nil; + _videoInput = [[AVCaptureDeviceInput alloc] initWithDevice:inputCamera error:&error]; + if ([self.captureSession canAddInput:_videoInput]) { + [self.captureSession addInput:_videoInput]; + } + + // 设置输出数据 + _videoOutput = [[AVCaptureVideoDataOutput alloc] init]; + [_videoOutput setVideoSettings:[NSDictionary dictionaryWithObject:[NSNumber numberWithInt:self.pixelFormatType] + forKey:(id)kCVPixelBufferPixelFormatTypeKey]]; + [_videoOutput setSampleBufferDelegate:self queue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)]; + + if ([self.captureSession canAddOutput:_videoOutput]) { + [self.captureSession addOutput:_videoOutput]; + } + + //[self setupAudioCapture]; // 音频 + + [self.captureSession commitConfiguration]; + + NSDictionary* outputSettings = [_videoOutput videoSettings]; + for(AVCaptureDeviceFormat *vFormat in [self.captureDevice formats]) { + CMFormatDescriptionRef description= vFormat.formatDescription; + float maxrate = ((AVFrameRateRange*)[vFormat.videoSupportedFrameRateRanges objectAtIndex:0]).maxFrameRate; + + CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions(description); + FourCharCode formatType = CMFormatDescriptionGetMediaSubType(description); + if(maxrate == 30 && formatType == kCVPixelFormatType_420YpCbCr8BiPlanarFullRange && + dimensions.width ==[[outputSettings objectForKey:@"Width"] intValue] && + dimensions.height ==[[outputSettings objectForKey:@"Height"] intValue]) { + if (YES == [self.captureDevice lockForConfiguration:NULL] ) { + self.captureDevice.activeFormat = vFormat; + [self.captureDevice setActiveVideoMinFrameDuration:CMTimeMake(1,30)]; + [self.captureDevice setActiveVideoMaxFrameDuration:CMTimeMake(1,30)]; + [self.captureDevice unlockForConfiguration]; + } + } + } +} + +- (void)setupRenderView { + if(!self.renderView) { + + void *glContext = [[OlaFaceUnity sharedInstance] currentGLContext]; + _renderView = [[OlaFURenderView alloc] initWithFrame:self.view.bounds context:glContext]; + [self.renderView setBackgroundColor:[UIColor colorWithRed:0.9f green:0.9f blue:0.9f alpha:1.0f]]; + [self.view addSubview:self.renderView]; + [self.view sendSubviewToBack:self.renderView]; + [[OlaFaceUnity sharedInstance] setRenderView:self.renderView]; + + } +} + +#pragma mark - +- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer + fromConnection:(AVCaptureConnection *)connection { + if (self.isCapturePaused || !self.captureSession.isRunning) { + return; + } + + if (captureOutput == _videoOutput) { + [[OlaFaceUnity sharedInstance] renderSampleBuffer:sampleBuffer]; + } +} + +- (int)devicePosition +{ + AVCaptureDevicePosition currentCameraPosition = [[self.videoInput device] position]; + if (currentCameraPosition == AVCaptureDevicePositionBack) { + return 0; + } else { + return 1; + } +} + +- (void)rotateCamera { + AVCaptureDevicePosition currentCameraPosition = [[self.videoInput device] position]; + if (currentCameraPosition == AVCaptureDevicePositionBack) { + currentCameraPosition = AVCaptureDevicePositionFront; + } else { + currentCameraPosition = AVCaptureDevicePositionBack; + } + + AVCaptureDevice *backFacingCamera = nil; + NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]; + for (AVCaptureDevice *device in devices) { + if ([device position] == currentCameraPosition) { + backFacingCamera = device; + } + } + + NSError *error; + AVCaptureDeviceInput *newVideoInput = [[AVCaptureDeviceInput alloc] initWithDevice:backFacingCamera error:&error]; + if (newVideoInput != nil) { + [self.captureSession beginConfiguration]; + [self.captureSession setSessionPreset:AVCaptureSessionPreset1280x720]; + + [self.captureSession removeInput:self.videoInput]; + if ([self.captureSession canAddInput:newVideoInput]) { + [self.captureSession addInput:newVideoInput]; + self.videoInput = newVideoInput; + } else { + [self.captureSession addInput:self.videoInput]; + } + [self.captureSession commitConfiguration]; + } +} + +- (void)startCapture { + self.isCapturePaused = NO; + if (self.captureSession && ![self.captureSession isRunning]) { + [self.captureSession startRunning]; + } +} + +- (void)stopCapture { + self.isCapturePaused = YES; + if (self.captureSession) { + [self.videoOutput setSampleBufferDelegate:nil queue:nil]; + + [self.captureSession stopRunning]; + [self.captureSession removeInput:self.videoInput]; + [self.captureSession removeOutput:self.videoOutput]; + [self.captureSession removeOutput:self.audioOutput]; + + self.videoOutput = nil; + self.videoInput = nil; + self.captureSession = nil; + self.captureDevice = nil; + } +} + +- (void)pauseCapture { + self.isCapturePaused = YES; +} + +- (void)resumeCapture { + self.isCapturePaused = NO; + if (!self.captureSession.isRunning) { + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{ + if(!self.captureSession.isRunning){ + [self.captureSession startRunning]; + } + }); + } +} + +- (IBAction)beautyChanged:(UISlider *)sender +{ + if (sender.tag == 0) { + [OlaFaceUnity sharedInstance].whiten = sender.value; + [OlaFaceUnity sharedInstance].smooth = sender.value; + } else if (sender.tag == 1) { + [OlaFaceUnity sharedInstance].slim = sender.value; + } else if (sender.tag == 2) { + [OlaFaceUnity sharedInstance].eyeFactor = sender.value; + } else if (sender.tag == 3) { + [OlaFaceUnity sharedInstance].nose = sender.value; + } +} + +@end + diff --git a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm index 398a26287..ccc0854cd 100644 --- a/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm +++ b/mediapipe/render/module/beauty/ios/example/OpipeBeautyModuleExample/OpipeBeautyModuleExample/ViewController.mm @@ -9,9 +9,11 @@ #import #import -@interface ViewController () { +AVCaptureAudioDataOutputSampleBufferDelegate> +{ CFAbsoluteTime _startRunTime; CFAbsoluteTime _currentRunTIme; } @@ -62,9 +64,11 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { _startRunTime = CFAbsoluteTimeGetCurrent(); _currentRunTIme = 0.; } - + [OlaFaceUnity sharedInstance].useGLRender = NO; [self setupSession]; + [[OlaFaceUnity sharedInstance] initModule]; [[OlaFaceUnity sharedInstance] resume]; + } - (void)viewDidLayoutSubviews @@ -76,7 +80,7 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { _previewSize = self.view.bounds.size; [self setupRenderView]; [self.renderView setNeedFlip:YES]; - + } - (void)viewWillDisappear:(BOOL)animated { @@ -136,7 +140,7 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { for(AVCaptureDeviceFormat *vFormat in [self.captureDevice formats]) { CMFormatDescriptionRef description= vFormat.formatDescription; float maxrate = ((AVFrameRateRange*)[vFormat.videoSupportedFrameRateRanges objectAtIndex:0]).maxFrameRate; - + CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions(description); FourCharCode formatType = CMFormatDescriptionGetMediaSubType(description); if(maxrate == 30 && formatType == kCVPixelFormatType_420YpCbCr8BiPlanarFullRange && @@ -258,18 +262,18 @@ AVCaptureAudioDataOutputSampleBufferDelegate> { } - (void)bgraCameraTextureReady:(OlaShareTexture *)texture - onScreenTexture:(OlaShareTexture *)onScreenTexture - frameTime:(NSTimeInterval)frameTime + onScreenTexture:(OlaShareTexture *)onScreenTexture + frameTime:(NSTimeInterval)frameTime { [[OlaFaceUnity sharedInstance] processVideoFrame:texture.renderTarget timeStamp:frameTime]; } - (IOSurfaceID)externalRender:(NSTimeInterval)frameTime - targetTexture:(OlaShareTexture *)targetTexture - commandBuffer:(id)buffer + targetTexture:(OlaShareTexture *)targetTexture + commandBuffer:(id)buffer { -// [[OlaFaceUnity sharedInstance] processVideoFrame:targetTexture.renderTarget timeStamp:frameTime]; + // [[OlaFaceUnity sharedInstance] processVideoFrame:targetTexture.renderTarget timeStamp:frameTime]; FaceTextureInfo inputTexture; inputTexture.width = targetTexture.size.width; inputTexture.height = targetTexture.size.height; diff --git a/mediapipe/render/module/beauty/ios/framework/BUILD b/mediapipe/render/module/beauty/ios/framework/BUILD index 492680b56..c0b781fc6 100644 --- a/mediapipe/render/module/beauty/ios/framework/BUILD +++ b/mediapipe/render/module/beauty/ios/framework/BUILD @@ -7,6 +7,7 @@ ios_framework( name = "OlaFaceUnityFramework", hdrs = [ "OlaFaceUnity.h", + "OlaFURenderView.h", ], infoplists = ["Info.plist"], bundle_id = "com.ola.olarender.develop", @@ -20,11 +21,19 @@ ios_framework( objc_library( name = "OlaFaceUnityLibrary", - hdrs = ["OlaFaceUnity.h"], - srcs = ["OlaFaceUnity.mm"], + hdrs = [ + "OlaFaceUnity.h", + "OlaFURenderView.h", + "OlaFURenderView+private.h" + ], + srcs = [ + "OlaFaceUnity.mm", + "OlaFURenderView.mm", + ], visibility = ["//visibility:public"], deps = [ "//mediapipe/render/module/beauty:FaceMeshGPULibrary", + "//mediapipe/render/core:core-ios", "@ios_opencv//:OpencvFramework", ], data = [ 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 c124ed11f..db686f6f0 100644 --- a/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj +++ b/mediapipe/render/module/beauty/ios/framework/FaceUnityFramework.xcodeproj/project.pbxproj @@ -7,1160 +7,1232 @@ objects = { /* Begin PBXBuildFile section */ - FF9503010019414900000000 /* vec3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10019414900000000 /* vec3.cpp */; }; - FF9503010019414900000001 /* vec3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB10019414900000000 /* vec3.cpp */; }; - FF950301012F72CA00000000 /* GaussianBlurFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; - FF950301012F72CA00000001 /* GaussianBlurFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; - FF950301012F72CA00000002 /* GaussianBlurFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; - FF950301012F72CA00000003 /* GaussianBlurFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1012F72CA00000000 /* GaussianBlurFilter.cpp */; }; - FF95030101794B7100000000 /* cpu_op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; - FF95030101794B7100000001 /* cpu_op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */; }; - FF950301041C1EB900000000 /* association_norm_rect_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; - FF950301041C1EB900000001 /* association_norm_rect_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */; }; - FF950301042A0E6500000000 /* max_pool_argmax.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */; }; - FF950301042A0E6500000001 /* max_pool_argmax.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */; }; - FF950301105326A800000000 /* landmarks_to_transform_matrix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */; }; - FF950301105326A800000001 /* landmarks_to_transform_matrix.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */; }; - FF95030112590DCE00000000 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; - FF95030112590DCE00000001 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; - FF95030112590DCE00000002 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; - FF95030112590DCE00000003 /* Source.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB112590DCE00000000 /* Source.cpp */; }; - FF9503011335A86600000000 /* OlaFaceUnity.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; - FF9503011335A86600000001 /* OlaFaceUnity.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */; }; - FF95030118A3906A00000000 /* max_unpooling.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; - FF95030118A3906A00000001 /* max_unpooling.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB118A3906A00000000 /* max_unpooling.cc */; }; - FF950301193223CD00000000 /* vec4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; - FF950301193223CD00000001 /* vec4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1193223CD00000000 /* vec4.cpp */; }; - FF9503011979C9A700000000 /* to_image_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; - FF9503011979C9A700000001 /* to_image_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */; }; - FF9503011ABE2CDD00000000 /* thresholding_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */; }; - FF9503011ABE2CDD00000001 /* thresholding_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */; }; - FF9503011B77E8CB00000000 /* MPPTimestampConverter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */; }; - FF9503011B77E8CB00000001 /* MPPTimestampConverter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */; }; - FF9503011EE26A2000000000 /* split_proto_list_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */; }; - FF9503011EE26A2000000001 /* split_proto_list_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */; }; - FF950301202F72AF00000000 /* util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1202F72AF00000000 /* util.cc */; }; - FF950301202F72AF00000001 /* util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1202F72AF00000000 /* util.cc */; }; - FF95030122A81B8400000000 /* GLThreadDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; - FF95030122A81B8400000001 /* GLThreadDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; - FF95030122A81B8400000002 /* GLThreadDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; - FF95030122A81B8400000003 /* GLThreadDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */; }; - FF9503012834F00600000000 /* annotation_overlay_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; - FF9503012834F00600000001 /* annotation_overlay_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */; }; - FF9503012D3894B500000000 /* GPUImageUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; - FF9503012D3894B500000001 /* GPUImageUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12D3894B500000000 /* GPUImageUtil.cpp */; }; - FF9503012FF7D76200000000 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; - FF9503012FF7D76200000001 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; - FF9503012FF7D76200000002 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; - FF9503012FF7D76200000003 /* IOSTarget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */; }; - FF9503013300B09700000000 /* BilateralAdjustFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */; }; - FF9503013300B09700000001 /* BilateralAdjustFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13300B09700000000 /* BilateralAdjustFilter.cpp */; }; - FF9503013604E74800000000 /* OpipeDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; - FF9503013604E74800000001 /* OpipeDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; - FF9503013604E74800000002 /* OpipeDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; - FF9503013604E74800000003 /* OpipeDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13604E74800000000 /* OpipeDispatch.cpp */; }; - FF95030136FBEB1A00000000 /* detections_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */; }; - FF95030136FBEB1A00000001 /* detections_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */; }; - FF950301387C9C0400000000 /* gate_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */; }; - FF950301387C9C0400000001 /* gate_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */; }; - FF9503013B1C97FA00000000 /* rectangle_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */; }; - FF9503013B1C97FA00000001 /* rectangle_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */; }; - FF9503013F7B43FC00000000 /* resource_util_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */; }; - FF9503013F7B43FC00000001 /* resource_util_apple.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */; }; - FF9503014046CD2C00000000 /* landmarks_to_detection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */; }; - FF9503014046CD2C00000001 /* landmarks_to_detection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */; }; - FF9503014A8EF4EF00000000 /* annotation_renderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; - FF9503014A8EF4EF00000001 /* annotation_renderer.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */; }; - FF950301511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; - FF950301511B4B0900000001 /* face_landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */; }; - FF9503015215FAC800000000 /* landmarks_refinement_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; - FF9503015215FAC800000001 /* landmarks_refinement_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */; }; - FF9503015590E40F00000000 /* vec2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; - FF9503015590E40F00000001 /* vec2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15590E40F00000000 /* vec2.cpp */; }; - FF9503015CAB504600000000 /* math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15CAB504600000000 /* math.cpp */; }; - FF9503015CAB504600000001 /* math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB15CAB504600000000 /* math.cpp */; }; - FF95030166524CD000000000 /* AlphaBlendFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; - FF95030166524CD000000001 /* AlphaBlendFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; - FF95030166524CD000000002 /* AlphaBlendFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; - FF95030166524CD000000003 /* AlphaBlendFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB166524CD000000000 /* AlphaBlendFilter.cpp */; }; - FF950301665E250A00000000 /* op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; - FF950301665E250A00000001 /* op_resolver.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1665E250A00000000 /* op_resolver.cc */; }; - FF9503016909A4FC00000000 /* NSError+util_status.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; - FF9503016909A4FC00000001 /* NSError+util_status.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */; }; - FF950301695F7B1800000000 /* OlaShareTextureFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; - FF950301695F7B1800000001 /* OlaShareTextureFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; - FF950301695F7B1800000002 /* OlaShareTextureFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; - FF950301695F7B1800000003 /* OlaShareTextureFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1695F7B1800000000 /* OlaShareTextureFilter.cpp */; }; - FF9503016988849800000000 /* rect_transformation_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */; }; - FF9503016988849800000001 /* rect_transformation_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */; }; - FF9503016A24D81700000000 /* detection_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */; }; - FF9503016A24D81700000001 /* detection_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */; }; - FF9503016E142DC700000000 /* LUTFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; - FF9503016E142DC700000001 /* LUTFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; - FF9503016E142DC700000002 /* LUTFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; - FF9503016E142DC700000003 /* LUTFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */; }; - FF9503016EE5C41200000000 /* cpu_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; - FF9503016EE5C41200000001 /* cpu_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB16EE5C41200000000 /* cpu_util.cc */; }; - FF9503017071A1E200000000 /* ola_graph.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; - FF9503017071A1E200000001 /* ola_graph.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17071A1E200000000 /* ola_graph.cc */; }; - FF95030172ED6A0900000000 /* UnSharpMaskFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; - FF95030172ED6A0900000001 /* UnSharpMaskFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB172ED6A0900000000 /* UnSharpMaskFilter.cpp */; }; - FF95030176651B8000000000 /* OlaContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; - FF95030176651B8000000001 /* OlaContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; - FF95030176651B8000000002 /* OlaContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; - FF95030176651B8000000003 /* OlaContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176651B8000000000 /* OlaContext.cpp */; }; - FF95030176D31B5D00000000 /* detections_to_rects_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */; }; - FF95030176D31B5D00000001 /* detections_to_rects_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */; }; - FF95030178760ADA00000000 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; - FF95030178760ADA00000001 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; - FF95030178760ADA00000002 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; - FF95030178760ADA00000003 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB178760ADA00000000 /* Filter.cpp */; }; - FF9503017C1D80AC00000000 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; - FF9503017C1D80AC00000001 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; - FF9503017C1D80AC00000002 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; - FF9503017C1D80AC00000003 /* TargetView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */; }; - FF9503017C35124F00000000 /* transform_tensor_bilinear.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */; }; - FF9503017C35124F00000001 /* transform_tensor_bilinear.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */; }; - FF9503017F4ECE3500000000 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; - FF9503017F4ECE3500000001 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; - FF9503017F4ECE3500000002 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; - FF9503017F4ECE3500000003 /* GLProgram.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */; }; - FF950301822EE40B00000000 /* rect_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1822EE40B00000000 /* rect_to_render_data_calculator.cc */; }; - FF950301822EE40B00000001 /* rect_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1822EE40B00000000 /* rect_to_render_data_calculator.cc */; }; - FF95030182C4C71800000000 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; - FF95030182C4C71800000001 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; - FF95030182C4C71800000002 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; - FF95030182C4C71800000003 /* Framebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */; }; - FF950301868499C900000000 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; - FF950301868499C900000001 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; - FF950301868499C900000002 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; - FF950301868499C900000003 /* SourceImage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1868499C900000000 /* SourceImage.cpp */; }; - FF9503018C3C5D5200000000 /* BilateralFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; - FF9503018C3C5D5200000001 /* BilateralFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; - FF9503018C3C5D5200000002 /* BilateralFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; - FF9503018C3C5D5200000003 /* BilateralFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB18C3C5D5200000000 /* BilateralFilter.cpp */; }; - FF950301908FF76600000000 /* previous_loopback_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */; }; - FF950301908FF76600000001 /* previous_loopback_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */; }; - FF9503019158518E00000000 /* landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */; }; - FF9503019158518E00000001 /* landmarks_to_render_data_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */; }; - FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; - FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */; }; - FF9503019807610500000000 /* MPPGraph.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19807610500000000 /* MPPGraph.mm */; }; - FF9503019807610500000001 /* MPPGraph.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB19807610500000000 /* MPPGraph.mm */; }; - FF950301A24CB7E500000000 /* local_file_contents_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */; }; - FF950301A24CB7E500000001 /* local_file_contents_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */; }; - FF950301A402CD0400000000 /* face_mesh_module.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; - FF950301A402CD0400000001 /* face_mesh_module.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A402CD0400000000 /* face_mesh_module.cc */; }; - FF950301A7B31D6A00000000 /* mat4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */; }; - FF950301A7B31D6A00000001 /* mat4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */; }; - FF950301AB2D5D1300000000 /* begin_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */; }; - FF950301AB2D5D1300000001 /* begin_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */; }; - FF950301B01194E800000000 /* resource_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B01194E800000000 /* resource_util.cc */; }; - FF950301B01194E800000001 /* resource_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B01194E800000000 /* resource_util.cc */; }; - FF950301B1BCD15C00000000 /* end_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; - FF950301B1BCD15C00000001 /* end_loop_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */; }; - FF950301B9D8F94200000000 /* constant_side_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; - FF950301B9D8F94200000001 /* constant_side_packet_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */; }; - FF950301C578A56100000000 /* transform_landmarks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */; }; - FF950301C578A56100000001 /* transform_landmarks.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */; }; - FF950301CB04A48200000000 /* math_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; - FF950301CB04A48200000001 /* math_utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CB04A48200000000 /* math_utils.cpp */; }; - FF950301CD7D0AD600000000 /* face_mesh_module_imp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; - FF950301CD7D0AD600000001 /* face_mesh_module_imp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1CD7D0AD600000000 /* face_mesh_module_imp.cc */; }; - FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; - FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */; }; - FF950301D796612B00000000 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; - FF950301D796612B00000001 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; - FF950301D796612B00000002 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; - FF950301D796612B00000003 /* Target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D796612B00000000 /* Target.cpp */; }; - FF950301D9E0F97500000000 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; - FF950301D9E0F97500000001 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; - FF950301D9E0F97500000002 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; - FF950301D9E0F97500000003 /* Context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1D9E0F97500000000 /* Context.cpp */; }; - FF950301DF7A0C9B00000000 /* face_mesh_beauty_render.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */; }; - FF950301DF7A0C9B00000001 /* face_mesh_beauty_render.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */; }; - FF950301E82089DF00000000 /* collection_has_min_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */; }; - FF950301E82089DF00000001 /* collection_has_min_size_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */; }; - FF950301EA081C0700000000 /* landmark_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */; }; - FF950301EA081C0700000001 /* landmark_projection_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */; }; - FF950301EA0F1F1F00000000 /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */; }; - FF950301EA0F1F1F00000001 /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */; }; - FF950301EA26099000000000 /* FaceDistortionFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */; }; - FF950301EA26099000000001 /* FaceDistortionFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EA26099000000000 /* FaceDistortionFilter.cpp */; }; - FF950301EAFCD2EB00000000 /* split_vector_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; - FF950301EAFCD2EB00000001 /* split_vector_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */; }; - FF950301F00E9A9000000000 /* flow_limiter_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; - FF950301F00E9A9000000001 /* flow_limiter_calculator.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */; }; - FF950301F015768000000000 /* GaussianBlurMonoFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; - FF950301F015768000000001 /* GaussianBlurMonoFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; - FF950301F015768000000002 /* GaussianBlurMonoFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; - FF950301F015768000000003 /* GaussianBlurMonoFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F015768000000000 /* GaussianBlurMonoFilter.cpp */; }; - FF950301F02D7B8400000000 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; - FF950301F02D7B8400000001 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; - FF950301F02D7B8400000002 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; - FF950301F02D7B8400000003 /* FramebufferCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */; }; - FF950301F2C948BB00000000 /* OlaBeautyFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */; }; - FF950301F2C948BB00000001 /* OlaBeautyFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F2C948BB00000000 /* OlaBeautyFilter.cpp */; }; - FF950301F3CC262D00000000 /* tflite_model_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */; }; - FF950301F3CC262D00000001 /* tflite_model_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */; }; - FF950301F3F047F600000000 /* transpose_conv_bias.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */; }; - FF950301F3F047F600000001 /* transpose_conv_bias.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */; }; - FF950301F573FC1600000000 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; - FF950301F573FC1600000001 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; - FF950301F573FC1600000002 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; - FF950301F573FC1600000003 /* FilterGroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */; }; - FF950301FCEDD60B00000000 /* CVFramebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; - FF950301FCEDD60B00000001 /* CVFramebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; - FF950301FCEDD60B00000002 /* CVFramebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; - FF950301FCEDD60B00000003 /* CVFramebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FCEDD60B00000000 /* CVFramebuffer.cpp */; }; - FF950301FF68235A00000000 /* dispatch_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; - FF950301FF68235A00000001 /* dispatch_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; - FF950301FF68235A00000002 /* dispatch_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; - FF950301FF68235A00000003 /* dispatch_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */; }; - FF950301FFFFBBA500000000 /* header_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FFFFBBA500000000 /* header_util.cc */; }; - FF950301FFFFBBA500000001 /* header_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6BF2BEB1FFFFBBA500000000 /* header_util.cc */; }; + AE561F6204A58F1B00000000 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A051804A58F1B00000000 /* face_mesh_beauty_render.cc */; }; + AE561F6204A58F1B00000001 /* face_mesh_beauty_render.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A051804A58F1B00000000 /* face_mesh_beauty_render.cc */; }; + AE561F6204A5991600000000 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051804A5991600000000 /* gate_calculator.cc */; }; + AE561F6204A5991600000001 /* gate_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051804A5991600000000 /* gate_calculator.cc */; }; + AE561F62096960DC00000000 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518096960DC00000000 /* cpu_util.cc */; }; + AE561F62096960DC00000001 /* cpu_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518096960DC00000000 /* cpu_util.cc */; }; + AE561F620998301500000000 /* OlaYUVTexture.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05180998301500000000 /* OlaYUVTexture.cpp */; }; + AE561F620998301500000001 /* OlaYUVTexture.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05180998301500000000 /* OlaYUVTexture.cpp */; }; + AE561F620998301500000002 /* OlaYUVTexture.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05180998301500000000 /* OlaYUVTexture.cpp */; }; + AE561F620998301500000003 /* OlaYUVTexture.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05180998301500000000 /* OlaYUVTexture.cpp */; }; + AE561F62113D77AC00000000 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518113D77AC00000000 /* GPUImageUtil.cpp */; }; + AE561F62113D77AC00000001 /* GPUImageUtil.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518113D77AC00000000 /* GPUImageUtil.cpp */; }; + AE561F62114131F400000000 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518114131F400000000 /* landmark_projection_calculator.cc */; }; + AE561F62114131F400000001 /* landmark_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518114131F400000000 /* landmark_projection_calculator.cc */; }; + AE561F621146E56B00000000 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05181146E56B00000000 /* collection_has_min_size_calculator.cc */; }; + AE561F621146E56B00000001 /* collection_has_min_size_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05181146E56B00000000 /* collection_has_min_size_calculator.cc */; }; + AE561F62127F047A00000000 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518127F047A00000000 /* OlaContext.cpp */; }; + AE561F62127F047A00000001 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518127F047A00000000 /* OlaContext.cpp */; }; + AE561F62127F047A00000002 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518127F047A00000000 /* OlaContext.cpp */; }; + AE561F62127F047A00000003 /* OlaContext.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518127F047A00000000 /* OlaContext.cpp */; }; + AE561F621305049200000000 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A05181305049200000000 /* landmarks_to_transform_matrix.cc */; }; + AE561F621305049200000001 /* landmarks_to_transform_matrix.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A05181305049200000000 /* landmarks_to_transform_matrix.cc */; }; + AE561F6215C3EC2900000000 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */; }; + AE561F6215C3EC2900000001 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */; }; + AE561F6215C3EC2900000002 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */; }; + AE561F6215C3EC2900000003 /* OpipeDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */; }; + AE561F6217D70EAE00000000 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A051817D70EAE00000000 /* vec3.cpp */; }; + AE561F6217D70EAE00000001 /* vec3.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A051817D70EAE00000000 /* vec3.cpp */; }; + AE561F621A5AF34500000000 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05181A5AF34500000000 /* Context.cpp */; }; + AE561F621A5AF34500000001 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05181A5AF34500000000 /* Context.cpp */; }; + AE561F621A5AF34500000002 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05181A5AF34500000000 /* Context.cpp */; }; + AE561F621A5AF34500000003 /* Context.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05181A5AF34500000000 /* Context.cpp */; }; + AE561F621C25645A00000000 /* OlaFURenderView.mm in framework */ = {isa = PBXBuildFile; fileRef = 9D1A05181C25645A00000000 /* OlaFURenderView.mm */; }; + AE561F621C25645A00000001 /* OlaFURenderView.mm in framework */ = {isa = PBXBuildFile; fileRef = 9D1A05181C25645A00000000 /* OlaFURenderView.mm */; }; + AE561F621E3EB3B900000000 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05181E3EB3B900000000 /* rect_to_render_data_calculator.cc */; }; + AE561F621E3EB3B900000001 /* rect_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05181E3EB3B900000000 /* rect_to_render_data_calculator.cc */; }; + AE561F62203E676800000000 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518203E676800000000 /* math.cpp */; }; + AE561F62203E676800000001 /* math.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518203E676800000000 /* math.cpp */; }; + AE561F6224028C2A00000000 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051824028C2A00000000 /* Framebuffer.cpp */; }; + AE561F6224028C2A00000001 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051824028C2A00000000 /* Framebuffer.cpp */; }; + AE561F6224028C2A00000002 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051824028C2A00000000 /* Framebuffer.cpp */; }; + AE561F6224028C2A00000003 /* Framebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051824028C2A00000000 /* Framebuffer.cpp */; }; + AE561F6225CCC4DB00000000 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 9D1A051825CCC4DB00000000 /* util.cc */; }; + AE561F6225CCC4DB00000001 /* util.cc in objc */ = {isa = PBXBuildFile; fileRef = 9D1A051825CCC4DB00000000 /* util.cc */; }; + AE561F622760766100000000 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05182760766100000000 /* CVFramebuffer.cpp */; }; + AE561F622760766100000001 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05182760766100000000 /* CVFramebuffer.cpp */; }; + AE561F622760766100000002 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05182760766100000000 /* CVFramebuffer.cpp */; }; + AE561F622760766100000003 /* CVFramebuffer.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05182760766100000000 /* CVFramebuffer.cpp */; }; + AE561F62366C28A700000000 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518366C28A700000000 /* GLProgram.cpp */; }; + AE561F62366C28A700000001 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518366C28A700000000 /* GLProgram.cpp */; }; + AE561F62366C28A700000002 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518366C28A700000000 /* GLProgram.cpp */; }; + AE561F62366C28A700000003 /* GLProgram.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518366C28A700000000 /* GLProgram.cpp */; }; + AE561F62376F697300000000 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518376F697300000000 /* resource_util_apple.cc */; }; + AE561F62376F697300000001 /* resource_util_apple.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518376F697300000000 /* resource_util_apple.cc */; }; + AE561F6239A89AA300000000 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051839A89AA300000000 /* detections_to_render_data_calculator.cc */; }; + AE561F6239A89AA300000001 /* detections_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051839A89AA300000000 /* detections_to_render_data_calculator.cc */; }; + AE561F6240660CF800000000 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */; }; + AE561F6240660CF800000001 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */; }; + AE561F6240660CF800000002 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */; }; + AE561F6240660CF800000003 /* GLThreadDispatch.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */; }; + AE561F62410C5DD800000000 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518410C5DD800000000 /* detection_projection_calculator.cc */; }; + AE561F62410C5DD800000001 /* detection_projection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518410C5DD800000000 /* detection_projection_calculator.cc */; }; + AE561F624134770200000000 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A05184134770200000000 /* op_resolver.cc */; }; + AE561F624134770200000001 /* op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A05184134770200000000 /* op_resolver.cc */; }; + AE561F62486157AC00000000 /* OlaYUVTexture420P.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */; }; + AE561F62486157AC00000001 /* OlaYUVTexture420P.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */; }; + AE561F62486157AC00000002 /* OlaYUVTexture420P.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */; }; + AE561F62486157AC00000003 /* OlaYUVTexture420P.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */; }; + AE561F6249DC5EB500000000 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A051849DC5EB500000000 /* transpose_conv_bias.cc */; }; + AE561F6249DC5EB500000001 /* transpose_conv_bias.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A051849DC5EB500000000 /* transpose_conv_bias.cc */; }; + AE561F624A2CA38100000000 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05184A2CA38100000000 /* resource_util.cc */; }; + AE561F624A2CA38100000001 /* resource_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05184A2CA38100000000 /* resource_util.cc */; }; + AE561F624C26B1F400000000 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */; }; + AE561F624C26B1F400000001 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */; }; + AE561F624C26B1F400000002 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */; }; + AE561F624C26B1F400000003 /* BilateralFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */; }; + AE561F625547722D00000000 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185547722D00000000 /* LUTFilter.cpp */; }; + AE561F625547722D00000001 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185547722D00000000 /* LUTFilter.cpp */; }; + AE561F625547722D00000002 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185547722D00000000 /* LUTFilter.cpp */; }; + AE561F625547722D00000003 /* LUTFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185547722D00000000 /* LUTFilter.cpp */; }; + AE561F625B6ABC2900000000 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05185B6ABC2900000000 /* landmarks_refinement_calculator.cc */; }; + AE561F625B6ABC2900000001 /* landmarks_refinement_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05185B6ABC2900000000 /* landmarks_refinement_calculator.cc */; }; + AE561F625FA0C8B400000000 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185FA0C8B400000000 /* constant_side_packet_calculator.cc */; }; + AE561F625FA0C8B400000001 /* constant_side_packet_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A05185FA0C8B400000000 /* constant_side_packet_calculator.cc */; }; + AE561F6261EDA9EE00000000 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051861EDA9EE00000000 /* annotation_overlay_calculator.cc */; }; + AE561F6261EDA9EE00000001 /* annotation_overlay_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051861EDA9EE00000000 /* annotation_overlay_calculator.cc */; }; + AE561F62639A579500000000 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 9D1A0518639A579500000000 /* ola_graph.cc */; }; + AE561F62639A579500000001 /* ola_graph.cc in common */ = {isa = PBXBuildFile; fileRef = 9D1A0518639A579500000000 /* ola_graph.cc */; }; + AE561F62642109BB00000000 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518642109BB00000000 /* detections_to_rects_calculator.cc */; }; + AE561F62642109BB00000001 /* detections_to_rects_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518642109BB00000000 /* detections_to_rects_calculator.cc */; }; + AE561F62688BDBD200000000 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518688BDBD200000000 /* Source.cpp */; }; + AE561F62688BDBD200000001 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518688BDBD200000000 /* Source.cpp */; }; + AE561F62688BDBD200000002 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518688BDBD200000000 /* Source.cpp */; }; + AE561F62688BDBD200000003 /* Source.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518688BDBD200000000 /* Source.cpp */; }; + AE561F626B38661900000000 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186B38661900000000 /* SourceImage.cpp */; }; + AE561F626B38661900000001 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186B38661900000000 /* SourceImage.cpp */; }; + AE561F626B38661900000002 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186B38661900000000 /* SourceImage.cpp */; }; + AE561F626B38661900000003 /* SourceImage.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186B38661900000000 /* SourceImage.cpp */; }; + AE561F626CDB0ACA00000000 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A05186CDB0ACA00000000 /* mat4.cpp */; }; + AE561F626CDB0ACA00000001 /* mat4.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A05186CDB0ACA00000000 /* mat4.cpp */; }; + AE561F626E57166000000000 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186E57166000000000 /* flow_limiter_calculator.cc */; }; + AE561F626E57166000000001 /* flow_limiter_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A05186E57166000000000 /* flow_limiter_calculator.cc */; }; + AE561F627869539F00000000 /* OlaCameraSource.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05187869539F00000000 /* OlaCameraSource.cpp */; }; + AE561F627869539F00000001 /* OlaCameraSource.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05187869539F00000000 /* OlaCameraSource.cpp */; }; + AE561F627869539F00000002 /* OlaCameraSource.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05187869539F00000000 /* OlaCameraSource.cpp */; }; + AE561F627869539F00000003 /* OlaCameraSource.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A05187869539F00000000 /* OlaCameraSource.cpp */; }; + AE561F6279CDDFED00000000 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051879CDDFED00000000 /* association_norm_rect_calculator.cc */; }; + AE561F6279CDDFED00000001 /* association_norm_rect_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051879CDDFED00000000 /* association_norm_rect_calculator.cc */; }; + AE561F628105E18A00000000 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A05188105E18A00000000 /* vec2.cpp */; }; + AE561F628105E18A00000001 /* vec2.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A05188105E18A00000000 /* vec2.cpp */; }; + AE561F6282F42E8800000000 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051882F42E8800000000 /* annotation_renderer.cc */; }; + AE561F6282F42E8800000001 /* annotation_renderer.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051882F42E8800000000 /* annotation_renderer.cc */; }; + AE561F6283042E5400000000 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A051883042E5400000000 /* face_mesh_module.cc */; }; + AE561F6283042E5400000001 /* face_mesh_module.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A051883042E5400000000 /* face_mesh_module.cc */; }; + AE561F6286A483C600000000 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051886A483C600000000 /* to_image_calculator.cc */; }; + AE561F6286A483C600000001 /* to_image_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A051886A483C600000000 /* to_image_calculator.cc */; }; + AE561F628A70D79000000000 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 9D1A05188A70D79000000000 /* OlaFaceUnity.mm */; }; + AE561F628A70D79000000001 /* OlaFaceUnity.mm in framework */ = {isa = PBXBuildFile; fileRef = 9D1A05188A70D79000000000 /* OlaFaceUnity.mm */; }; + AE561F628C56761300000000 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188C56761300000000 /* non_max_suppression_calculator.cc */; }; + AE561F628C56761300000001 /* non_max_suppression_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188C56761300000000 /* non_max_suppression_calculator.cc */; }; + AE561F628CA4A16800000000 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188CA4A16800000000 /* rect_transformation_calculator.cc */; }; + AE561F628CA4A16800000001 /* rect_transformation_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188CA4A16800000000 /* rect_transformation_calculator.cc */; }; + AE561F628DC416F400000000 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188DC416F400000000 /* local_file_contents_calculator.cc */; }; + AE561F628DC416F400000001 /* local_file_contents_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A05188DC416F400000000 /* local_file_contents_calculator.cc */; }; + AE561F6292C1EE4000000000 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051892C1EE4000000000 /* split_proto_list_calculator.cc */; }; + AE561F6292C1EE4000000001 /* split_proto_list_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051892C1EE4000000000 /* split_proto_list_calculator.cc */; }; + AE561F6293A216DD00000000 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051893A216DD00000000 /* split_vector_calculator.cc */; }; + AE561F6293A216DD00000001 /* split_vector_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A051893A216DD00000000 /* split_vector_calculator.cc */; }; + AE561F6293DCB3DF00000000 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A051893DCB3DF00000000 /* cpu_op_resolver.cc */; }; + AE561F6293DCB3DF00000001 /* cpu_op_resolver.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A051893DCB3DF00000000 /* cpu_op_resolver.cc */; }; + AE561F62980FFD2B00000000 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518980FFD2B00000000 /* thresholding_calculator.cc */; }; + AE561F62980FFD2B00000001 /* thresholding_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518980FFD2B00000000 /* thresholding_calculator.cc */; }; + AE561F629BB9EF1F00000000 /* FaceDistortionFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A05189BB9EF1F00000000 /* FaceDistortionFilter.cpp */; }; + AE561F629BB9EF1F00000001 /* FaceDistortionFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A05189BB9EF1F00000000 /* FaceDistortionFilter.cpp */; }; + AE561F629FEDE59900000000 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A05189FEDE59900000000 /* UnSharpMaskFilter.cpp */; }; + AE561F629FEDE59900000001 /* UnSharpMaskFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A05189FEDE59900000000 /* UnSharpMaskFilter.cpp */; }; + AE561F62A18B807100000000 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518A18B807100000000 /* max_unpooling.cc */; }; + AE561F62A18B807100000001 /* max_unpooling.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518A18B807100000000 /* max_unpooling.cc */; }; + AE561F62AC54908400000000 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A0518AC54908400000000 /* vec4.cpp */; }; + AE561F62AC54908400000001 /* vec4.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A0518AC54908400000000 /* vec4.cpp */; }; + AE561F62B541904500000000 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B541904500000000 /* IOSTarget.cpp */; }; + AE561F62B541904500000001 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B541904500000000 /* IOSTarget.cpp */; }; + AE561F62B541904500000002 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B541904500000000 /* IOSTarget.cpp */; }; + AE561F62B541904500000003 /* IOSTarget.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B541904500000000 /* IOSTarget.cpp */; }; + AE561F62B5549E7B00000000 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B5549E7B00000000 /* Filter.cpp */; }; + AE561F62B5549E7B00000001 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B5549E7B00000000 /* Filter.cpp */; }; + AE561F62B5549E7B00000002 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B5549E7B00000000 /* Filter.cpp */; }; + AE561F62B5549E7B00000003 /* Filter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B5549E7B00000000 /* Filter.cpp */; }; + AE561F62B7DF5A1B00000000 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */; }; + AE561F62B7DF5A1B00000001 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */; }; + AE561F62B7DF5A1B00000002 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */; }; + AE561F62B7DF5A1B00000003 /* dispatch_queue.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */; }; + AE561F62BAA9784900000000 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518BAA9784900000000 /* Target.cpp */; }; + AE561F62BAA9784900000001 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518BAA9784900000000 /* Target.cpp */; }; + AE561F62BAA9784900000002 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518BAA9784900000000 /* Target.cpp */; }; + AE561F62BAA9784900000003 /* Target.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518BAA9784900000000 /* Target.cpp */; }; + AE561F62C1562A1600000000 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */; }; + AE561F62C1562A1600000001 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */; }; + AE561F62C1562A1600000002 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */; }; + AE561F62C1562A1600000003 /* GaussianBlurMonoFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */; }; + AE561F62C5471AEE00000000 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518C5471AEE00000000 /* header_util.cc */; }; + AE561F62C5471AEE00000001 /* header_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518C5471AEE00000000 /* header_util.cc */; }; + AE561F62C674540100000000 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518C674540100000000 /* landmarks_to_detection_calculator.cc */; }; + AE561F62C674540100000001 /* landmarks_to_detection_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518C674540100000000 /* landmarks_to_detection_calculator.cc */; }; + AE561F62C740BD4E00000000 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */; }; + AE561F62C740BD4E00000001 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */; }; + AE561F62C740BD4E00000002 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */; }; + AE561F62C740BD4E00000003 /* GaussianBlurFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */; }; + AE561F62C8241DD300000000 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A0518C8241DD300000000 /* tflite_model_loader.cc */; }; + AE561F62C8241DD300000001 /* tflite_model_loader.cc in tflite */ = {isa = PBXBuildFile; fileRef = 9D1A0518C8241DD300000000 /* tflite_model_loader.cc */; }; + AE561F62CB56A17700000000 /* BilateralAdjustFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A0518CB56A17700000000 /* BilateralAdjustFilter.cpp */; }; + AE561F62CB56A17700000001 /* BilateralAdjustFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A0518CB56A17700000000 /* BilateralAdjustFilter.cpp */; }; + AE561F62CBCD2E1300000000 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 9D1A0518CBCD2E1300000000 /* face_landmarks_to_render_data_calculator.cc */; }; + AE561F62CBCD2E1300000001 /* face_landmarks_to_render_data_calculator.cc in calculators */ = {isa = PBXBuildFile; fileRef = 9D1A0518CBCD2E1300000000 /* face_landmarks_to_render_data_calculator.cc */; }; + AE561F62D295FD0100000000 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518D295FD0100000000 /* max_pool_argmax.cc */; }; + AE561F62D295FD0100000001 /* max_pool_argmax.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518D295FD0100000000 /* max_pool_argmax.cc */; }; + AE561F62D76E8D3000000000 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */; }; + AE561F62D76E8D3000000001 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */; }; + AE561F62D76E8D3000000002 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */; }; + AE561F62D76E8D3000000003 /* SourceCamera.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */; }; + AE561F62DABFB62900000000 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DABFB62900000000 /* clip_vector_size_calculator.cc */; }; + AE561F62DABFB62900000001 /* clip_vector_size_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DABFB62900000000 /* clip_vector_size_calculator.cc */; }; + AE561F62DD8776DB00000000 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */; }; + AE561F62DD8776DB00000001 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */; }; + AE561F62DD8776DB00000002 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */; }; + AE561F62DD8776DB00000003 /* AlphaBlendFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */; }; + AE561F62DEF8A23A00000000 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DEF8A23A00000000 /* begin_loop_calculator.cc */; }; + AE561F62DEF8A23A00000001 /* begin_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DEF8A23A00000000 /* begin_loop_calculator.cc */; }; + AE561F62DF10257B00000000 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */; }; + AE561F62DF10257B00000001 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */; }; + AE561F62DF10257B00000002 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */; }; + AE561F62DF10257B00000003 /* FramebufferCache.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */; }; + AE561F62E1ED7AB700000000 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518E1ED7AB700000000 /* transform_landmarks.cc */; }; + AE561F62E1ED7AB700000001 /* transform_landmarks.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518E1ED7AB700000000 /* transform_landmarks.cc */; }; + AE561F62E5F7536D00000000 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A0518E5F7536D00000000 /* math_utils.cpp */; }; + AE561F62E5F7536D00000001 /* math_utils.cpp in math */ = {isa = PBXBuildFile; fileRef = 9D1A0518E5F7536D00000000 /* math_utils.cpp */; }; + AE561F62E6435E1C00000000 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */; }; + AE561F62E6435E1C00000001 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */; }; + AE561F62E6435E1C00000002 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */; }; + AE561F62E6435E1C00000003 /* OlaShareTextureFilter.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */; }; + AE561F62E8B4FA8F00000000 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E8B4FA8F00000000 /* previous_loopback_calculator.cc */; }; + AE561F62E8B4FA8F00000001 /* previous_loopback_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518E8B4FA8F00000000 /* previous_loopback_calculator.cc */; }; + AE561F62EA12225700000000 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EA12225700000000 /* Ref.cpp */; }; + AE561F62EA12225700000001 /* Ref.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EA12225700000000 /* Ref.cpp */; }; + AE561F62EA21FA1F00000000 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A0518EA21FA1F00000000 /* face_mesh_module_imp.cc */; }; + AE561F62EA21FA1F00000001 /* face_mesh_module_imp.cc in beauty */ = {isa = PBXBuildFile; fileRef = 9D1A0518EA21FA1F00000000 /* face_mesh_module_imp.cc */; }; + AE561F62EED1272900000000 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EED1272900000000 /* FilterGroup.cpp */; }; + AE561F62EED1272900000001 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EED1272900000000 /* FilterGroup.cpp */; }; + AE561F62EED1272900000002 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EED1272900000000 /* FilterGroup.cpp */; }; + AE561F62EED1272900000003 /* FilterGroup.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518EED1272900000000 /* FilterGroup.cpp */; }; + AE561F62F07B10B000000000 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518F07B10B000000000 /* rectangle_util.cc */; }; + AE561F62F07B10B000000001 /* rectangle_util.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518F07B10B000000000 /* rectangle_util.cc */; }; + AE561F62F1CB02DD00000000 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518F1CB02DD00000000 /* landmarks_to_render_data_calculator.cc */; }; + AE561F62F1CB02DD00000001 /* landmarks_to_render_data_calculator.cc in util */ = {isa = PBXBuildFile; fileRef = 9D1A0518F1CB02DD00000000 /* landmarks_to_render_data_calculator.cc */; }; + AE561F62F4A92B1800000000 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518F4A92B1800000000 /* NSError+util_status.mm */; }; + AE561F62F4A92B1800000001 /* NSError+util_status.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518F4A92B1800000000 /* NSError+util_status.mm */; }; + AE561F62F520944600000000 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F520944600000000 /* TargetView.cpp */; }; + AE561F62F520944600000001 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F520944600000000 /* TargetView.cpp */; }; + AE561F62F520944600000002 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F520944600000000 /* TargetView.cpp */; }; + AE561F62F520944600000003 /* TargetView.cpp in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F520944600000000 /* TargetView.cpp */; }; + AE561F62F524754100000000 /* OlaBeautyFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A0518F524754100000000 /* OlaBeautyFilter.cpp */; }; + AE561F62F524754100000001 /* OlaBeautyFilter.cpp in filters */ = {isa = PBXBuildFile; fileRef = 9D1A0518F524754100000000 /* OlaBeautyFilter.cpp */; }; + AE561F62F53D342400000000 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F53D342400000000 /* end_loop_calculator.cc */; }; + AE561F62F53D342400000001 /* end_loop_calculator.cc in core */ = {isa = PBXBuildFile; fileRef = 9D1A0518F53D342400000000 /* end_loop_calculator.cc */; }; + AE561F62FAF3CE2D00000000 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518FAF3CE2D00000000 /* transform_tensor_bilinear.cc */; }; + AE561F62FAF3CE2D00000001 /* transform_tensor_bilinear.cc in operations */ = {isa = PBXBuildFile; fileRef = 9D1A0518FAF3CE2D00000000 /* transform_tensor_bilinear.cc */; }; + AE561F62FE41FA1300000000 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518FE41FA1300000000 /* MPPTimestampConverter.mm */; }; + AE561F62FE41FA1300000001 /* MPPTimestampConverter.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518FE41FA1300000000 /* MPPTimestampConverter.mm */; }; + AE561F62FF488C3100000000 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518FF488C3100000000 /* MPPGraph.mm */; }; + AE561F62FF488C3100000001 /* MPPGraph.mm in objc */ = {isa = PBXBuildFile; fileRef = 9D1A0518FF488C3100000000 /* MPPGraph.mm */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 6CA3282607268A4900000000 /* PBXContainerItemProxy */ = { + FE7C5EA21C54576900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE07268A4800000000; + remoteGlobalIDString = EDD0A7851C54576800000000; }; - 6CA328260F58F30900000000 /* PBXContainerItemProxy */ = { + FE7C5EA21D681C9500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE0F58F30800000000; + remoteGlobalIDString = EDD0A7851D681C9400000000; }; - 6CA3282610832CE100000000 /* PBXContainerItemProxy */ = { + FE7C5EA22543EE8700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE10832CE000000000; + remoteGlobalIDString = EDD0A7852543EE8600000000; }; - 6CA328261838F83F00000000 /* PBXContainerItemProxy */ = { + FE7C5EA22D59C41300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE1838F83E00000000; + remoteGlobalIDString = EDD0A7852D59C41200000000; }; - 6CA328261AC4218B00000000 /* PBXContainerItemProxy */ = { + FE7C5EA22F164B6300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE1AC4218A00000000; + remoteGlobalIDString = EDD0A7852F164B6200000000; }; - 6CA32826216C14B900000000 /* PBXContainerItemProxy */ = { + FE7C5EA236B3CE1700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE216C14B800000000; + remoteGlobalIDString = EDD0A78536B3CE1600000000; }; - 6CA328263AD2DEC500000000 /* PBXContainerItemProxy */ = { + FE7C5EA23B463BAD00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = E9F6BC4B3AD2DEC400000000; + remoteGlobalIDString = EDD0A7853B463BAC00000000; }; - 6CA328263E081CF900000000 /* PBXContainerItemProxy */ = { + FE7C5EA240B23BB500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE3E081CF800000000; + remoteGlobalIDString = EDD0A78540B23BB400000000; }; - 6CA328263ED3804B00000000 /* PBXContainerItemProxy */ = { + FE7C5EA24521587B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE3ED3804A00000000; + remoteGlobalIDString = EDD0A7854521587A00000000; }; - 6CA32826762E872100000000 /* PBXContainerItemProxy */ = { + FE7C5EA246A8D4DF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE762E872000000000; + remoteGlobalIDString = EDD0A78546A8D4DE00000000; }; - 6CA328267E674A3900000000 /* PBXContainerItemProxy */ = { + FE7C5EA24E78DF7F00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE7E674A3800000000; + remoteGlobalIDString = EDD0A7854E78DF7E00000000; }; - 6CA328267E908C2900000000 /* PBXContainerItemProxy */ = { + FE7C5EA26444CACD00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE7E908C2800000000; + remoteGlobalIDString = EDD0A7856444CACC00000000; }; - 6CA328267FF66ACD00000000 /* PBXContainerItemProxy */ = { + FE7C5EA271D64AF700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE7FF66ACC00000000; + remoteGlobalIDString = EDD0A78571D64AF600000000; }; - 6CA328268489C38D00000000 /* PBXContainerItemProxy */ = { + FE7C5EA283F4347500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE8489C38C00000000; + remoteGlobalIDString = EDD0A78583F4347400000000; }; - 6CA3282687D26E7500000000 /* PBXContainerItemProxy */ = { + FE7C5EA283F46D1900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE87D26E7400000000; + remoteGlobalIDString = EDD0A78583F46D1800000000; }; - 6CA3282697A002A700000000 /* PBXContainerItemProxy */ = { + FE7C5EA291016CBF00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE97A002A600000000; + remoteGlobalIDString = EDD0A78591016CBE00000000; }; - 6CA328269B64E5B500000000 /* PBXContainerItemProxy */ = { + FE7C5EA2A079FC9500000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE9B64E5B400000000; + remoteGlobalIDString = EDD0A785A079FC9400000000; }; - 6CA328269CC89BB300000000 /* PBXContainerItemProxy */ = { + FE7C5EA2A30404F300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE9CC89BB200000000; + remoteGlobalIDString = EDD0A785A30404F200000000; }; - 6CA328269CDDB50D00000000 /* PBXContainerItemProxy */ = { + FE7C5EA2AC3AEC4700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CE9CDDB50C00000000; + remoteGlobalIDString = EDD0A785AC3AEC4600000000; }; - 6CA32826AEE1CD9700000000 /* PBXContainerItemProxy */ = { + FE7C5EA2AD83C52B00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEAEE1CD9600000000; + remoteGlobalIDString = EDD0A785AD83C52A00000000; }; - 6CA32826B4F98C9F00000000 /* PBXContainerItemProxy */ = { + FE7C5EA2C4A1069D00000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEB4F98C9E00000000; + remoteGlobalIDString = EDD0A785C4A1069C00000000; }; - 6CA32826C180231D00000000 /* PBXContainerItemProxy */ = { + FE7C5EA2DA50AA6900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEC180231C00000000; + remoteGlobalIDString = EDD0A785DA50AA6800000000; }; - 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */ = { + FE7C5EA2DC6BB92900000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEC9EF5A9E00000000; + remoteGlobalIDString = EDD0A785DC6BB92800000000; }; - 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */ = { + FE7C5EA2DF58A07300000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CECDF0E1D000000000; + remoteGlobalIDString = EDD0A785DF58A07200000000; }; - 6CA32826E3255C4300000000 /* PBXContainerItemProxy */ = { + FE7C5EA2E39F886700000000 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 644B9F4C2866F94D00000000 /* Project object */; + containerPortal = 66E663F842F582F700000000 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2FE34CEE3255C4200000000; + remoteGlobalIDString = EDD0A785E39F886600000000; + }; + FE7C5EA2E51A0D9D00000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 66E663F842F582F700000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B995B665E51A0D9C00000000; + }; + FE7C5EA2F15E172100000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 66E663F842F582F700000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EDD0A785F15E172000000000; + }; + FE7C5EA2F2BD211900000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 66E663F842F582F700000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EDD0A785F2BD211800000000; + }; + FE7C5EA2F3A1AA7100000000 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 66E663F842F582F700000000 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EDD0A785F3A1AA7000000000; }; /* 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; 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 = ""; }; - 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_op_resolver_0836C983_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB103F9803500000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; - 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; - 6BF2BEB1042285A000000000 /* lib_idx_math_68C63536_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_math_68C63536_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_rectangle_util_BC608102_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 = ""; }; - 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_util_C76AD427_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1119EB78500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 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 = ""; }; - 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm; sourceTree = ""; }; - 6BF2BEB1150335A300000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; - 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; path = lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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; }; - 6BF2BEB1179A317600000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1193223CD00000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; 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 = ""; }; - 6BF2BEB11C6B16F100000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.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 = ""; }; - 6BF2BEB1202F72AF00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; - 6BF2BEB120CC110A00000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; - 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1290D963D00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB12B5DD40E00000000 /* lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_op_resolver_0836C983_ios_min11.0.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 = ""; }; - 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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; }; - 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB12FF7D76200000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; - 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_util_C9677097_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; 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 = ""; }; - 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; - 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 = ""; }; - 6BF2BEB13BB0D77500000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; - 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB13EDD2CC300000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; - 6BF2BEB13F6F842500000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; - 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; - 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 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 = ""; }; - 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; - 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 = ""; }; - 6BF2BEB14F531D3500000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; - 6BF2BEB1506223AF00000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; - 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 = ""; }; - 6BF2BEB151587D2F00000000 /* LUTFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = LUTFilter.hpp; path = mediapipe/render/core/LUTFilter.hpp; sourceTree = ""; }; - 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 6BF2BEB15590E40F00000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; - 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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; path = lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB15CAB504600000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; - 6BF2BEB15FE6FF0200000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_renderer_8D68840D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1611DBCED00000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; - 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1623B07FA00000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; 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 = ""; }; - 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; 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 = ""; }; - 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 = ""; }; - 6BF2BEB16E142DC700000000 /* LUTFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LUTFilter.cpp; path = mediapipe/render/core/LUTFilter.cpp; 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 = ""; }; - 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_util_C9677097_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB17071A1E200000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; - 6BF2BEB17278B65600000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_util_C76AD427_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 = ""; }; - 6BF2BEB178760ADA00000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; - 6BF2BEB17982938200000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB17B79044D00000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; 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; path = lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB17E728AD500000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; - 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; - 6BF2BEB1822EE40B00000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; - 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; 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 = ""; }; - 6BF2BEB18556057300000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; - 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.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 = ""; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB18D99A8BD00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB18DE1AC1100000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; 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 = ""; }; - 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 = ""; }; - 6BF2BEB192A4902100000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; - 6BF2BEB19365292D00000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; 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 = ""; }; - 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 = ""; }; - 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; }; - 6BF2BEB1993D6F9000000000 /* GaussianBlurFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurFilter.hpp; path = mediapipe/render/core/GaussianBlurFilter.hpp; sourceTree = ""; }; - 6BF2BEB19CA882CA00000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; - 6BF2BEB19E1406F200000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1A061BE4E00000000 /* FaceDistortionFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FaceDistortionFilter.hpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp; 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 = ""; }; - 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_rectangle_util_BC608102_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 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 = ""; }; - 6BF2BEB1A5AE2EC700000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; - 6BF2BEB1A65D9EE000000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; - 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; - 6BF2BEB1A7FF5C8D00000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; - 6BF2BEB1AA92561800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 6BF2BEB1AAA709F700000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; - 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; - 6BF2BEB1ACECC86600000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; - 6BF2BEB1AD0229B000000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; - 6BF2BEB1AE45ACD400000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.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 = ""; }; - 6BF2BEB1B6C12DD500000000 /* OlaShareTextureFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaShareTextureFilter.hpp; path = mediapipe/render/core/OlaShareTextureFilter.hpp; sourceTree = ""; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1BD589A4200000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; - 6BF2BEB1C0DA62F400000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; - 6BF2BEB1C133DCA000000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; - 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; - 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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; }; - 6BF2BEB1C9C325FA00000000 /* lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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; 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 = ""; }; - 6BF2BEB1CB5A8A0E00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; - 6BF2BEB1CC197DE700000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_annotation_renderer_8D68840D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D796612B00000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; - 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 6BF2BEB1DC26EEDA00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1DE300BF600000000 /* lib_idx_olamodule_common_library_63E72567_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_olamodule_common_library_63E72567_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1DEE6BAFA00000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; - 6BF2BEB1DF7A0C9B00000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; - 6BF2BEB1E1673ED500000000 /* OlaBeautyFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaBeautyFilter.hpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp; sourceTree = ""; }; - 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_cpu_op_resolver_519CBACD_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 = ""; }; - 6BF2BEB1E2AEF3B900000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; - 6BF2BEB1E2B253BD00000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; - 6BF2BEB1E364A8E800000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 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; 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; path = "lib_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; 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 = ""; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1ECDFFE8400000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; 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 = ""; }; - 6BF2BEB1F14A7B4C00000000 /* GaussianBlurMonoFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurMonoFilter.hpp; path = mediapipe/render/core/GaussianBlurMonoFilter.hpp; sourceTree = ""; }; - 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; - 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 = ""; }; - 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 = ""; }; - 6BF2BEB1FD2AF7C900000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; - 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 = ""; }; + 9D1A051802966FD400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05180375622900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/common/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A051804A58F1B00000000 /* face_mesh_beauty_render.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = face_mesh_beauty_render.cc; path = mediapipe/render/module/beauty/face_mesh_beauty_render.cc; sourceTree = ""; }; + 9D1A051804A5991600000000 /* gate_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = gate_calculator.cc; path = mediapipe/calculators/core/gate_calculator.cc; sourceTree = ""; }; + 9D1A0518063BE3CE00000000 /* mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = mat4.inl; path = mediapipe/render/core/math/mat4.inl; sourceTree = ""; }; + 9D1A0518066C4E0D00000000 /* GaussianBlurFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurFilter.hpp; path = mediapipe/render/core/GaussianBlurFilter.hpp; sourceTree = ""; }; + 9D1A051808CC5F0300000000 /* vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec4.inl; path = mediapipe/render/core/math/vec4.inl; sourceTree = ""; }; + 9D1A0518096960DC00000000 /* cpu_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_util.cc; path = mediapipe/util/cpu_util.cc; sourceTree = ""; }; + 9D1A05180998301500000000 /* OlaYUVTexture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaYUVTexture.cpp; path = mediapipe/render/core/OlaYUVTexture.cpp; sourceTree = ""; }; + 9D1A05180BFA182800000000 /* CVFramebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = CVFramebuffer.hpp; path = mediapipe/render/core/CVFramebuffer.hpp; sourceTree = ""; }; + 9D1A05180D76B93300000000 /* annotation_renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = annotation_renderer.h; path = mediapipe/util/annotation_renderer.h; sourceTree = ""; }; + 9D1A05180D7B778E00000000 /* resource_util_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_internal.h; path = mediapipe/util/resource_util_internal.h; sourceTree = ""; }; + 9D1A05180E17E2F200000000 /* 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; }; + 9D1A05180E1AA60400000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a; path = lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05180E21C32E00000000 /* GaussianBlurMonoFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GaussianBlurMonoFilter.hpp; path = mediapipe/render/core/GaussianBlurMonoFilter.hpp; sourceTree = ""; }; + 9D1A05180ECCEE5400000000 /* lib_idx_end_loop_calculator_86552B41_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_end_loop_calculator_86552B41_ios_min11.0.a; path = lib_idx_end_loop_calculator_86552B41_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518113D77AC00000000 /* GPUImageUtil.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GPUImageUtil.cpp; path = mediapipe/render/core/GPUImageUtil.cpp; sourceTree = ""; }; + 9D1A0518114131F400000000 /* landmark_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmark_projection_calculator.cc; path = mediapipe/calculators/util/landmark_projection_calculator.cc; sourceTree = ""; }; + 9D1A05181146E56B00000000 /* 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 = ""; }; + 9D1A051812551AD500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518127F047A00000000 /* OlaContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaContext.cpp; path = mediapipe/render/core/OlaContext.cpp; sourceTree = ""; }; + 9D1A051812B76B6900000000 /* Weakify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Weakify.h; path = mediapipe/objc/Weakify.h; sourceTree = ""; }; + 9D1A05181305049200000000 /* 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 = ""; }; + 9D1A051813CAE71A00000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a; path = lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05181474692000000000 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = config.h; path = mediapipe/util/tflite/config.h; sourceTree = ""; }; + 9D1A05181525E57200000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a; path = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OpipeDispatch.cpp; path = mediapipe/render/core/OpipeDispatch.cpp; sourceTree = ""; }; + 9D1A0518177BF5DC00000000 /* SourceImage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceImage.hpp; path = mediapipe/render/core/SourceImage.hpp; sourceTree = ""; }; + 9D1A051817D70EAE00000000 /* vec3.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec3.cpp; path = mediapipe/render/core/math/vec3.cpp; sourceTree = ""; }; + 9D1A051819FE849A00000000 /* MPPGraph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPGraph.h; path = mediapipe/objc/MPPGraph.h; sourceTree = ""; }; + 9D1A05181A5AF34500000000 /* Context.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Context.cpp; path = mediapipe/render/core/Context.cpp; sourceTree = ""; }; + 9D1A05181B2F8A3200000000 /* lib_idx_op_resolver_E0F4B742_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_E0F4B742_ios_min11.0.a; path = lib_idx_op_resolver_E0F4B742_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05181C25645A00000000 /* OlaFURenderView.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFURenderView.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFURenderView.mm; sourceTree = ""; }; + 9D1A05181DF1A9C200000000 /* lib_idx_rectangle_util_F7F3797D_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_F7F3797D_ios_min15.5.a; path = lib_idx_rectangle_util_F7F3797D_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05181E3EB3B900000000 /* rect_to_render_data_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_to_render_data_calculator.cc; path = mediapipe/calculators/util/rect_to_render_data_calculator.cc; sourceTree = ""; }; + 9D1A0518203E676800000000 /* math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math.cpp; path = mediapipe/render/core/math.cpp; sourceTree = ""; }; + 9D1A051820AE9EF100000000 /* vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec2.hpp; path = mediapipe/render/core/math/vec2.hpp; sourceTree = ""; }; + 9D1A051824028C2A00000000 /* Framebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Framebuffer.cpp; path = mediapipe/render/core/Framebuffer.cpp; sourceTree = ""; }; + 9D1A05182594A9C400000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a; path = lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051825CCC4DB00000000 /* util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = util.cc; path = mediapipe/objc/util.cc; sourceTree = ""; }; + 9D1A051825EC849700000000 /* vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec3.inl; path = mediapipe/render/core/math/vec3.inl; sourceTree = ""; }; + 9D1A0518266378A900000000 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = Info.plist; path = mediapipe/render/module/beauty/ios/framework/Info.plist; sourceTree = ""; }; + 9D1A05182760766100000000 /* CVFramebuffer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = CVFramebuffer.cpp; path = mediapipe/render/core/CVFramebuffer.cpp; sourceTree = ""; }; + 9D1A051827D99ADA00000000 /* lib_idx_resource_util_1F0C7A9C_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_1F0C7A9C_ios_min11.0.a; path = lib_idx_resource_util_1F0C7A9C_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051828081DE300000000 /* math_utils.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math_utils.hpp; path = mediapipe/render/core/math/math_utils.hpp; sourceTree = ""; }; + 9D1A05182935B14C00000000 /* Source.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Source.hpp; path = mediapipe/render/core/Source.hpp; sourceTree = ""; }; + 9D1A05182B39F7E500000000 /* OlaShareTextureFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaShareTextureFilter.hpp; path = mediapipe/render/core/OlaShareTextureFilter.hpp; sourceTree = ""; }; + 9D1A05182B43FF6000000000 /* OlaFaceUnity.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFaceUnity.h; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h; sourceTree = ""; }; + 9D1A05182FCEFE9300000000 /* 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 = ""; }; + 9D1A05183131F3C900000000 /* GLProgram.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = GLProgram.hpp; path = mediapipe/render/core/GLProgram.hpp; sourceTree = ""; }; + 9D1A05183162C67E00000000 /* Framebuffer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Framebuffer.hpp; path = mediapipe/render/core/Framebuffer.hpp; sourceTree = ""; }; + 9D1A0518319E66FE00000000 /* lib_idx_rectangle_util_F7F3797D_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_rectangle_util_F7F3797D_ios_min11.0.a; path = lib_idx_rectangle_util_F7F3797D_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051833C1DC2900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A051834FB261400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a"; path = "lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518352B1EEA00000000 /* MPPTimestampConverter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MPPTimestampConverter.h; path = mediapipe/objc/MPPTimestampConverter.h; sourceTree = ""; }; + 9D1A0518366C28A700000000 /* GLProgram.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLProgram.cpp; path = mediapipe/render/core/GLProgram.cpp; sourceTree = ""; }; + 9D1A0518376F697300000000 /* resource_util_apple.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util_apple.cc; path = mediapipe/util/resource_util_apple.cc; sourceTree = ""; }; + 9D1A051838C0C4BB00000000 /* face_mesh_module_imp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = face_mesh_module_imp.h; path = mediapipe/render/module/beauty/face_mesh_module_imp.h; sourceTree = ""; }; + 9D1A051839A89AA300000000 /* 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 = ""; }; + 9D1A05183B3CEB1F00000000 /* FaceDistortionFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FaceDistortionFilter.hpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.hpp; sourceTree = ""; }; + 9D1A05183DC616A900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05183FD54BB400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a; path = lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GLThreadDispatch.cpp; path = mediapipe/render/core/GLThreadDispatch.cpp; sourceTree = ""; }; + 9D1A0518410C5DD800000000 /* detection_projection_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = detection_projection_calculator.cc; path = mediapipe/calculators/util/detection_projection_calculator.cc; sourceTree = ""; }; + 9D1A05184134770200000000 /* op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = op_resolver.cc; path = mediapipe/util/tflite/op_resolver.cc; sourceTree = ""; }; + 9D1A0518422C40C000000000 /* lib_idx_resource_util_1F0C7A9C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_resource_util_1F0C7A9C_ios_min15.5.a; path = lib_idx_resource_util_1F0C7A9C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051842F66AD900000000 /* OlaYUVTexture.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaYUVTexture.hpp; path = mediapipe/render/core/OlaYUVTexture.hpp; sourceTree = ""; }; + 9D1A051843C1826400000000 /* resource_cache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_cache.h; path = mediapipe/util/resource_cache.h; sourceTree = ""; }; + 9D1A051846C9BCC000000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a; path = lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051847E90D2C00000000 /* cpu_op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_op_resolver.h; path = mediapipe/util/tflite/cpu_op_resolver.h; sourceTree = ""; }; + 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaYUVTexture420P.cpp; path = mediapipe/render/core/OlaYUVTexture420P.cpp; sourceTree = ""; }; + 9D1A05184881BA4200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a; path = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051849DC5EB500000000 /* 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 = ""; }; + 9D1A05184A2CA38100000000 /* resource_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = resource_util.cc; path = mediapipe/util/resource_util.cc; sourceTree = ""; }; + 9D1A05184B1F208800000000 /* OlaFaceUnityFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = OlaFaceUnityFramework.framework; path = OlaFaceUnityFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralFilter.cpp; path = mediapipe/render/core/BilateralFilter.cpp; sourceTree = ""; }; + 9D1A05184D3BD64000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/objc/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518512406DA00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a; path = lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05185153B35400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = "lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a"; path = "lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051854BA5F7800000000 /* lib_idx_util_DB4949E7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_DB4949E7_ios_min11.0.a; path = lib_idx_util_DB4949E7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05185547722D00000000 /* LUTFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = LUTFilter.cpp; path = mediapipe/render/core/LUTFilter.cpp; sourceTree = ""; }; + 9D1A051857A288AA00000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a; path = lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518595854F000000000 /* mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = mat4.hpp; path = mediapipe/render/core/math/mat4.hpp; sourceTree = ""; }; + 9D1A05185B6ABC2900000000 /* landmarks_refinement_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = landmarks_refinement_calculator.cc; path = mediapipe/calculators/util/landmarks_refinement_calculator.cc; sourceTree = ""; }; + 9D1A05185D07203900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/core/math/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05185EE3B86400000000 /* 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 = ""; }; + 9D1A05185F35D42400000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a; path = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05185FA0C8B400000000 /* 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 = ""; }; + 9D1A051861EDA9EE00000000 /* annotation_overlay_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_overlay_calculator.cc; path = mediapipe/calculators/util/annotation_overlay_calculator.cc; sourceTree = ""; }; + 9D1A0518639A579500000000 /* ola_graph.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = ola_graph.cc; path = mediapipe/render/module/common/ola_graph.cc; sourceTree = ""; }; + 9D1A0518642109BB00000000 /* 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 = ""; }; + 9D1A0518645D971900000000 /* whiten.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = whiten.png; path = mediapipe/render/module/beauty/whiten.png; sourceTree = ""; }; + 9D1A051864A9E9AF00000000 /* FilterGroup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FilterGroup.hpp; path = mediapipe/render/core/FilterGroup.hpp; sourceTree = ""; }; + 9D1A051865A2AC4C00000000 /* vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec3.hpp; path = mediapipe/render/core/math/vec3.hpp; sourceTree = ""; }; + 9D1A051867188FD300000000 /* 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 = ""; }; + 9D1A0518684D787900000000 /* TargetView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = TargetView.hpp; path = mediapipe/render/core/TargetView.hpp; sourceTree = ""; }; + 9D1A0518685B94E400000000 /* rectangle_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = rectangle_util.h; path = mediapipe/util/rectangle_util.h; sourceTree = ""; }; + 9D1A0518688BDBD200000000 /* Source.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Source.cpp; path = mediapipe/render/core/Source.cpp; sourceTree = ""; }; + 9D1A051869908BC300000000 /* tflite_model_loader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = tflite_model_loader.h; path = mediapipe/util/tflite/tflite_model_loader.h; sourceTree = ""; }; + 9D1A05186ABFADC400000000 /* lib_idx_util_DB4949E7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_util_DB4949E7_ios_min15.5.a; path = lib_idx_util_DB4949E7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05186B38661900000000 /* SourceImage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceImage.cpp; path = mediapipe/render/core/SourceImage.cpp; sourceTree = ""; }; + 9D1A05186CDB0ACA00000000 /* mat4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mat4.cpp; path = mediapipe/render/core/math/mat4.cpp; sourceTree = ""; }; + 9D1A05186E4FB1CD00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05186E57166000000000 /* flow_limiter_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = flow_limiter_calculator.cc; path = mediapipe/calculators/core/flow_limiter_calculator.cc; sourceTree = ""; }; + 9D1A05186E9B269900000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/calculators/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05186F7EC4F200000000 /* OlaBeautyFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaBeautyFilter.hpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.hpp; sourceTree = ""; }; + 9D1A05186FF4047100000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/ios/framework/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518725B276300000000 /* GPUImage-x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "GPUImage-x.h"; path = "mediapipe/render/core/GPUImage-x.h"; sourceTree = ""; }; + 9D1A0518744AC67600000000 /* lib_idx_split_vector_calculator_EE664713_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_EE664713_ios_min15.5.a; path = lib_idx_split_vector_calculator_EE664713_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518751E5EC300000000 /* ola_graph.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ola_graph.h; path = mediapipe/render/module/common/ola_graph.h; sourceTree = ""; }; + 9D1A051877EBE7ED00000000 /* OlaCameraSource.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaCameraSource.hpp; path = mediapipe/render/core/OlaCameraSource.hpp; sourceTree = ""; }; + 9D1A05187823907000000000 /* NSError+util_status.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "NSError+util_status.h"; path = "mediapipe/objc/NSError+util_status.h"; sourceTree = ""; }; + 9D1A05187869539F00000000 /* OlaCameraSource.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaCameraSource.cpp; path = mediapipe/render/core/OlaCameraSource.cpp; sourceTree = ""; }; + 9D1A0518787CABCF00000000 /* 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 = ""; }; + 9D1A051879C1EA7100000000 /* begin_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = begin_loop_calculator.h; path = mediapipe/calculators/core/begin_loop_calculator.h; sourceTree = ""; }; + 9D1A051879CDDFED00000000 /* association_norm_rect_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = association_norm_rect_calculator.cc; path = mediapipe/calculators/util/association_norm_rect_calculator.cc; sourceTree = ""; }; + 9D1A05187A216ECF00000000 /* vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = vec4.hpp; path = mediapipe/render/core/math/vec4.hpp; sourceTree = ""; }; + 9D1A05187A218DF500000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/operations/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05187B60069400000000 /* lib_idx_math_CF33D7F4_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_CF33D7F4_ios_min15.5.a; path = lib_idx_math_CF33D7F4_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05187BE50ADE00000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a; path = lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05187C5F35A200000000 /* LUTFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = LUTFilter.hpp; path = mediapipe/render/core/LUTFilter.hpp; sourceTree = ""; }; + 9D1A05187CDDDF8800000000 /* lib_idx_split_vector_calculator_EE664713_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_split_vector_calculator_EE664713_ios_min11.0.a; path = lib_idx_split_vector_calculator_EE664713_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05187ECFCE7B00000000 /* OlaFURenderView+private.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "OlaFURenderView+private.h"; path = "mediapipe/render/module/beauty/ios/framework/OlaFURenderView+private.h"; sourceTree = ""; }; + 9D1A05187F5B6DB400000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/render/module/beauty/filters/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05188105E18A00000000 /* vec2.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec2.cpp; path = mediapipe/render/core/math/vec2.cpp; sourceTree = ""; }; + 9D1A051882F42E8800000000 /* annotation_renderer.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = annotation_renderer.cc; path = mediapipe/util/annotation_renderer.cc; sourceTree = ""; }; + 9D1A051883042E5400000000 /* 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 = ""; }; + 9D1A051883610D1700000000 /* dispatch_queue.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dispatch_queue.h; path = mediapipe/render/core/dispatch_queue.h; sourceTree = ""; }; + 9D1A0518861FB3F100000000 /* header_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = header_util.h; path = mediapipe/util/header_util.h; sourceTree = ""; }; + 9D1A05188627D7BA00000000 /* lib_idx_cpu_util_10B87B03_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_10B87B03_ios_min11.0.a; path = lib_idx_cpu_util_10B87B03_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051886A483C600000000 /* to_image_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = to_image_calculator.cc; path = mediapipe/calculators/util/to_image_calculator.cc; sourceTree = ""; }; + 9D1A05188A70D79000000000 /* OlaFaceUnity.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = OlaFaceUnity.mm; path = mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm; sourceTree = ""; }; + 9D1A05188A905DF800000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/subgraphs/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05188B0EDA5B00000000 /* BilateralAdjustFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralAdjustFilter.hpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.hpp; sourceTree = ""; }; + 9D1A05188B611C8500000000 /* OlaContext.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaContext.hpp; path = mediapipe/render/core/OlaContext.hpp; sourceTree = ""; }; + 9D1A05188C56761300000000 /* 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 = ""; }; + 9D1A05188C8DBC2A00000000 /* SourceCamera.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = SourceCamera.hpp; path = mediapipe/render/core/SourceCamera.hpp; sourceTree = ""; }; + 9D1A05188CA4A16800000000 /* rect_transformation_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rect_transformation_calculator.cc; path = mediapipe/calculators/util/rect_transformation_calculator.cc; sourceTree = ""; }; + 9D1A05188CE4050500000000 /* IOSTarget.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = IOSTarget.hpp; path = mediapipe/render/core/IOSTarget.hpp; sourceTree = ""; }; + 9D1A05188DC416F400000000 /* 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 = ""; }; + 9D1A05188E7107A200000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a; path = lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051892C1EE4000000000 /* 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 = ""; }; + 9D1A051892D87F3800000000 /* lib_idx_annotation_renderer_78B04092_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_78B04092_ios_min15.5.a; path = lib_idx_annotation_renderer_78B04092_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518933A0E8A00000000 /* 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 = ""; }; + 9D1A051893A216DD00000000 /* split_vector_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = split_vector_calculator.cc; path = mediapipe/calculators/core/split_vector_calculator.cc; sourceTree = ""; }; + 9D1A051893DCB3DF00000000 /* cpu_op_resolver.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = cpu_op_resolver.cc; path = mediapipe/util/tflite/cpu_op_resolver.cc; sourceTree = ""; }; + 9D1A0518966DC69800000000 /* resource_util_custom.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util_custom.h; path = mediapipe/util/resource_util_custom.h; sourceTree = ""; }; + 9D1A05189671FDDE00000000 /* lib_idx_end_loop_calculator_86552B41_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_end_loop_calculator_86552B41_ios_min15.5.a; path = lib_idx_end_loop_calculator_86552B41_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A051896C3F23200000000 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = util.h; path = mediapipe/objc/util.h; sourceTree = ""; }; + 9D1A0518972E59FC00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05189733546E00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a; path = lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518980FFD2B00000000 /* thresholding_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = thresholding_calculator.cc; path = mediapipe/calculators/util/thresholding_calculator.cc; sourceTree = ""; }; + 9D1A05189A6D4D1E00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a; path = lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A05189BB9EF1F00000000 /* FaceDistortionFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FaceDistortionFilter.cpp; path = mediapipe/render/module/beauty/filters/FaceDistortionFilter.cpp; sourceTree = ""; }; + 9D1A05189D72898000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/util/tflite/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A05189F81490A00000000 /* FramebufferCache.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = FramebufferCache.hpp; path = mediapipe/render/core/FramebufferCache.hpp; sourceTree = ""; }; + 9D1A05189FDA768C00000000 /* 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; }; + 9D1A05189FEDE59900000000 /* UnSharpMaskFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UnSharpMaskFilter.cpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.cpp; sourceTree = ""; }; + 9D1A0518A0143EF000000000 /* math.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = math.hpp; path = mediapipe/render/core/math.hpp; sourceTree = ""; }; + 9D1A0518A18B807100000000 /* max_unpooling.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = max_unpooling.cc; path = mediapipe/util/tflite/operations/max_unpooling.cc; sourceTree = ""; }; + 9D1A0518A2CE96B500000000 /* cpu_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cpu_util.h; path = mediapipe/util/cpu_util.h; sourceTree = ""; }; + 9D1A0518A356AD7A00000000 /* 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 = ""; }; + 9D1A0518A4931D0C00000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a; path = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518A5E7FC3800000000 /* OlaYUVTexture420P.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OlaYUVTexture420P.hpp; path = mediapipe/render/core/OlaYUVTexture420P.hpp; sourceTree = ""; }; + 9D1A0518A60BC44C00000000 /* GLThreadDispatch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GLThreadDispatch.h; path = mediapipe/render/core/GLThreadDispatch.h; sourceTree = ""; }; + 9D1A0518A6381C9400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a; path = lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518A69AB48400000000 /* AlphaBlendFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = AlphaBlendFilter.hpp; path = mediapipe/render/core/AlphaBlendFilter.hpp; sourceTree = ""; }; + 9D1A0518A746B79E00000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a; path = lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518A7D4FA6600000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/calculators/core/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518A98FD37A00000000 /* 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 = ""; }; + 9D1A0518AAC6AE2600000000 /* Context.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Context.hpp; path = mediapipe/render/core/Context.hpp; sourceTree = ""; }; + 9D1A0518AB8340A100000000 /* clip_vector_size_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = clip_vector_size_calculator.h; path = mediapipe/calculators/core/clip_vector_size_calculator.h; sourceTree = ""; }; + 9D1A0518AC54908400000000 /* vec4.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = vec4.cpp; path = mediapipe/render/core/math/vec4.cpp; sourceTree = ""; }; + 9D1A0518AE1AB07600000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a; path = lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B1B8DD1E00000000 /* GPUImageTarget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageTarget.h; path = mediapipe/render/core/GPUImageTarget.h; sourceTree = ""; }; + 9D1A0518B23B789600000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a; path = lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B292C24E00000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a; path = lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B30B9D4C00000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_landmark/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518B3937F2C00000000 /* lib_idx_annotation_renderer_78B04092_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_renderer_78B04092_ios_min11.0.a; path = lib_idx_annotation_renderer_78B04092_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B521D43500000000 /* 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 = ""; }; + 9D1A0518B541904500000000 /* IOSTarget.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IOSTarget.cpp; path = mediapipe/render/core/IOSTarget.cpp; sourceTree = ""; }; + 9D1A0518B5549E7B00000000 /* Filter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Filter.cpp; path = mediapipe/render/core/Filter.cpp; sourceTree = ""; }; + 9D1A0518B5F5FAF600000000 /* 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 = ""; }; + 9D1A0518B613740000000000 /* Ref.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Ref.hpp; path = mediapipe/render/core/Ref.hpp; sourceTree = ""; }; + 9D1A0518B664407200000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a; path = lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B6B5272400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518B78AD11C00000000 /* end_loop_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = end_loop_calculator.h; path = mediapipe/calculators/core/end_loop_calculator.h; sourceTree = ""; }; + 9D1A0518B7BA50F300000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/modules/face_detection/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = dispatch_queue.cpp; path = mediapipe/render/core/dispatch_queue.cpp; sourceTree = ""; }; + 9D1A0518BAA9784900000000 /* Target.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Target.cpp; path = mediapipe/render/core/Target.cpp; sourceTree = ""; }; + 9D1A0518BE434D4400000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a; path = lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518C02E8EFC00000000 /* vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = "public.c-plus-plus-inline-header"; name = vec2.inl; path = mediapipe/render/core/math/vec2.inl; sourceTree = ""; }; + 9D1A0518C149E4D200000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a; path = lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurMonoFilter.cpp; path = mediapipe/render/core/GaussianBlurMonoFilter.cpp; sourceTree = ""; }; + 9D1A0518C37C73A600000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a; path = lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518C3A73AA000000000 /* transform_landmarks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = transform_landmarks.h; path = mediapipe/util/tflite/operations/transform_landmarks.h; sourceTree = ""; }; + 9D1A0518C42E852300000000 /* GPUImageMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageMacros.h; path = mediapipe/render/core/GPUImageMacros.h; sourceTree = ""; }; + 9D1A0518C5471AEE00000000 /* header_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = header_util.cc; path = mediapipe/util/header_util.cc; sourceTree = ""; }; + 9D1A0518C674540100000000 /* 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 = ""; }; + 9D1A0518C6764EF400000000 /* UnSharpMaskFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = UnSharpMaskFilter.hpp; path = mediapipe/render/module/beauty/filters/UnSharpMaskFilter.hpp; sourceTree = ""; }; + 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = GaussianBlurFilter.cpp; path = mediapipe/render/core/GaussianBlurFilter.cpp; sourceTree = ""; }; + 9D1A0518C8241DD300000000 /* tflite_model_loader.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = tflite_model_loader.cc; path = mediapipe/util/tflite/tflite_model_loader.cc; sourceTree = ""; }; + 9D1A0518C9DDC88E00000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a; path = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518CA92186300000000 /* 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 = ""; }; + 9D1A0518CB56A17700000000 /* BilateralAdjustFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = BilateralAdjustFilter.cpp; path = mediapipe/render/module/beauty/filters/BilateralAdjustFilter.cpp; sourceTree = ""; }; + 9D1A0518CBAB276E00000000 /* Target.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Target.hpp; path = mediapipe/render/core/Target.hpp; sourceTree = ""; }; + 9D1A0518CBB47E9500000000 /* split_vector_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = split_vector_calculator.h; path = mediapipe/calculators/core/split_vector_calculator.h; sourceTree = ""; }; + 9D1A0518CBCD2E1300000000 /* 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 = ""; }; + 9D1A0518CCBA847000000000 /* BUILD */ = {isa = PBXFileReference; lastKnownFileType = text; name = BUILD; path = mediapipe/graphs/face_mesh/BUILD; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.python; }; + 9D1A0518CDE6335300000000 /* op_resolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = op_resolver.h; path = mediapipe/util/tflite/op_resolver.h; sourceTree = ""; }; + 9D1A0518CE79CE1600000000 /* Filter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = Filter.hpp; path = mediapipe/render/core/Filter.hpp; sourceTree = ""; }; + 9D1A0518D1B5118600000000 /* GPUImageUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = GPUImageUtil.h; path = mediapipe/render/core/GPUImageUtil.h; sourceTree = ""; }; + 9D1A0518D295FD0100000000 /* 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 = ""; }; + 9D1A0518D63539AE00000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a; path = lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518D6C3FC5800000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a; path = lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518D74DCFC000000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a; path = lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SourceCamera.cpp; path = mediapipe/render/core/SourceCamera.cpp; sourceTree = ""; }; + 9D1A0518D7857AC700000000 /* OlaFURenderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OlaFURenderView.h; path = mediapipe/render/module/beauty/ios/framework/OlaFURenderView.h; sourceTree = ""; }; + 9D1A0518DABFB62900000000 /* 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 = ""; }; + 9D1A0518DB5F819800000000 /* lib_idx_op_resolver_E0F4B742_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_op_resolver_E0F4B742_ios_min15.5.a; path = lib_idx_op_resolver_E0F4B742_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518DBAB102500000000 /* BilateralFilter.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = BilateralFilter.hpp; path = mediapipe/render/core/BilateralFilter.hpp; sourceTree = ""; }; + 9D1A0518DC58ED3200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a; path = lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AlphaBlendFilter.cpp; path = mediapipe/render/core/AlphaBlendFilter.cpp; sourceTree = ""; }; + 9D1A0518DDD8C9DE00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a; path = lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518DE5D32A000000000 /* OpipeDispatch.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = OpipeDispatch.hpp; path = mediapipe/render/core/OpipeDispatch.hpp; sourceTree = ""; }; + 9D1A0518DEF8A23A00000000 /* begin_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = begin_loop_calculator.cc; path = mediapipe/calculators/core/begin_loop_calculator.cc; sourceTree = ""; }; + 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FramebufferCache.cpp; path = mediapipe/render/core/FramebufferCache.cpp; sourceTree = ""; }; + 9D1A0518E03ABFCA00000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a; path = lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518E1ED7AB700000000 /* transform_landmarks.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = transform_landmarks.cc; path = mediapipe/util/tflite/operations/transform_landmarks.cc; sourceTree = ""; }; + 9D1A0518E3C3E8F500000000 /* CFHolder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CFHolder.h; path = mediapipe/objc/CFHolder.h; sourceTree = ""; }; + 9D1A0518E5F7536D00000000 /* math_utils.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = math_utils.cpp; path = mediapipe/render/core/math/math_utils.cpp; sourceTree = ""; }; + 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaShareTextureFilter.cpp; path = mediapipe/render/core/OlaShareTextureFilter.cpp; sourceTree = ""; }; + 9D1A0518E67803DB00000000 /* association_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = association_calculator.h; path = mediapipe/calculators/util/association_calculator.h; sourceTree = ""; }; + 9D1A0518E825A12700000000 /* landmarks_refinement_calculator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = landmarks_refinement_calculator.h; path = mediapipe/calculators/util/landmarks_refinement_calculator.h; sourceTree = ""; }; + 9D1A0518E8B4FA8F00000000 /* previous_loopback_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = previous_loopback_calculator.cc; path = mediapipe/calculators/core/previous_loopback_calculator.cc; sourceTree = ""; }; + 9D1A0518E9BFDC3600000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a; path = lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518EA12225700000000 /* Ref.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = Ref.cpp; path = mediapipe/render/core/Ref.cpp; sourceTree = ""; }; + 9D1A0518EA21FA1F00000000 /* 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 = ""; }; + 9D1A0518EB369FC300000000 /* max_unpooling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = max_unpooling.h; path = mediapipe/util/tflite/operations/max_unpooling.h; sourceTree = ""; }; + 9D1A0518EED1272900000000 /* FilterGroup.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = FilterGroup.cpp; path = mediapipe/render/core/FilterGroup.cpp; sourceTree = ""; }; + 9D1A0518F07B10B000000000 /* rectangle_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = rectangle_util.cc; path = mediapipe/util/rectangle_util.cc; sourceTree = ""; }; + 9D1A0518F1CB02DD00000000 /* 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 = ""; }; + 9D1A0518F4A5C11D00000000 /* 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 = ""; }; + 9D1A0518F4A92B1800000000 /* NSError+util_status.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = "NSError+util_status.mm"; path = "mediapipe/objc/NSError+util_status.mm"; sourceTree = ""; }; + 9D1A0518F509679800000000 /* lib_idx_math_CF33D7F4_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_math_CF33D7F4_ios_min11.0.a; path = lib_idx_math_CF33D7F4_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518F520944600000000 /* TargetView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TargetView.cpp; path = mediapipe/render/core/TargetView.cpp; sourceTree = ""; }; + 9D1A0518F524754100000000 /* OlaBeautyFilter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = OlaBeautyFilter.cpp; path = mediapipe/render/module/beauty/filters/OlaBeautyFilter.cpp; sourceTree = ""; }; + 9D1A0518F53D342400000000 /* end_loop_calculator.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = end_loop_calculator.cc; path = mediapipe/calculators/core/end_loop_calculator.cc; sourceTree = ""; }; + 9D1A0518F5B9388A00000000 /* lib_idx_cpu_util_10B87B03_ios_min15.5.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_cpu_util_10B87B03_ios_min15.5.a; path = lib_idx_cpu_util_10B87B03_ios_min15.5.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518F7EB18CD00000000 /* 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 = ""; }; + 9D1A0518F9C12FD800000000 /* resource_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = resource_util.h; path = mediapipe/util/resource_util.h; sourceTree = ""; }; + 9D1A0518FAF3CE2D00000000 /* 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 = ""; }; + 9D1A0518FC1FDA7A00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a; path = lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D1A0518FE41FA1300000000 /* MPPTimestampConverter.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPTimestampConverter.mm; path = mediapipe/objc/MPPTimestampConverter.mm; sourceTree = ""; }; + 9D1A0518FF488C3100000000 /* MPPGraph.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = MPPGraph.mm; path = mediapipe/objc/MPPGraph.mm; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXGroup section */ - A2FEA73614054AB100000000 /* subgraphs */ = { + E8B2C9ED0128FCEE00000000 /* operations */ = { isa = PBXGroup; children = ( - 6BF2BEB198F11B7B00000000 /* BUILD */, + 9D1A05187A218DF500000000 /* BUILD */, + 9D1A05181305049200000000 /* landmarks_to_transform_matrix.cc */, + 9D1A0518933A0E8A00000000 /* landmarks_to_transform_matrix.h */, + 9D1A0518D295FD0100000000 /* max_pool_argmax.cc */, + 9D1A05182FCEFE9300000000 /* max_pool_argmax.h */, + 9D1A0518A18B807100000000 /* max_unpooling.cc */, + 9D1A0518EB369FC300000000 /* max_unpooling.h */, + 9D1A0518E1ED7AB700000000 /* transform_landmarks.cc */, + 9D1A0518C3A73AA000000000 /* transform_landmarks.h */, + 9D1A0518FAF3CE2D00000000 /* transform_tensor_bilinear.cc */, + 9D1A0518F7EB18CD00000000 /* transform_tensor_bilinear.h */, + 9D1A051849DC5EB500000000 /* transpose_conv_bias.cc */, + 9D1A051867188FD300000000 /* transpose_conv_bias.h */, + ); + name = operations; + sourceTree = ""; + }; + E8B2C9ED0385C42100000000 /* subgraphs */ = { + isa = PBXGroup; + children = ( + 9D1A05188A905DF800000000 /* BUILD */, ); name = subgraphs; sourceTree = ""; }; - A2FEA7361BD7967800000000 /* common */ = { + E8B2C9ED05207DC700000000 /* beauty */ = { isa = PBXGroup; children = ( - 6BF2BEB1C846EAA000000000 /* BUILD */, - 6BF2BEB17071A1E200000000 /* ola_graph.cc */, - 6BF2BEB1510392E900000000 /* ola_graph.h */, + E8B2C9EDBB0175AA00000000 /* ios */, ); - name = common; + name = beauty; sourceTree = ""; }; - A2FEA7361E84DE5500000000 /* face_detection */ = { + E8B2C9ED05207DC700000001 /* beauty */ = { isa = PBXGroup; children = ( - 6BF2BEB1119EB78500000000 /* BUILD */, - 6BF2BEB14E71984800000000 /* face_detection_short_range.tflite */, + 9D1A05186E4FB1CD00000000 /* BUILD */, + 9D1A051804A58F1B00000000 /* face_mesh_beauty_render.cc */, + 9D1A0518A356AD7A00000000 /* face_mesh_beauty_render.h */, + 9D1A0518F4A5C11D00000000 /* face_mesh_common.h */, + 9D1A051883042E5400000000 /* face_mesh_module.cc */, + 9D1A05185EE3B86400000000 /* face_mesh_module.h */, + 9D1A0518EA21FA1F00000000 /* face_mesh_module_imp.cc */, + 9D1A051838C0C4BB00000000 /* face_mesh_module_imp.h */, + E8B2C9ED52591FFA00000000 /* filters */, + E8B2C9EDBB0175AA00000001 /* ios */, + 9D1A0518645D971900000000 /* whiten.png */, ); - name = face_detection; + name = beauty; sourceTree = ""; }; - A2FEA73620B6F45900000000 /* module */ = { + E8B2C9ED1435F1CF00000000 /* tflite */ = { isa = PBXGroup; children = ( - A2FEA73669327E8300000000 /* beauty */, - ); - name = module; - sourceTree = ""; - }; - A2FEA73620B6F45900000001 /* module */ = { - isa = PBXGroup; - children = ( - A2FEA73669327E8300000001 /* beauty */, - A2FEA7361BD7967800000000 /* common */, - ); - name = module; - sourceTree = ""; - }; - A2FEA7362BB2A4B700000000 /* OlaFaceUnityFramework-intermediates */ = { - isa = PBXGroup; - children = ( - 6BF2BEB12E332C1B00000000 /* Info.plist */, - ); - name = "OlaFaceUnityFramework-intermediates"; - sourceTree = ""; - }; - A2FEA7362CCC109A00000000 /* tflite */ = { - isa = PBXGroup; - children = ( - 6BF2BEB19448E48100000000 /* BUILD */, - 6BF2BEB1AD0229B000000000 /* config.h */, - 6BF2BEB101794B7100000000 /* cpu_op_resolver.cc */, - 6BF2BEB11C6B16F100000000 /* cpu_op_resolver.h */, - 6BF2BEB1665E250A00000000 /* op_resolver.cc */, - 6BF2BEB192A4902100000000 /* op_resolver.h */, - A2FEA736A2BCADC200000000 /* operations */, - 6BF2BEB1F3CC262D00000000 /* tflite_model_loader.cc */, - 6BF2BEB1E66C0F0900000000 /* tflite_model_loader.h */, + 9D1A05189D72898000000000 /* BUILD */, + 9D1A05181474692000000000 /* config.h */, + 9D1A051893DCB3DF00000000 /* cpu_op_resolver.cc */, + 9D1A051847E90D2C00000000 /* cpu_op_resolver.h */, + 9D1A05184134770200000000 /* op_resolver.cc */, + 9D1A0518CDE6335300000000 /* op_resolver.h */, + E8B2C9ED0128FCEE00000000 /* operations */, + 9D1A0518C8241DD300000000 /* tflite_model_loader.cc */, + 9D1A051869908BC300000000 /* tflite_model_loader.h */, ); name = tflite; sourceTree = ""; }; - A2FEA73631B5716A00000000 /* render */ = { + E8B2C9ED14993CBC00000000 /* OlaFaceUnityFramework-intermediates */ = { isa = PBXGroup; children = ( - A2FEA73620B6F45900000000 /* module */, + 9D1A05180E17E2F200000000 /* Info.plist */, ); - name = render; + name = "OlaFaceUnityFramework-intermediates"; sourceTree = ""; }; - A2FEA73631B5716A00000001 /* render */ = { + E8B2C9ED18A9728300000000 /* x */ = { isa = PBXGroup; children = ( - A2FEA7365B40412100000001 /* core */, - A2FEA73620B6F45900000001 /* module */, + E8B2C9ED18A9728300000001 /* x */, ); - name = render; + name = x; sourceTree = ""; }; - A2FEA7363883362D00000000 /* Products */ = { + E8B2C9ED18A9728300000001 /* x */ = { isa = PBXGroup; children = ( - A2FEA7367AA70EEE00000000 /* Indexer */, - 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */, - A2FEA736F4E8108700000000 /* bazel-tulsi-includes */, - 6BF2BEB1DC26EEDA00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, + E8B2C9EDB34FEAFD00000000 /* mediapipe */, ); - name = Products; + name = x; sourceTree = ""; }; - A2FEA73649901DB900000000 /* math */ = { + E8B2C9ED2EFBC52200000000 /* face_mesh */ = { isa = PBXGroup; children = ( - 6BF2BEB14E2C8C7E00000000 /* BUILD */, - 6BF2BEB1A7B31D6A00000000 /* mat4.cpp */, - 6BF2BEB1338459AD00000000 /* mat4.hpp */, - 6BF2BEB1E2AEF3B900000000 /* mat4.inl */, - 6BF2BEB1CB04A48200000000 /* math_utils.cpp */, - 6BF2BEB1B4B6713700000000 /* math_utils.hpp */, - 6BF2BEB15590E40F00000000 /* vec2.cpp */, - 6BF2BEB14DABC5B200000000 /* vec2.hpp */, - 6BF2BEB1186E3A4700000000 /* vec2.inl */, - 6BF2BEB10019414900000000 /* vec3.cpp */, - 6BF2BEB1179A317600000000 /* vec3.hpp */, - 6BF2BEB1DEE6BAFA00000000 /* vec3.inl */, - 6BF2BEB1193223CD00000000 /* vec4.cpp */, - 6BF2BEB1A7FF5C8D00000000 /* vec4.hpp */, - 6BF2BEB1A5AE2EC700000000 /* vec4.inl */, - ); - name = math; - sourceTree = ""; - }; - A2FEA7365B40412100000000 /* core */ = { - isa = PBXGroup; - children = ( - 6BF2BEB18D99A8BD00000000 /* BUILD */, - 6BF2BEB1AB2D5D1300000000 /* begin_loop_calculator.cc */, - 6BF2BEB17C466FAA00000000 /* begin_loop_calculator.h */, - 6BF2BEB1D2F46D2A00000000 /* clip_vector_size_calculator.cc */, - 6BF2BEB1AAA709F700000000 /* clip_vector_size_calculator.h */, - 6BF2BEB1B9D8F94200000000 /* constant_side_packet_calculator.cc */, - 6BF2BEB1B1BCD15C00000000 /* end_loop_calculator.cc */, - 6BF2BEB1623B07FA00000000 /* end_loop_calculator.h */, - 6BF2BEB1F00E9A9000000000 /* flow_limiter_calculator.cc */, - 6BF2BEB1387C9C0400000000 /* gate_calculator.cc */, - 6BF2BEB1908FF76600000000 /* previous_loopback_calculator.cc */, - 6BF2BEB11EE26A2000000000 /* split_proto_list_calculator.cc */, - 6BF2BEB1EAFCD2EB00000000 /* split_vector_calculator.cc */, - 6BF2BEB1ECA8F55D00000000 /* split_vector_calculator.h */, - ); - name = core; - sourceTree = ""; - }; - 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 */, - 6BF2BEB1C0DA62F400000000 /* Context.hpp */, - 6BF2BEB178760ADA00000000 /* Filter.cpp */, - 6BF2BEB116275C2700000000 /* Filter.hpp */, - 6BF2BEB1F573FC1600000000 /* FilterGroup.cpp */, - 6BF2BEB1351C6D3D00000000 /* FilterGroup.hpp */, - 6BF2BEB182C4C71800000000 /* Framebuffer.cpp */, - 6BF2BEB13F6F842500000000 /* Framebuffer.hpp */, - 6BF2BEB1F02D7B8400000000 /* FramebufferCache.cpp */, - 6BF2BEB1BD589A4200000000 /* FramebufferCache.hpp */, - 6BF2BEB17F4ECE3500000000 /* GLProgram.cpp */, - 6BF2BEB1C9E92EC600000000 /* GLProgram.hpp */, - 6BF2BEB122A81B8400000000 /* GLThreadDispatch.cpp */, - 6BF2BEB14D3CBB3200000000 /* GLThreadDispatch.h */, - 6BF2BEB18DE1AC1100000000 /* GPUImage-x.h */, - 6BF2BEB1ECDFFE8400000000 /* GPUImageMacros.h */, - 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 */, - 6BF2BEB1E2B253BD00000000 /* OpipeDispatch.hpp */, - 6BF2BEB1EA0F1F1F00000000 /* Ref.cpp */, - 6BF2BEB17B79044D00000000 /* Ref.hpp */, - 6BF2BEB112590DCE00000000 /* Source.cpp */, - 6BF2BEB1CB5A8A0E00000000 /* Source.hpp */, - 6BF2BEB1868499C900000000 /* SourceImage.cpp */, - 6BF2BEB12D7AE34A00000000 /* SourceImage.hpp */, - 6BF2BEB1D796612B00000000 /* Target.cpp */, - 6BF2BEB18556057300000000 /* Target.hpp */, - 6BF2BEB17C1D80AC00000000 /* TargetView.cpp */, - 6BF2BEB1C133DCA000000000 /* TargetView.hpp */, - 6BF2BEB1FF68235A00000000 /* dispatch_queue.cpp */, - 6BF2BEB1F7A5F05D00000000 /* dispatch_queue.h */, - A2FEA73649901DB900000000 /* math */, - 6BF2BEB15CAB504600000000 /* math.cpp */, - 6BF2BEB16E602ADB00000000 /* math.hpp */, - ); - name = core; - sourceTree = ""; - }; - A2FEA73660C4D6AA00000000 /* graphs */ = { - isa = PBXGroup; - children = ( - A2FEA7368106FF0200000000 /* face_mesh */, - ); - name = graphs; - sourceTree = ""; - }; - A2FEA7366242245000000000 /* framework */ = { - isa = PBXGroup; - children = ( - A2FEA7362BB2A4B700000000 /* OlaFaceUnityFramework-intermediates */, - ); - name = framework; - sourceTree = ""; - }; - A2FEA7366242245000000001 /* framework */ = { - isa = PBXGroup; - children = ( - 6BF2BEB116536C5000000000 /* BUILD */, - 6BF2BEB184CDCED100000000 /* Info.plist */, - 6BF2BEB13A3761C900000000 /* OlaFaceUnity.h */, - 6BF2BEB11335A86600000000 /* OlaFaceUnity.mm */, - ); - name = framework; - sourceTree = ""; - }; - A2FEA73669327E8300000000 /* beauty */ = { - isa = PBXGroup; - children = ( - A2FEA736CF167CF800000000 /* ios */, - ); - name = beauty; - sourceTree = ""; - }; - A2FEA73669327E8300000001 /* beauty */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - A2FEA7367AA70EEE00000000 /* Indexer */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */, - 6BF2BEB13FC2509200000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5.a */, - 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */, - 6BF2BEB15BA3402400000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */, - 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */, - 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */, - 6BF2BEB1AE45ACD400000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */, - 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 */, - 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 */, - 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */, - 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_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 */, - 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */, - 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */, - 6BF2BEB1042285A000000000 /* lib_idx_math_68C63536_ios_min11.0.a */, - 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */, - 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */, - 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */, - 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */, - 6BF2BEB1E364A8E800000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min15.5.a */, - 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */, - 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */, - 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */, - 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 */, - 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 */, - 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */, - 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */, - 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */, - 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */, - 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */, - 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */, - 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */, - 6BF2BEB1A384020200000000 /* lib_idx_split_vector_calculator_ED1EBC41_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 */, - 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */, - 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_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 */, - 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */, - 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */, - ); - name = Indexer; - sourceTree = ""; - }; - A2FEA7368106FF0200000000 /* face_mesh */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1290D963D00000000 /* BUILD */, - A2FEA7368B897D7D00000001 /* calculators */, - A2FEA73614054AB100000000 /* subgraphs */, + 9D1A0518CCBA847000000000 /* BUILD */, + E8B2C9ED328E6EFA00000001 /* calculators */, + E8B2C9ED0385C42100000000 /* subgraphs */, ); name = face_mesh; sourceTree = ""; }; - A2FEA7368B897D7D00000000 /* calculators */ = { + E8B2C9ED328E6EFA00000000 /* calculators */ = { isa = PBXGroup; children = ( - A2FEA7365B40412100000000 /* core */, - A2FEA736FC640C8700000000 /* util */, + E8B2C9ED7A4AF0DF00000000 /* core */, + E8B2C9EDD5A7C7F900000000 /* util */, ); name = calculators; sourceTree = ""; }; - A2FEA7368B897D7D00000001 /* calculators */ = { + E8B2C9ED328E6EFA00000001 /* calculators */ = { isa = PBXGroup; children = ( - 6BF2BEB1C8BD724E00000000 /* BUILD */, - 6BF2BEB1511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc */, + 9D1A05186E9B269900000000 /* BUILD */, + 9D1A0518CBCD2E1300000000 /* face_landmarks_to_render_data_calculator.cc */, ); name = calculators; sourceTree = ""; }; - A2FEA7368F9210D400000000 /* mainGroup */ = { + E8B2C9ED433C773800000000 /* face_detection */ = { isa = PBXGroup; children = ( - A2FEA7363883362D00000000 /* Products */, - A2FEA736AF64A47A00000001 /* mediapipe */, + 9D1A0518B7BA50F300000000 /* BUILD */, + 9D1A0518787CABCF00000000 /* face_detection_short_range.tflite */, + ); + name = face_detection; + sourceTree = ""; + }; + E8B2C9ED52591FFA00000000 /* filters */ = { + isa = PBXGroup; + children = ( + 9D1A05187F5B6DB400000000 /* BUILD */, + 9D1A0518CB56A17700000000 /* BilateralAdjustFilter.cpp */, + 9D1A05188B0EDA5B00000000 /* BilateralAdjustFilter.hpp */, + 9D1A05189BB9EF1F00000000 /* FaceDistortionFilter.cpp */, + 9D1A05183B3CEB1F00000000 /* FaceDistortionFilter.hpp */, + 9D1A0518F524754100000000 /* OlaBeautyFilter.cpp */, + 9D1A05186F7EC4F200000000 /* OlaBeautyFilter.hpp */, + 9D1A05189FEDE59900000000 /* UnSharpMaskFilter.cpp */, + 9D1A0518C6764EF400000000 /* UnSharpMaskFilter.hpp */, + ); + name = filters; + sourceTree = ""; + }; + E8B2C9ED52F497A400000000 /* bazel-tulsi-includes */ = { + isa = PBXGroup; + children = ( + E8B2C9ED18A9728300000000 /* x */, + ); + name = "bazel-tulsi-includes"; + sourceTree = ""; + }; + E8B2C9ED541C6C4E00000000 /* module */ = { + isa = PBXGroup; + children = ( + E8B2C9ED05207DC700000000 /* beauty */, + ); + name = module; + sourceTree = ""; + }; + E8B2C9ED541C6C4E00000001 /* module */ = { + isa = PBXGroup; + children = ( + E8B2C9ED05207DC700000001 /* beauty */, + E8B2C9ED5C426CDD00000000 /* common */, + ); + name = module; + sourceTree = ""; + }; + E8B2C9ED559F083800000000 /* face_landmark */ = { + isa = PBXGroup; + children = ( + 9D1A0518B30B9D4C00000000 /* BUILD */, + 9D1A0518A98FD37A00000000 /* face_landmark_with_attention.tflite */, + ); + name = face_landmark; + sourceTree = ""; + }; + E8B2C9ED5C426CDD00000000 /* common */ = { + isa = PBXGroup; + children = ( + 9D1A05180375622900000000 /* BUILD */, + 9D1A0518639A579500000000 /* ola_graph.cc */, + 9D1A0518751E5EC300000000 /* ola_graph.h */, + ); + name = common; + sourceTree = ""; + }; + E8B2C9ED7A4AF0DF00000000 /* core */ = { + isa = PBXGroup; + children = ( + 9D1A0518A7D4FA6600000000 /* BUILD */, + 9D1A0518DEF8A23A00000000 /* begin_loop_calculator.cc */, + 9D1A051879C1EA7100000000 /* begin_loop_calculator.h */, + 9D1A0518DABFB62900000000 /* clip_vector_size_calculator.cc */, + 9D1A0518AB8340A100000000 /* clip_vector_size_calculator.h */, + 9D1A05185FA0C8B400000000 /* constant_side_packet_calculator.cc */, + 9D1A0518F53D342400000000 /* end_loop_calculator.cc */, + 9D1A0518B78AD11C00000000 /* end_loop_calculator.h */, + 9D1A05186E57166000000000 /* flow_limiter_calculator.cc */, + 9D1A051804A5991600000000 /* gate_calculator.cc */, + 9D1A0518E8B4FA8F00000000 /* previous_loopback_calculator.cc */, + 9D1A051892C1EE4000000000 /* split_proto_list_calculator.cc */, + 9D1A051893A216DD00000000 /* split_vector_calculator.cc */, + 9D1A0518CBB47E9500000000 /* split_vector_calculator.h */, + ); + name = core; + sourceTree = ""; + }; + E8B2C9ED7A4AF0DF00000001 /* core */ = { + isa = PBXGroup; + children = ( + 9D1A0518DD8776DB00000000 /* AlphaBlendFilter.cpp */, + 9D1A0518A69AB48400000000 /* AlphaBlendFilter.hpp */, + 9D1A051812551AD500000000 /* BUILD */, + 9D1A05184C26B1F400000000 /* BilateralFilter.cpp */, + 9D1A0518DBAB102500000000 /* BilateralFilter.hpp */, + 9D1A05182760766100000000 /* CVFramebuffer.cpp */, + 9D1A05180BFA182800000000 /* CVFramebuffer.hpp */, + 9D1A05181A5AF34500000000 /* Context.cpp */, + 9D1A0518AAC6AE2600000000 /* Context.hpp */, + 9D1A0518B5549E7B00000000 /* Filter.cpp */, + 9D1A0518CE79CE1600000000 /* Filter.hpp */, + 9D1A0518EED1272900000000 /* FilterGroup.cpp */, + 9D1A051864A9E9AF00000000 /* FilterGroup.hpp */, + 9D1A051824028C2A00000000 /* Framebuffer.cpp */, + 9D1A05183162C67E00000000 /* Framebuffer.hpp */, + 9D1A0518DF10257B00000000 /* FramebufferCache.cpp */, + 9D1A05189F81490A00000000 /* FramebufferCache.hpp */, + 9D1A0518366C28A700000000 /* GLProgram.cpp */, + 9D1A05183131F3C900000000 /* GLProgram.hpp */, + 9D1A051840660CF800000000 /* GLThreadDispatch.cpp */, + 9D1A0518A60BC44C00000000 /* GLThreadDispatch.h */, + 9D1A0518725B276300000000 /* GPUImage-x.h */, + 9D1A0518C42E852300000000 /* GPUImageMacros.h */, + 9D1A0518B1B8DD1E00000000 /* GPUImageTarget.h */, + 9D1A0518113D77AC00000000 /* GPUImageUtil.cpp */, + 9D1A0518D1B5118600000000 /* GPUImageUtil.h */, + 9D1A0518C740BD4E00000000 /* GaussianBlurFilter.cpp */, + 9D1A0518066C4E0D00000000 /* GaussianBlurFilter.hpp */, + 9D1A0518C1562A1600000000 /* GaussianBlurMonoFilter.cpp */, + 9D1A05180E21C32E00000000 /* GaussianBlurMonoFilter.hpp */, + 9D1A0518B541904500000000 /* IOSTarget.cpp */, + 9D1A05188CE4050500000000 /* IOSTarget.hpp */, + 9D1A05185547722D00000000 /* LUTFilter.cpp */, + 9D1A05187C5F35A200000000 /* LUTFilter.hpp */, + 9D1A05187869539F00000000 /* OlaCameraSource.cpp */, + 9D1A051877EBE7ED00000000 /* OlaCameraSource.hpp */, + 9D1A0518127F047A00000000 /* OlaContext.cpp */, + 9D1A05188B611C8500000000 /* OlaContext.hpp */, + 9D1A0518E6435E1C00000000 /* OlaShareTextureFilter.cpp */, + 9D1A05182B39F7E500000000 /* OlaShareTextureFilter.hpp */, + 9D1A05180998301500000000 /* OlaYUVTexture.cpp */, + 9D1A051842F66AD900000000 /* OlaYUVTexture.hpp */, + 9D1A0518486157AC00000000 /* OlaYUVTexture420P.cpp */, + 9D1A0518A5E7FC3800000000 /* OlaYUVTexture420P.hpp */, + 9D1A051815C3EC2900000000 /* OpipeDispatch.cpp */, + 9D1A0518DE5D32A000000000 /* OpipeDispatch.hpp */, + 9D1A0518EA12225700000000 /* Ref.cpp */, + 9D1A0518B613740000000000 /* Ref.hpp */, + 9D1A0518688BDBD200000000 /* Source.cpp */, + 9D1A05182935B14C00000000 /* Source.hpp */, + 9D1A0518D76E8D3000000000 /* SourceCamera.cpp */, + 9D1A05188C8DBC2A00000000 /* SourceCamera.hpp */, + 9D1A05186B38661900000000 /* SourceImage.cpp */, + 9D1A0518177BF5DC00000000 /* SourceImage.hpp */, + 9D1A0518BAA9784900000000 /* Target.cpp */, + 9D1A0518CBAB276E00000000 /* Target.hpp */, + 9D1A0518F520944600000000 /* TargetView.cpp */, + 9D1A0518684D787900000000 /* TargetView.hpp */, + 9D1A0518B7DF5A1B00000000 /* dispatch_queue.cpp */, + 9D1A051883610D1700000000 /* dispatch_queue.h */, + E8B2C9EDFD8C6CD500000000 /* math */, + 9D1A0518203E676800000000 /* math.cpp */, + 9D1A0518A0143EF000000000 /* math.hpp */, + ); + name = core; + sourceTree = ""; + }; + E8B2C9ED857EECF100000000 /* objc */ = { + isa = PBXGroup; + children = ( + 9D1A05184D3BD64000000000 /* BUILD */, + 9D1A0518E3C3E8F500000000 /* CFHolder.h */, + 9D1A051819FE849A00000000 /* MPPGraph.h */, + 9D1A0518FF488C3100000000 /* MPPGraph.mm */, + 9D1A0518352B1EEA00000000 /* MPPTimestampConverter.h */, + 9D1A0518FE41FA1300000000 /* MPPTimestampConverter.mm */, + 9D1A05187823907000000000 /* NSError+util_status.h */, + 9D1A0518F4A92B1800000000 /* NSError+util_status.mm */, + 9D1A051812B76B6900000000 /* Weakify.h */, + 9D1A051825CCC4DB00000000 /* util.cc */, + 9D1A051896C3F23200000000 /* util.h */, + ); + name = objc; + sourceTree = ""; + }; + E8B2C9EDB34FEAFD00000000 /* mediapipe */ = { + isa = PBXGroup; + children = ( + E8B2C9EDD97C769F00000000 /* render */, + ); + name = mediapipe; + sourceTree = ""; + }; + E8B2C9EDB34FEAFD00000001 /* mediapipe */ = { + isa = PBXGroup; + children = ( + E8B2C9ED328E6EFA00000000 /* calculators */, + E8B2C9EDE2FF477500000000 /* graphs */, + E8B2C9EDEF9F9F2C00000000 /* modules */, + E8B2C9ED857EECF100000000 /* objc */, + E8B2C9EDD97C769F00000001 /* render */, + E8B2C9EDD5A7C7F900000001 /* util */, + ); + name = mediapipe; + sourceTree = ""; + }; + E8B2C9EDBB0175AA00000000 /* ios */ = { + isa = PBXGroup; + children = ( + E8B2C9EDEBBB511F00000000 /* framework */, + ); + name = ios; + sourceTree = ""; + }; + E8B2C9EDBB0175AA00000001 /* ios */ = { + isa = PBXGroup; + children = ( + E8B2C9EDEBBB511F00000001 /* framework */, + ); + name = ios; + sourceTree = ""; + }; + E8B2C9EDCA9BEB1B00000000 /* Indexer */ = { + isa = PBXGroup; + children = ( + 9D1A05183FD54BB400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a */, + 9D1A0518A6381C9400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a */, + 9D1A0518B6B5272400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a */, + 9D1A0518C37C73A600000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a */, + 9D1A05189733546E00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a */, + 9D1A0518DDD8C9DE00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a */, + 9D1A0518B3937F2C00000000 /* lib_idx_annotation_renderer_78B04092_ios_min11.0.a */, + 9D1A051892D87F3800000000 /* lib_idx_annotation_renderer_78B04092_ios_min15.5.a */, + 9D1A051813CAE71A00000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a */, + 9D1A0518C149E4D200000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a */, + 9D1A0518A4931D0C00000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a */, + 9D1A0518BE434D4400000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a */, + 9D1A05185153B35400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a */, + 9D1A051834FB261400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a */, + 9D1A0518B664407200000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a */, + 9D1A05185F35D42400000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a */, + 9D1A05188627D7BA00000000 /* lib_idx_cpu_util_10B87B03_ios_min11.0.a */, + 9D1A0518F5B9388A00000000 /* lib_idx_cpu_util_10B87B03_ios_min15.5.a */, + 9D1A0518D63539AE00000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a */, + 9D1A05180E1AA60400000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a */, + 9D1A05180ECCEE5400000000 /* lib_idx_end_loop_calculator_86552B41_ios_min11.0.a */, + 9D1A05189671FDDE00000000 /* lib_idx_end_loop_calculator_86552B41_ios_min15.5.a */, + 9D1A05187BE50ADE00000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a */, + 9D1A0518AE1AB07600000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a */, + 9D1A0518F509679800000000 /* lib_idx_math_CF33D7F4_ios_min11.0.a */, + 9D1A05187B60069400000000 /* lib_idx_math_CF33D7F4_ios_min15.5.a */, + 9D1A0518DC58ED3200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a */, + 9D1A05184881BA4200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a */, + 9D1A0518D74DCFC000000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a */, + 9D1A0518E9BFDC3600000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a */, + 9D1A051857A288AA00000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a */, + 9D1A05181525E57200000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a */, + 9D1A0518B292C24E00000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a */, + 9D1A05188E7107A200000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a */, + 9D1A05181B2F8A3200000000 /* lib_idx_op_resolver_E0F4B742_ios_min11.0.a */, + 9D1A0518DB5F819800000000 /* lib_idx_op_resolver_E0F4B742_ios_min15.5.a */, + 9D1A0518C9DDC88E00000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a */, + 9D1A0518D6C3FC5800000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a */, + 9D1A0518319E66FE00000000 /* lib_idx_rectangle_util_F7F3797D_ios_min11.0.a */, + 9D1A05181DF1A9C200000000 /* lib_idx_rectangle_util_F7F3797D_ios_min15.5.a */, + 9D1A0518B23B789600000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a */, + 9D1A0518A746B79E00000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a */, + 9D1A051827D99ADA00000000 /* lib_idx_resource_util_1F0C7A9C_ios_min11.0.a */, + 9D1A0518422C40C000000000 /* lib_idx_resource_util_1F0C7A9C_ios_min15.5.a */, + 9D1A05187CDDDF8800000000 /* lib_idx_split_vector_calculator_EE664713_ios_min11.0.a */, + 9D1A0518744AC67600000000 /* lib_idx_split_vector_calculator_EE664713_ios_min15.5.a */, + 9D1A0518FC1FDA7A00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a */, + 9D1A0518512406DA00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a */, + 9D1A051846C9BCC000000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a */, + 9D1A051802966FD400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a */, + 9D1A0518972E59FC00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a */, + 9D1A05189A6D4D1E00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a */, + 9D1A0518E03ABFCA00000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a */, + 9D1A05182594A9C400000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a */, + 9D1A051854BA5F7800000000 /* lib_idx_util_DB4949E7_ios_min11.0.a */, + 9D1A05186ABFADC400000000 /* lib_idx_util_DB4949E7_ios_min15.5.a */, + ); + name = Indexer; + sourceTree = ""; + }; + E8B2C9EDD2E9252600000000 /* Products */ = { + isa = PBXGroup; + children = ( + E8B2C9EDCA9BEB1B00000000 /* Indexer */, + 9D1A05184B1F208800000000 /* OlaFaceUnityFramework.framework */, + E8B2C9ED52F497A400000000 /* bazel-tulsi-includes */, + 9D1A05189FDA768C00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */, + ); + name = Products; + sourceTree = ""; + }; + E8B2C9EDD5A7C7F900000000 /* util */ = { + isa = PBXGroup; + children = ( + 9D1A051833C1DC2900000000 /* BUILD */, + 9D1A051861EDA9EE00000000 /* annotation_overlay_calculator.cc */, + 9D1A0518E67803DB00000000 /* association_calculator.h */, + 9D1A051879CDDFED00000000 /* association_norm_rect_calculator.cc */, + 9D1A05181146E56B00000000 /* collection_has_min_size_calculator.cc */, + 9D1A0518CA92186300000000 /* collection_has_min_size_calculator.h */, + 9D1A0518410C5DD800000000 /* detection_projection_calculator.cc */, + 9D1A0518642109BB00000000 /* detections_to_rects_calculator.cc */, + 9D1A0518B521D43500000000 /* detections_to_rects_calculator.h */, + 9D1A051839A89AA300000000 /* detections_to_render_data_calculator.cc */, + 9D1A0518114131F400000000 /* landmark_projection_calculator.cc */, + 9D1A05185B6ABC2900000000 /* landmarks_refinement_calculator.cc */, + 9D1A0518E825A12700000000 /* landmarks_refinement_calculator.h */, + 9D1A0518C674540100000000 /* landmarks_to_detection_calculator.cc */, + 9D1A0518F1CB02DD00000000 /* landmarks_to_render_data_calculator.cc */, + 9D1A0518B5F5FAF600000000 /* landmarks_to_render_data_calculator.h */, + 9D1A05188DC416F400000000 /* local_file_contents_calculator.cc */, + 9D1A05188C56761300000000 /* non_max_suppression_calculator.cc */, + 9D1A05181E3EB3B900000000 /* rect_to_render_data_calculator.cc */, + 9D1A05188CA4A16800000000 /* rect_transformation_calculator.cc */, + 9D1A0518980FFD2B00000000 /* thresholding_calculator.cc */, + 9D1A051886A483C600000000 /* to_image_calculator.cc */, + ); + name = util; + sourceTree = ""; + }; + E8B2C9EDD5A7C7F900000001 /* util */ = { + isa = PBXGroup; + children = ( + 9D1A05183DC616A900000000 /* BUILD */, + 9D1A051882F42E8800000000 /* annotation_renderer.cc */, + 9D1A05180D76B93300000000 /* annotation_renderer.h */, + 9D1A0518096960DC00000000 /* cpu_util.cc */, + 9D1A0518A2CE96B500000000 /* cpu_util.h */, + 9D1A0518C5471AEE00000000 /* header_util.cc */, + 9D1A0518861FB3F100000000 /* header_util.h */, + 9D1A0518F07B10B000000000 /* rectangle_util.cc */, + 9D1A0518685B94E400000000 /* rectangle_util.h */, + 9D1A051843C1826400000000 /* resource_cache.h */, + 9D1A05184A2CA38100000000 /* resource_util.cc */, + 9D1A0518F9C12FD800000000 /* resource_util.h */, + 9D1A0518376F697300000000 /* resource_util_apple.cc */, + 9D1A0518966DC69800000000 /* resource_util_custom.h */, + 9D1A05180D7B778E00000000 /* resource_util_internal.h */, + E8B2C9ED1435F1CF00000000 /* tflite */, + ); + name = util; + sourceTree = ""; + }; + E8B2C9EDD97C769F00000000 /* render */ = { + isa = PBXGroup; + children = ( + E8B2C9ED541C6C4E00000000 /* module */, + ); + name = render; + sourceTree = ""; + }; + E8B2C9EDD97C769F00000001 /* render */ = { + isa = PBXGroup; + children = ( + E8B2C9ED7A4AF0DF00000001 /* core */, + E8B2C9ED541C6C4E00000001 /* module */, + ); + name = render; + sourceTree = ""; + }; + E8B2C9EDE2FF477500000000 /* graphs */ = { + isa = PBXGroup; + children = ( + E8B2C9ED2EFBC52200000000 /* face_mesh */, + ); + name = graphs; + sourceTree = ""; + }; + E8B2C9EDE5C2227500000000 /* mainGroup */ = { + isa = PBXGroup; + children = ( + E8B2C9EDD2E9252600000000 /* Products */, + E8B2C9EDB34FEAFD00000001 /* mediapipe */, ); name = mainGroup; path = ../../../../../..; sourceTree = SOURCE_ROOT; }; - A2FEA73698071DC200000000 /* filters */ = { + E8B2C9EDEBBB511F00000000 /* framework */ = { 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 */, + E8B2C9ED14993CBC00000000 /* OlaFaceUnityFramework-intermediates */, ); - name = filters; + name = framework; sourceTree = ""; }; - A2FEA736A2BCADC200000000 /* operations */ = { + E8B2C9EDEBBB511F00000001 /* framework */ = { isa = PBXGroup; children = ( - 6BF2BEB1F711CCAC00000000 /* BUILD */, - 6BF2BEB1105326A800000000 /* landmarks_to_transform_matrix.cc */, - 6BF2BEB146CB30E900000000 /* landmarks_to_transform_matrix.h */, - 6BF2BEB1042A0E6500000000 /* max_pool_argmax.cc */, - 6BF2BEB1A3AD775A00000000 /* max_pool_argmax.h */, - 6BF2BEB118A3906A00000000 /* max_unpooling.cc */, - 6BF2BEB1164B2B0E00000000 /* max_unpooling.h */, - 6BF2BEB1C578A56100000000 /* transform_landmarks.cc */, - 6BF2BEB13BB0D77500000000 /* transform_landmarks.h */, - 6BF2BEB17C35124F00000000 /* transform_tensor_bilinear.cc */, - 6BF2BEB1D606383800000000 /* transform_tensor_bilinear.h */, - 6BF2BEB1F3F047F600000000 /* transpose_conv_bias.cc */, - 6BF2BEB1272635B000000000 /* transpose_conv_bias.h */, + 9D1A05186FF4047100000000 /* BUILD */, + 9D1A0518266378A900000000 /* Info.plist */, + 9D1A05187ECFCE7B00000000 /* OlaFURenderView+private.h */, + 9D1A0518D7857AC700000000 /* OlaFURenderView.h */, + 9D1A05181C25645A00000000 /* OlaFURenderView.mm */, + 9D1A05182B43FF6000000000 /* OlaFaceUnity.h */, + 9D1A05188A70D79000000000 /* OlaFaceUnity.mm */, ); - name = operations; + name = framework; sourceTree = ""; }; - A2FEA736AF64A47A00000000 /* mediapipe */ = { + E8B2C9EDEF9F9F2C00000000 /* modules */ = { isa = PBXGroup; children = ( - A2FEA73631B5716A00000000 /* render */, - ); - name = mediapipe; - sourceTree = ""; - }; - A2FEA736AF64A47A00000001 /* mediapipe */ = { - isa = PBXGroup; - children = ( - A2FEA7368B897D7D00000000 /* calculators */, - A2FEA73660C4D6AA00000000 /* graphs */, - A2FEA736EFEBFE9300000000 /* modules */, - A2FEA736F5B39ADD00000000 /* objc */, - A2FEA73631B5716A00000001 /* render */, - A2FEA736FC640C8700000001 /* util */, - ); - name = mediapipe; - sourceTree = ""; - }; - A2FEA736CF167CF800000000 /* ios */ = { - isa = PBXGroup; - children = ( - A2FEA7366242245000000000 /* framework */, - ); - name = ios; - sourceTree = ""; - }; - A2FEA736CF167CF800000001 /* ios */ = { - isa = PBXGroup; - children = ( - A2FEA7366242245000000001 /* framework */, - ); - 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 = ( - A2FEA736DF32B42C00000001 /* x */, - ); - name = x; - sourceTree = ""; - }; - A2FEA736DF32B42C00000001 /* x */ = { - isa = PBXGroup; - children = ( - A2FEA736AF64A47A00000000 /* mediapipe */, - ); - name = x; - sourceTree = ""; - }; - A2FEA736EFEBFE9300000000 /* modules */ = { - isa = PBXGroup; - children = ( - A2FEA7361E84DE5500000000 /* face_detection */, - A2FEA736CFC4601700000000 /* face_landmark */, + E8B2C9ED433C773800000000 /* face_detection */, + E8B2C9ED559F083800000000 /* face_landmark */, ); name = modules; sourceTree = ""; }; - A2FEA736F4E8108700000000 /* bazel-tulsi-includes */ = { + E8B2C9EDFD8C6CD500000000 /* math */ = { isa = PBXGroup; children = ( - A2FEA736DF32B42C00000000 /* x */, + 9D1A05185D07203900000000 /* BUILD */, + 9D1A05186CDB0ACA00000000 /* mat4.cpp */, + 9D1A0518595854F000000000 /* mat4.hpp */, + 9D1A0518063BE3CE00000000 /* mat4.inl */, + 9D1A0518E5F7536D00000000 /* math_utils.cpp */, + 9D1A051828081DE300000000 /* math_utils.hpp */, + 9D1A05188105E18A00000000 /* vec2.cpp */, + 9D1A051820AE9EF100000000 /* vec2.hpp */, + 9D1A0518C02E8EFC00000000 /* vec2.inl */, + 9D1A051817D70EAE00000000 /* vec3.cpp */, + 9D1A051865A2AC4C00000000 /* vec3.hpp */, + 9D1A051825EC849700000000 /* vec3.inl */, + 9D1A0518AC54908400000000 /* vec4.cpp */, + 9D1A05187A216ECF00000000 /* vec4.hpp */, + 9D1A051808CC5F0300000000 /* vec4.inl */, ); - name = "bazel-tulsi-includes"; - sourceTree = ""; - }; - A2FEA736F5B39ADD00000000 /* objc */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1CC197DE700000000 /* BUILD */, - 6BF2BEB103F9803500000000 /* CFHolder.h */, - 6BF2BEB1E276944000000000 /* MPPGraph.h */, - 6BF2BEB19807610500000000 /* MPPGraph.mm */, - 6BF2BEB19CA882CA00000000 /* MPPTimestampConverter.h */, - 6BF2BEB11B77E8CB00000000 /* MPPTimestampConverter.mm */, - 6BF2BEB13EDD2CC300000000 /* NSError+util_status.h */, - 6BF2BEB16909A4FC00000000 /* NSError+util_status.mm */, - 6BF2BEB1506223AF00000000 /* Weakify.h */, - 6BF2BEB1202F72AF00000000 /* util.cc */, - 6BF2BEB1FD2AF7C900000000 /* util.h */, - ); - name = objc; - sourceTree = ""; - }; - A2FEA736FC640C8700000000 /* util */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1AA92561800000000 /* BUILD */, - 6BF2BEB12834F00600000000 /* annotation_overlay_calculator.cc */, - 6BF2BEB1A65D9EE000000000 /* association_calculator.h */, - 6BF2BEB1041C1EB900000000 /* association_norm_rect_calculator.cc */, - 6BF2BEB1E82089DF00000000 /* collection_has_min_size_calculator.cc */, - 6BF2BEB1BB36CC3A00000000 /* collection_has_min_size_calculator.h */, - 6BF2BEB16A24D81700000000 /* detection_projection_calculator.cc */, - 6BF2BEB176D31B5D00000000 /* detections_to_rects_calculator.cc */, - 6BF2BEB1CCC9CAE300000000 /* detections_to_rects_calculator.h */, - 6BF2BEB136FBEB1A00000000 /* detections_to_render_data_calculator.cc */, - 6BF2BEB1EA081C0700000000 /* landmark_projection_calculator.cc */, - 6BF2BEB15215FAC800000000 /* landmarks_refinement_calculator.cc */, - 6BF2BEB1124813CB00000000 /* landmarks_refinement_calculator.h */, - 6BF2BEB14046CD2C00000000 /* landmarks_to_detection_calculator.cc */, - 6BF2BEB19158518E00000000 /* landmarks_to_render_data_calculator.cc */, - 6BF2BEB16D38EA9B00000000 /* landmarks_to_render_data_calculator.h */, - 6BF2BEB1A24CB7E500000000 /* local_file_contents_calculator.cc */, - 6BF2BEB1954B39AD00000000 /* non_max_suppression_calculator.cc */, - 6BF2BEB1822EE40B00000000 /* rect_to_render_data_calculator.cc */, - 6BF2BEB16988849800000000 /* rect_transformation_calculator.cc */, - 6BF2BEB11ABE2CDD00000000 /* thresholding_calculator.cc */, - 6BF2BEB11979C9A700000000 /* to_image_calculator.cc */, - ); - name = util; - sourceTree = ""; - }; - A2FEA736FC640C8700000001 /* util */ = { - isa = PBXGroup; - children = ( - 6BF2BEB1186C668100000000 /* BUILD */, - 6BF2BEB14A8EF4EF00000000 /* annotation_renderer.cc */, - 6BF2BEB1150335A300000000 /* annotation_renderer.h */, - 6BF2BEB16EE5C41200000000 /* cpu_util.cc */, - 6BF2BEB1398051ED00000000 /* cpu_util.h */, - 6BF2BEB1FFFFBBA500000000 /* header_util.cc */, - 6BF2BEB17E728AD500000000 /* header_util.h */, - 6BF2BEB13B1C97FA00000000 /* rectangle_util.cc */, - 6BF2BEB14F531D3500000000 /* rectangle_util.h */, - 6BF2BEB18CCC3D6A00000000 /* resource_cache.h */, - 6BF2BEB1B01194E800000000 /* resource_util.cc */, - 6BF2BEB1611DBCED00000000 /* resource_util.h */, - 6BF2BEB13F7B43FC00000000 /* resource_util_apple.cc */, - 6BF2BEB1A44A9C2600000000 /* resource_util_custom.h */, - 6BF2BEB11251C84200000000 /* resource_util_internal.h */, - A2FEA7362CCC109A00000000 /* tflite */, - ); - name = util; + name = math; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXLegacyTarget section */ - E9F6BC4B3AD2DEC400000000 /* _bazel_clean_ */ = { + B995B665E51A0D9C00000000 /* _bazel_clean_ */ = { isa = PBXLegacyTarget; buildArgumentsString = "\"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" \"bazel-bin\""; - buildConfigurationList = 84EFF508B7B3B91B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; + buildConfigurationList = 58316E179742D2CB00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */; buildPhases = ( ); buildToolPath = "${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_clean.sh"; @@ -1174,1011 +1246,1063 @@ /* End PBXLegacyTarget section */ /* Begin PBXNativeTarget section */ - F2FE34CE019362DC00000000 /* _idx_op_resolver_0836C983_ios_min11.0 */ = { + EDD0A78501748AFE00000000 /* OlaFaceUnityFramework */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */; + buildConfigurationList = 58316E17C9B37C7900000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; buildPhases = ( - 4A9C8A580000000000000026 /* Sources */, + 828607DAED801A7600000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - ); - name = _idx_op_resolver_0836C983_ios_min11.0; - productName = _idx_op_resolver_0836C983_ios_min11.0; - productReference = 6BF2BEB12CA286D000000000 /* lib_idx_op_resolver_0836C983_ios_min11.0.a */; - productType = "com.apple.product-type.library.static"; - }; - F2FE34CE06501FEA00000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min15.5 */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */; - buildPhases = ( - 4A9C8A58000000000000002F /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, - ); - name = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; - productName = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; - 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 = ( - 4A9C8A580000000000000029 /* Sources */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* 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"; - }; - F2FE34CE0C5C7AFE00000000 /* OlaFaceUnityFramework */ = { - isa = PBXNativeTarget; - buildConfigurationList = 84EFF508CA1DA73100000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */; - buildPhases = ( - 849F771958BFBC1000000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); name = OlaFaceUnityFramework; productName = OlaFaceUnityFramework; - productReference = 6BF2BEB1861FE90A00000000 /* OlaFaceUnityFramework.framework */; + productReference = 9D1A05184B1F208800000000 /* OlaFaceUnityFramework.framework */; productType = "com.apple.product-type.framework"; }; - F2FE34CE0F58F30800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5 */ = { + EDD0A7850352AB2A00000000 /* _idx_rectangle_util_F7F3797D_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */; + buildConfigurationList = 58316E17CADA871300000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_F7F3797D_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001B /* Sources */, + D51719AF000000000000002E /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - productReference = 6BF2BEB1258576A800000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5.a */; + name = _idx_rectangle_util_F7F3797D_ios_min11.0; + productName = _idx_rectangle_util_F7F3797D_ios_min11.0; + productReference = 9D1A0518319E66FE00000000 /* lib_idx_rectangle_util_F7F3797D_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE10832CE000000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0 */ = { + EDD0A7851101930000000000 /* _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508CC419B8300000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0" */; + buildConfigurationList = 58316E17F613EDB200000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000005 /* Sources */, + D51719AF000000000000001A /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A2F164B6300000000 /* PBXTargetDependency */, + 2811397A2F164B6300000000 /* PBXTargetDependency */, + 2811397AE39F886700000000 /* PBXTargetDependency */, + 2811397AF15E172100000000 /* PBXTargetDependency */, + 2811397AE39F886700000000 /* PBXTargetDependency */, + 2811397A2F164B6300000000 /* PBXTargetDependency */, ); - name = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; - productName = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; - productReference = 6BF2BEB12E6EE1D200000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0.a */; + name = _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0; + productName = _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0; + productReference = 9D1A0518B664407200000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE1838F83E00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0 */ = { + EDD0A7851C54576800000000 /* _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */; + buildConfigurationList = 58316E1776A957A300000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000017 /* Sources */, + D51719AF000000000000002C /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - productReference = 6BF2BEB1C76D25EE00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0.a */; + name = _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0; + productName = _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0; + productReference = 9D1A0518C9DDC88E00000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE1AC4218A00000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0 */ = { + EDD0A7851D681C9400000000 /* _idx_cpu_util_10B87B03_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */; + buildConfigurationList = 58316E1761C48ED000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_10B87B03_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000019 /* Sources */, + D51719AF000000000000000C /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - productName = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - productReference = 6BF2BEB1D6736AD800000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0.a */; + name = _idx_cpu_util_10B87B03_ios_min11.0; + productName = _idx_cpu_util_10B87B03_ios_min11.0; + productReference = 9D1A05188627D7BA00000000 /* lib_idx_cpu_util_10B87B03_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE1D7E686A00000000 /* _idx_end_loop_calculator_AADF2B85_ios_min15.5 */ = { + EDD0A7852444EA8200000000 /* _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50858263CF500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min15.5" */; + buildConfigurationList = 58316E17C3F5920100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000021 /* Sources */, + D51719AF000000000000001E /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AC4A1069D00000000 /* PBXTargetDependency */, + 2811397A36B3CE1700000000 /* PBXTargetDependency */, + 2811397A36B3CE1700000000 /* PBXTargetDependency */, + 2811397A40B23BB500000000 /* PBXTargetDependency */, + 2811397AC4A1069D00000000 /* PBXTargetDependency */, + 2811397AC4A1069D00000000 /* PBXTargetDependency */, ); - name = _idx_end_loop_calculator_AADF2B85_ios_min15.5; - productName = _idx_end_loop_calculator_AADF2B85_ios_min15.5; - productReference = 6BF2BEB185A9B3FE00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min15.5.a */; + name = _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5; + productName = _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5; + productReference = 9D1A05185F35D42400000000 /* lib_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE216C14B800000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5 */ = { + EDD0A7852543EE8600000000 /* _idx_ref_gpuimagemath_6E8D4716_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */; + buildConfigurationList = 58316E17CCE01A7C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_6E8D4716_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001C /* Sources */, + D51719AF0000000000000002 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - productName = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - productReference = 6BF2BEB1616461B400000000 /* lib_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5.a */; + name = _idx_ref_gpuimagemath_6E8D4716_ios_min11.0; + productName = _idx_ref_gpuimagemath_6E8D4716_ios_min11.0; + productReference = 9D1A0518B23B789600000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE2C307FC200000000 /* _idx_tflite_model_loader_254BEB33_ios_min15.5 */ = { + EDD0A78525AE2D2E00000000 /* _idx_op_resolver_E0F4B742_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */; + buildConfigurationList = 58316E174384307A00000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E0F4B742_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000031 /* Sources */, + D51719AF000000000000002A /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_tflite_model_loader_254BEB33_ios_min15.5; - productName = _idx_tflite_model_loader_254BEB33_ios_min15.5; - productReference = 6BF2BEB17982938200000000 /* lib_idx_tflite_model_loader_254BEB33_ios_min15.5.a */; + name = _idx_op_resolver_E0F4B742_ios_min11.0; + productName = _idx_op_resolver_E0F4B742_ios_min11.0; + productReference = 9D1A05181B2F8A3200000000 /* lib_idx_op_resolver_E0F4B742_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE2E1AEAFA00000000 /* _idx_cpu_op_resolver_519CBACD_ios_min15.5 */ = { + EDD0A7852D59C41200000000 /* _idx_olamodule_common_library_54ECBB79_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */; + buildConfigurationList = 58316E1754AB7C7400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_54ECBB79_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001A /* Sources */, + D51719AF000000000000000B /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, - 285B8B9A216C14B900000000 /* PBXTargetDependency */, - 285B8B9A216C14B900000000 /* PBXTargetDependency */, - 285B8B9A0F58F30900000000 /* PBXTargetDependency */, - 285B8B9A9CC89BB300000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A1D681C9500000000 /* PBXTargetDependency */, + 2811397A3B463BAD00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - productName = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - productReference = 6BF2BEB135330E2600000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min15.5.a */; + name = _idx_olamodule_common_library_54ECBB79_ios_min11.0; + productName = _idx_olamodule_common_library_54ECBB79_ios_min11.0; + productReference = 9D1A0518B292C24E00000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE3E081CF800000000 /* _idx_annotation_renderer_8D68840D_ios_min11.0 */ = { + EDD0A7852F164B6200000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */; + buildConfigurationList = 58316E17E93848CA00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000F /* Sources */, + D51719AF000000000000001B /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_renderer_8D68840D_ios_min11.0; - productName = _idx_annotation_renderer_8D68840D_ios_min11.0; - productReference = 6BF2BEB160EC260800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min11.0.a */; + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0; + productReference = 9D1A0518972E59FC00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE3E7A910800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0 */ = { + EDD0A78536B3CE1600000000 /* _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508992D751100000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0" */; + buildConfigurationList = 58316E17F2153EDE00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000032 /* Sources */, + D51719AF0000000000000020 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, - 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; - productReference = 6BF2BEB13E6E92F600000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0.a */; + name = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5; + productName = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5; + productReference = 9D1A05184881BA4200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE3ED3804A00000000 /* _idx_cpu_util_C9677097_ios_min15.5 */ = { + EDD0A7853B1C9BF800000000 /* _idx_tflite_model_loader_22B76F2A_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5088D5B68D300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min15.5" */; + buildConfigurationList = 58316E17A36D938F00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_22B76F2A_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000D /* Sources */, + D51719AF0000000000000035 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AAD83C52B00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_util_C9677097_ios_min15.5; - productName = _idx_cpu_util_C9677097_ios_min15.5; - productReference = 6BF2BEB16F17AAC200000000 /* lib_idx_cpu_util_C9677097_ios_min15.5.a */; + name = _idx_tflite_model_loader_22B76F2A_ios_min15.5; + productName = _idx_tflite_model_loader_22B76F2A_ios_min15.5; + productReference = 9D1A0518512406DA00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE4E15716800000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0 */ = { + EDD0A7853B463BAC00000000 /* _idx_util_DB4949E7_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */; + buildConfigurationList = 58316E17E78E115B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_DB4949E7_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000000 /* Sources */, + D51719AF000000000000000D /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A8489C38D00000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - productReference = 6BF2BEB1B38F435A00000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0.a */; + name = _idx_util_DB4949E7_ios_min11.0; + productName = _idx_util_DB4949E7_ios_min11.0; + productReference = 9D1A051854BA5F7800000000 /* lib_idx_util_DB4949E7_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE564601F800000000 /* _idx_end_loop_calculator_AADF2B85_ios_min11.0 */ = { + EDD0A7853CD8700C00000000 /* _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508F7A3D4A500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min11.0" */; + buildConfigurationList = 58316E1710DAF09800000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000020 /* Sources */, + D51719AF0000000000000019 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_end_loop_calculator_AADF2B85_ios_min11.0; - productName = _idx_end_loop_calculator_AADF2B85_ios_min11.0; - productReference = 6BF2BEB1D89D727E00000000 /* lib_idx_end_loop_calculator_AADF2B85_ios_min11.0.a */; + name = _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5; + productName = _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5; + productReference = 9D1A0518BE434D4400000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE5FA9419400000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0 */ = { + EDD0A78540B23BB400000000 /* _idx_transpose_conv_bias_7C342083_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */; + buildConfigurationList = 58316E17C70DBA7900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_7C342083_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000014 /* Sources */, + D51719AF0000000000000021 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - productName = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - productReference = 6BF2BEB100939AF800000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0.a */; + name = _idx_transpose_conv_bias_7C342083_ios_min15.5; + productName = _idx_transpose_conv_bias_7C342083_ios_min15.5; + productReference = 9D1A05182594A9C400000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE61FD1EC600000000 /* _idx_rectangle_util_BC608102_ios_min15.5 */ = { + EDD0A7854521587A00000000 /* _idx_BeautyFilters_A720FDA2_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B410383C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min15.5" */; + buildConfigurationList = 58316E17B2128AFB00000000 /* Build configuration list for PBXNativeTarget "_idx_BeautyFilters_A720FDA2_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002B /* Sources */, + D51719AF0000000000000000 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A4E78DF7F00000000 /* PBXTargetDependency */, ); - name = _idx_rectangle_util_BC608102_ios_min15.5; - productName = _idx_rectangle_util_BC608102_ios_min15.5; - productReference = 6BF2BEB1A374D54C00000000 /* lib_idx_rectangle_util_BC608102_ios_min15.5.a */; + name = _idx_BeautyFilters_A720FDA2_ios_min11.0; + productName = _idx_BeautyFilters_A720FDA2_ios_min11.0; + productReference = 9D1A05183FD54BB400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE6729A1D000000000 /* _idx_tflite_model_loader_254BEB33_ios_min11.0 */ = { + EDD0A78546A8D4DE00000000 /* _idx_annotation_renderer_78B04092_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */; + buildConfigurationList = 58316E17964D61E600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_78B04092_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000030 /* Sources */, + D51719AF0000000000000015 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* 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 */; + name = _idx_annotation_renderer_78B04092_ios_min15.5; + productName = _idx_annotation_renderer_78B04092_ios_min15.5; + productReference = 9D1A051892D87F3800000000 /* lib_idx_annotation_renderer_78B04092_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */ = { + EDD0A785491ED76E00000000 /* _idx_mediapipe_framework_ios_4D298135_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */; + buildConfigurationList = 58316E1785E2E9E600000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_4D298135_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002C /* Sources */, + D51719AF0000000000000026 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A1D681C9500000000 /* PBXTargetDependency */, + 2811397A3B463BAD00000000 /* PBXTargetDependency */, ); - name = _idx_resource_util_C5C5DB93_ios_min11.0; - productName = _idx_resource_util_C5C5DB93_ios_min11.0; - productReference = 6BF2BEB1E9CE10DC00000000 /* lib_idx_resource_util_C5C5DB93_ios_min11.0.a */; + name = _idx_mediapipe_framework_ios_4D298135_ios_min11.0; + productName = _idx_mediapipe_framework_ios_4D298135_ios_min11.0; + productReference = 9D1A0518D74DCFC000000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7D22C97800000000 /* _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5 */ = { + EDD0A78549BE367E00000000 /* _idx_split_vector_calculator_EE664713_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */; + buildConfigurationList = 58316E17D762E06200000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_EE664713_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000015 /* Sources */, + D51719AF0000000000000032 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AA079FC9500000000 /* PBXTargetDependency */, ); - name = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - productName = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - productReference = 6BF2BEB15FE6FF0200000000 /* lib_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5.a */; + name = _idx_split_vector_calculator_EE664713_ios_min11.0; + productName = _idx_split_vector_calculator_EE664713_ios_min11.0; + productReference = 9D1A05187CDDDF8800000000 /* lib_idx_split_vector_calculator_EE664713_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7E674A3800000000 /* _idx_math_68C63536_ios_min11.0 */ = { + EDD0A7854E78DF7E00000000 /* _idx_core_core-ios_F9E9FB32_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */; + buildConfigurationList = 58316E17D2665BDC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_F9E9FB32_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000006 /* Sources */, + D51719AF0000000000000001 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A2543EE8700000000 /* PBXTargetDependency */, + 2811397A2543EE8700000000 /* PBXTargetDependency */, + 2811397A83F4347500000000 /* PBXTargetDependency */, + 2811397AAC3AEC4700000000 /* PBXTargetDependency */, ); - name = _idx_math_68C63536_ios_min11.0; - productName = _idx_math_68C63536_ios_min11.0; - productReference = 6BF2BEB1042285A000000000 /* lib_idx_math_68C63536_ios_min11.0.a */; + name = "_idx_core_core-ios_F9E9FB32_ios_min11.0"; + productName = "_idx_core_core-ios_F9E9FB32_ios_min11.0"; + productReference = 9D1A05185153B35400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7E908C2800000000 /* _idx_math_68C63536_ios_min15.5 */ = { + EDD0A785528731B400000000 /* _idx_end_loop_calculator_86552B41_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */; + buildConfigurationList = 58316E174953F28A00000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_86552B41_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000A /* Sources */, + D51719AF0000000000000024 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_math_68C63536_ios_min15.5; - productName = _idx_math_68C63536_ios_min15.5; - productReference = 6BF2BEB1D93FD90600000000 /* lib_idx_math_68C63536_ios_min15.5.a */; + name = _idx_end_loop_calculator_86552B41_ios_min11.0; + productName = _idx_end_loop_calculator_86552B41_ios_min11.0; + productReference = 9D1A05180ECCEE5400000000 /* lib_idx_end_loop_calculator_86552B41_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE7FF66ACC00000000 /* _idx_olamodule_common_library_63E72567_ios_min15.5 */ = { + EDD0A7855437EE1A00000000 /* _idx_begin_loop_calculator_00B2416C_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */; + buildConfigurationList = 58316E17E2E7A6DB00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_00B2416C_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000B /* Sources */, + D51719AF0000000000000017 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A87D26E7500000000 /* PBXTargetDependency */, - 285B8B9A3ED3804B00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* 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 */; + name = _idx_begin_loop_calculator_00B2416C_ios_min15.5; + productName = _idx_begin_loop_calculator_00B2416C_ios_min15.5; + productReference = 9D1A0518C149E4D200000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */ = { + EDD0A78557B2318400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */; + buildConfigurationList = 58316E17306AD11C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000001 /* Sources */, + D51719AF000000000000000E /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AE3255C4300000000 /* PBXTargetDependency */, - 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397ADA50AA6900000000 /* PBXTargetDependency */, + 2811397A6444CACD00000000 /* PBXTargetDependency */, + 2811397AF3A1AA7100000000 /* PBXTargetDependency */, ); - name = _idx_olamodule_common_library_63E72567_ios_min11.0; - productName = _idx_olamodule_common_library_63E72567_ios_min11.0; - productReference = 6BF2BEB152022CF000000000 /* lib_idx_olamodule_common_library_63E72567_ios_min11.0.a */; + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5; + productReference = 9D1A0518C37C73A600000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE87D26E7400000000 /* _idx_util_C76AD427_ios_min15.5 */ = { + EDD0A7855CCF621400000000 /* _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5081ECDCC5600000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min15.5" */; + buildConfigurationList = 58316E1740E58C7400000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000000C /* Sources */, + D51719AF0000000000000018 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_util_C76AD427_ios_min15.5; - productName = _idx_util_C76AD427_ios_min15.5; - productReference = 6BF2BEB110B1FD6E00000000 /* lib_idx_util_C76AD427_ios_min15.5.a */; + name = _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0; + productName = _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0; + productReference = 9D1A0518A4931D0C00000000 /* lib_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE87E6141C00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min11.0 */ = { + EDD0A7856082C3BC00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */; + buildConfigurationList = 58316E17EE81095A00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000000E /* Sources */, + D51719AF0000000000000037 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A3E081CF900000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A91016CBF00000000 /* PBXTargetDependency */, + 2811397AAD83C52B00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - productName = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - productReference = 6BF2BEB15656FB7600000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min11.0.a */; + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5; + productReference = 9D1A051802966FD400000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE8B4CD5DE00000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min11.0 */ = { + EDD0A7856444CACC00000000 /* _idx_core_core-ios_F9E9FB32_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */; + buildConfigurationList = 58316E170B36EE9500000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_F9E9FB32_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000022 /* Sources */, + D51719AF0000000000000006 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */, - 285B8B9AE3255C4300000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A71D64AF700000000 /* PBXTargetDependency */, + 2811397A71D64AF700000000 /* PBXTargetDependency */, + 2811397ADC6BB92900000000 /* PBXTargetDependency */, + 2811397AA30404F300000000 /* PBXTargetDependency */, ); - name = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; - productName = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; - productReference = 6BF2BEB105A13E0A00000000 /* lib_idx_mediapipe_framework_ios_C158E828_ios_min11.0.a */; + name = "_idx_core_core-ios_F9E9FB32_ios_min15.5"; + productName = "_idx_core_core-ios_F9E9FB32_ios_min15.5"; + productReference = 9D1A051834FB261400000000 /* lib_idx_core_core-ios_F9E9FB32_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE900EF31A00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min15.5 */ = { + EDD0A785673313FA00000000 /* _idx_op_resolver_E0F4B742_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */; + buildConfigurationList = 58316E1713C922F800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E0F4B742_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000010 /* Sources */, + D51719AF000000000000002B /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AC180231D00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - productName = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - productReference = 6BF2BEB15BA3402400000000 /* lib_idx_annotation_overlay_calculator_D98E9275_ios_min15.5.a */; + name = _idx_op_resolver_E0F4B742_ios_min15.5; + productName = _idx_op_resolver_E0F4B742_ios_min15.5; + productReference = 9D1A0518DB5F819800000000 /* lib_idx_op_resolver_E0F4B742_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE901820A600000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min15.5 */ = { + EDD0A78571A6F9A400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */; + buildConfigurationList = 58316E177A463F4F00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000013 /* Sources */, + D51719AF000000000000000A /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A4521587B00000000 /* PBXTargetDependency */, + 2811397A4E78DF7F00000000 /* PBXTargetDependency */, + 2811397A2D59C41300000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - productName = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - productReference = 6BF2BEB120CC110A00000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min15.5.a */; + name = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0; + productName = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0; + productReference = 9D1A0518B6B5272400000000 /* lib_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE94BE0ED400000000 /* _idx_op_resolver_0836C983_ios_min15.5 */ = { + EDD0A78571D64AF600000000 /* _idx_ref_gpuimagemath_6E8D4716_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */; + buildConfigurationList = 58316E178D99107000000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_6E8D4716_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000027 /* Sources */, + D51719AF0000000000000007 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_op_resolver_0836C983_ios_min15.5; - productName = _idx_op_resolver_0836C983_ios_min15.5; - productReference = 6BF2BEB10343A59400000000 /* lib_idx_op_resolver_0836C983_ios_min15.5.a */; + name = _idx_ref_gpuimagemath_6E8D4716_ios_min15.5; + productName = _idx_ref_gpuimagemath_6E8D4716_ios_min15.5; + productReference = 9D1A0518A746B79E00000000 /* lib_idx_ref_gpuimagemath_6E8D4716_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */ = { + EDD0A7857F91811200000000 /* _idx_annotation_overlay_calculator_844088AB_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */; + buildConfigurationList = 58316E177B1D40AC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_844088AB_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000008 /* Sources */, + D51719AF0000000000000014 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, - 285B8B9A7E908C2900000000 /* PBXTargetDependency */, - 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, - 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A46A8D4DF00000000 /* 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 */; + name = _idx_annotation_overlay_calculator_844088AB_ios_min15.5; + productName = _idx_annotation_overlay_calculator_844088AB_ios_min15.5; + productReference = 9D1A0518DDD8C9DE00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */ = { + EDD0A78583F4347400000000 /* _idx_math_CF33D7F4_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */; + buildConfigurationList = 58316E1762E9DE5500000000 /* Build configuration list for PBXNativeTarget "_idx_math_CF33D7F4_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002D /* Sources */, + D51719AF0000000000000003 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_resource_util_C5C5DB93_ios_min15.5; - productName = _idx_resource_util_C5C5DB93_ios_min15.5; - productReference = 6BF2BEB12E009AA400000000 /* lib_idx_resource_util_C5C5DB93_ios_min15.5.a */; + name = _idx_math_CF33D7F4_ios_min11.0; + productName = _idx_math_CF33D7F4_ios_min11.0; + productReference = 9D1A0518F509679800000000 /* lib_idx_math_CF33D7F4_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9CC89BB200000000 /* _idx_transpose_conv_bias_E3459F40_ios_min15.5 */ = { + EDD0A78583F46D1800000000 /* _idx_util_DB4949E7_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */; + buildConfigurationList = 58316E17B3EF037E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_DB4949E7_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001D /* Sources */, + D51719AF0000000000000011 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - productName = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - productReference = 6BF2BEB17C69A2E400000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min15.5.a */; + name = _idx_util_DB4949E7_ios_min15.5; + productName = _idx_util_DB4949E7_ios_min15.5; + productReference = 9D1A05186ABFADC400000000 /* lib_idx_util_DB4949E7_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CE9CDDB50C00000000 /* _idx_transpose_conv_bias_E3459F40_ios_min11.0 */ = { + EDD0A7859046D5A600000000 /* _idx_annotation_overlay_calculator_844088AB_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */; + buildConfigurationList = 58316E179B637AF700000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_844088AB_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000018 /* Sources */, + D51719AF0000000000000012 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AF2BD211900000000 /* PBXTargetDependency */, ); - name = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - productName = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - productReference = 6BF2BEB1CAFF3BDC00000000 /* lib_idx_transpose_conv_bias_E3459F40_ios_min11.0.a */; + name = _idx_annotation_overlay_calculator_844088AB_ios_min11.0; + productName = _idx_annotation_overlay_calculator_844088AB_ios_min11.0; + productReference = 9D1A05189733546E00000000 /* lib_idx_annotation_overlay_calculator_844088AB_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEAEE1CD9600000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5 */ = { + EDD0A78591016CBE00000000 /* _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5083E77579C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5" */; + buildConfigurationList = 58316E170C6F7CF300000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000009 /* Sources */, + D51719AF000000000000002D /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; - productName = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; - productReference = 6BF2BEB1E3F4AD9A00000000 /* lib_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5.a */; + name = _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5; + productName = _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5; + productReference = 9D1A0518D6C3FC5800000000 /* lib_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEB297DEA800000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min11.0 */ = { + EDD0A785A079FC9400000000 /* _idx_resource_util_1F0C7A9C_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */; + buildConfigurationList = 58316E1717B68C6200000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_1F0C7A9C_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000012 /* Sources */, + D51719AF0000000000000030 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - productName = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - productReference = 6BF2BEB1AE45ACD400000000 /* lib_idx_begin_loop_calculator_50B5F6A2_ios_min11.0.a */; + name = _idx_resource_util_1F0C7A9C_ios_min11.0; + productName = _idx_resource_util_1F0C7A9C_ios_min11.0; + productReference = 9D1A051827D99ADA00000000 /* lib_idx_resource_util_1F0C7A9C_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEB3A6ECAA00000000 /* _idx_non_max_suppression_calculator_E13679C5_ios_min11.0 */ = { + EDD0A785A30404F200000000 /* _idx_gpuimageutil_F68CBC21_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */; + buildConfigurationList = 58316E17E03152C500000000 /* Build configuration list for PBXNativeTarget "_idx_gpuimageutil_F68CBC21_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000024 /* Sources */, + D51719AF0000000000000009 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; - productName = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; - productReference = 6BF2BEB1C40DE00800000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min11.0.a */; + name = _idx_gpuimageutil_F68CBC21_ios_min15.5; + productName = _idx_gpuimageutil_F68CBC21_ios_min15.5; + productReference = 9D1A0518AE1AB07600000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEB4F98C9E00000000 /* _idx_util_C76AD427_ios_min11.0 */ = { + EDD0A785A4FAFDFA00000000 /* _idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508EA09B22F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min11.0" */; + buildConfigurationList = 58316E17C628CF7300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000003 /* Sources */, + D51719AF0000000000000029 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_util_C76AD427_ios_min11.0; - productName = _idx_util_C76AD427_ios_min11.0; - productReference = 6BF2BEB17384850E00000000 /* lib_idx_util_C76AD427_ios_min11.0.a */; + name = _idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5; + productName = _idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5; + productReference = 9D1A05181525E57200000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEB888FE7400000000 /* _idx_non_max_suppression_calculator_E13679C5_ios_min15.5 */ = { + EDD0A785A7B03F2400000000 /* _idx_mediapipe_framework_ios_4D298135_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */; + buildConfigurationList = 58316E17AB76BC9B00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_4D298135_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000025 /* Sources */, + D51719AF0000000000000027 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397ADF58A07300000000 /* PBXTargetDependency */, + 2811397A83F46D1900000000 /* PBXTargetDependency */, ); - name = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; - productName = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; - productReference = 6BF2BEB179FA7B5A00000000 /* lib_idx_non_max_suppression_calculator_E13679C5_ios_min15.5.a */; + name = _idx_mediapipe_framework_ios_4D298135_ios_min15.5; + productName = _idx_mediapipe_framework_ios_4D298135_ios_min15.5; + productReference = 9D1A0518E9BFDC3600000000 /* lib_idx_mediapipe_framework_ios_4D298135_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEBC6B4FBA00000000 /* _idx_rectangle_util_BC608102_ios_min11.0 */ = { + EDD0A785AC3AEC4600000000 /* _idx_gpuimageutil_F68CBC21_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508B2B858A400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min11.0" */; + buildConfigurationList = 58316E1722228A2A00000000 /* Build configuration list for PBXNativeTarget "_idx_gpuimageutil_F68CBC21_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000002A /* Sources */, + D51719AF0000000000000004 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_rectangle_util_BC608102_ios_min11.0; - productName = _idx_rectangle_util_BC608102_ios_min11.0; - productReference = 6BF2BEB10F69F5F200000000 /* lib_idx_rectangle_util_BC608102_ios_min11.0.a */; + name = _idx_gpuimageutil_F68CBC21_ios_min11.0; + productName = _idx_gpuimageutil_F68CBC21_ios_min11.0; + productReference = 9D1A05187BE50ADE00000000 /* lib_idx_gpuimageutil_F68CBC21_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEC180231C00000000 /* _idx_annotation_renderer_8D68840D_ios_min15.5 */ = { + EDD0A785AD1A46EA00000000 /* _idx_detection_projection_calculator_1999E439_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */; + buildConfigurationList = 58316E17643C46D500000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_1999E439_ios_min11.0" */; buildPhases = ( - 4A9C8A580000000000000011 /* Sources */, + D51719AF0000000000000022 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_annotation_renderer_8D68840D_ios_min15.5; - productName = _idx_annotation_renderer_8D68840D_ios_min15.5; - productReference = 6BF2BEB1CE57CAE800000000 /* lib_idx_annotation_renderer_8D68840D_ios_min15.5.a */; + name = _idx_detection_projection_calculator_1999E439_ios_min11.0; + productName = _idx_detection_projection_calculator_1999E439_ios_min11.0; + productReference = 9D1A0518D63539AE00000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */ = { + EDD0A785AD3D569200000000 /* _idx_detection_projection_calculator_1999E439_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */; + buildConfigurationList = 58316E1737363DFE00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_1999E439_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000028 /* Sources */, + D51719AF0000000000000023 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* 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 */; + name = _idx_detection_projection_calculator_1999E439_ios_min15.5; + productName = _idx_detection_projection_calculator_1999E439_ios_min15.5; + productReference = 9D1A05180E1AA60400000000 /* lib_idx_detection_projection_calculator_1999E439_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CECC596BC000000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min15.5 */ = { + EDD0A785AD83C52A00000000 /* _idx_resource_util_1F0C7A9C_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */; + buildConfigurationList = 58316E175B975CD900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_1F0C7A9C_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000023 /* Sources */, + D51719AF0000000000000031 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A87D26E7500000000 /* PBXTargetDependency */, - 285B8B9A3ED3804B00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* 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 */; + name = _idx_resource_util_1F0C7A9C_ios_min15.5; + productName = _idx_resource_util_1F0C7A9C_ios_min15.5; + productReference = 9D1A0518422C40C000000000 /* lib_idx_resource_util_1F0C7A9C_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CECDF0E1D000000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0 */ = { + EDD0A785B490AB3400000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */; + buildConfigurationList = 58316E179EA08B6D00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */; buildPhases = ( - 4A9C8A580000000000000004 /* Sources */, + 828607DA2742A6B900000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A10832CE100000000 /* PBXTargetDependency */, - 285B8B9A10832CE100000000 /* PBXTargetDependency */, - 285B8B9A10832CE100000000 /* PBXTargetDependency */, - 285B8B9A7E674A3900000000 /* 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" */; - buildPhases = ( - 849F77195E6C5ED100000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */, - ); - buildRules = ( - ); - dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); name = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; productName = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; - productReference = 6BF2BEB1DC26EEDA00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */; + productReference = 9D1A05189FDA768C00000000 /* libmediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */ = { + EDD0A785C4A1069C00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */; + buildConfigurationList = 58316E1784198F0E00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000002E /* Sources */, + D51719AF000000000000001F /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A762E872100000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; - productName = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; - productReference = 6BF2BEB115B04C8C00000000 /* lib_idx_split_vector_calculator_ED1EBC41_ios_min11.0.a */; + name = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5; + productName = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5; + productReference = 9D1A05189A6D4D1E00000000 /* lib_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEE3255C4200000000 /* _idx_cpu_util_C9677097_ios_min11.0 */ = { + EDD0A785DA50AA6800000000 /* _idx_BeautyFilters_A720FDA2_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5087A1991E800000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min11.0" */; + buildConfigurationList = 58316E170E39C41600000000 /* Build configuration list for PBXNativeTarget "_idx_BeautyFilters_A720FDA2_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000002 /* Sources */, + D51719AF0000000000000005 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A6444CACD00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_util_C9677097_ios_min11.0; - productName = _idx_cpu_util_C9677097_ios_min11.0; - productReference = 6BF2BEB1311D3FFA00000000 /* lib_idx_cpu_util_C9677097_ios_min11.0.a */; + name = _idx_BeautyFilters_A720FDA2_ios_min15.5; + productName = _idx_BeautyFilters_A720FDA2_ios_min15.5; + productReference = 9D1A0518A6381C9400000000 /* lib_idx_BeautyFilters_A720FDA2_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEE493101600000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5 */ = { + EDD0A785DC6BB92800000000 /* _idx_math_CF33D7F4_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508F78E615300000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5" */; + buildConfigurationList = 58316E179003AD7700000000 /* Build configuration list for PBXNativeTarget "_idx_math_CF33D7F4_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000033 /* Sources */, + D51719AF0000000000000008 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A07268A4900000000 /* PBXTargetDependency */, - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; - productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; - productReference = 6BF2BEB1F180FE8800000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5.a */; + name = _idx_math_CF33D7F4_ios_min15.5; + productName = _idx_math_CF33D7F4_ios_min15.5; + productReference = 9D1A05187B60069400000000 /* lib_idx_math_CF33D7F4_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEE4F68A4800000000 /* _idx_cpu_op_resolver_519CBACD_ios_min11.0 */ = { + EDD0A785DD70AD3E00000000 /* _idx_end_loop_calculator_86552B41_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */; + buildConfigurationList = 58316E1745DFF29700000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_86552B41_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000016 /* Sources */, + D51719AF0000000000000025 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */, - 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A1838F83F00000000 /* PBXTargetDependency */, - 285B8B9A1AC4218B00000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - productName = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - productReference = 6BF2BEB1E22D8E4E00000000 /* lib_idx_cpu_op_resolver_519CBACD_ios_min11.0.a */; + name = _idx_end_loop_calculator_86552B41_ios_min15.5; + productName = _idx_end_loop_calculator_86552B41_ios_min15.5; + productReference = 9D1A05189671FDDE00000000 /* lib_idx_end_loop_calculator_86552B41_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEECAE0B3600000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5 */ = { + EDD0A785DF58A07200000000 /* _idx_cpu_util_10B87B03_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */; + buildConfigurationList = 58316E1738882BC300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_10B87B03_ios_min15.5" */; buildPhases = ( - 4A9C8A580000000000000007 /* Sources */, + D51719AF0000000000000010 /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, - 285B8B9A97A002A700000000 /* PBXTargetDependency */, - 285B8B9A7FF66ACD00000000 /* PBXTargetDependency */, - 285B8B9A97A002A700000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* 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 */; + name = _idx_cpu_util_10B87B03_ios_min15.5; + productName = _idx_cpu_util_10B87B03_ios_min15.5; + productReference = 9D1A0518F5B9388A00000000 /* lib_idx_cpu_util_10B87B03_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */ = { + EDD0A785E296B5A200000000 /* _idx_rectangle_util_F7F3797D_ios_min15.5 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */; + buildConfigurationList = 58316E173CFD7FD400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_F7F3797D_ios_min15.5" */; buildPhases = ( - 4A9C8A58000000000000001F /* Sources */, + D51719AF000000000000002F /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - productName = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - productReference = 6BF2BEB1D488EF1800000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min15.5.a */; + name = _idx_rectangle_util_F7F3797D_ios_min15.5; + productName = _idx_rectangle_util_F7F3797D_ios_min15.5; + productReference = 9D1A05181DF1A9C200000000 /* lib_idx_rectangle_util_F7F3797D_ios_min15.5.a */; productType = "com.apple.product-type.library.static"; }; - F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */ = { + EDD0A785E39F886600000000 /* _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0 */ = { isa = PBXNativeTarget; - buildConfigurationList = 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */; + buildConfigurationList = 58316E176FB16FD200000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0" */; buildPhases = ( - 4A9C8A58000000000000001E /* Sources */, + D51719AF000000000000001C /* Sources */, ); buildRules = ( ); dependencies = ( - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */, + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, ); - name = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - productName = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - productReference = 6BF2BEB126D0D2E600000000 /* lib_idx_detection_projection_calculator_6C26583E_ios_min11.0.a */; + name = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0; + productName = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0; + productReference = 9D1A0518DC58ED3200000000 /* lib_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785E65F7A9400000000 /* _idx_begin_loop_calculator_00B2416C_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17ECA636F800000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_00B2416C_ios_min11.0" */; + buildPhases = ( + D51719AF0000000000000016 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + ); + name = _idx_begin_loop_calculator_00B2416C_ios_min11.0; + productName = _idx_begin_loop_calculator_00B2416C_ios_min11.0; + productReference = 9D1A051813CAE71A00000000 /* lib_idx_begin_loop_calculator_00B2416C_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785E882F04000000000 /* _idx_tflite_model_loader_22B76F2A_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E177371B39600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_22B76F2A_ios_min11.0" */; + buildPhases = ( + D51719AF0000000000000034 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AA079FC9500000000 /* PBXTargetDependency */, + ); + name = _idx_tflite_model_loader_22B76F2A_ios_min11.0; + productName = _idx_tflite_model_loader_22B76F2A_ios_min11.0; + productReference = 9D1A0518FC1FDA7A00000000 /* lib_idx_tflite_model_loader_22B76F2A_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785E974992C00000000 /* _idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17DA44C9A500000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0" */; + buildPhases = ( + D51719AF0000000000000028 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + ); + name = _idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0; + productName = _idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0; + productReference = 9D1A051857A288AA00000000 /* lib_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785F15E172000000000 /* _idx_transpose_conv_bias_7C342083_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17EFE04B1700000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_7C342083_ios_min11.0" */; + buildPhases = ( + D51719AF000000000000001D /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + ); + name = _idx_transpose_conv_bias_7C342083_ios_min11.0; + productName = _idx_transpose_conv_bias_7C342083_ios_min11.0; + productReference = 9D1A0518E03ABFCA00000000 /* lib_idx_transpose_conv_bias_7C342083_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785F2BD211800000000 /* _idx_annotation_renderer_78B04092_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E172DB5646800000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_78B04092_ios_min11.0" */; + buildPhases = ( + D51719AF0000000000000013 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + ); + name = _idx_annotation_renderer_78B04092_ios_min11.0; + productName = _idx_annotation_renderer_78B04092_ios_min11.0; + productReference = 9D1A0518B3937F2C00000000 /* lib_idx_annotation_renderer_78B04092_ios_min11.0.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785F358232600000000 /* _idx_split_vector_calculator_EE664713_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17647797AD00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_EE664713_ios_min15.5" */; + buildPhases = ( + D51719AF0000000000000033 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397AAD83C52B00000000 /* PBXTargetDependency */, + ); + name = _idx_split_vector_calculator_EE664713_ios_min15.5; + productName = _idx_split_vector_calculator_EE664713_ios_min15.5; + productReference = 9D1A0518744AC67600000000 /* lib_idx_split_vector_calculator_EE664713_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785F3A1AA7000000000 /* _idx_olamodule_common_library_54ECBB79_ios_min15.5 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17F35FC0A900000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_54ECBB79_ios_min15.5" */; + buildPhases = ( + D51719AF000000000000000F /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397ADF58A07300000000 /* PBXTargetDependency */, + 2811397A83F46D1900000000 /* PBXTargetDependency */, + ); + name = _idx_olamodule_common_library_54ECBB79_ios_min15.5; + productName = _idx_olamodule_common_library_54ECBB79_ios_min15.5; + productReference = 9D1A05188E7107A200000000 /* lib_idx_olamodule_common_library_54ECBB79_ios_min15.5.a */; + productType = "com.apple.product-type.library.static"; + }; + EDD0A785FEB8E61800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 58316E17697AE7B900000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0" */; + buildPhases = ( + D51719AF0000000000000036 /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + 2811397AE51A0D9D00000000 /* PBXTargetDependency */, + 2811397A1C54576900000000 /* PBXTargetDependency */, + 2811397AA079FC9500000000 /* PBXTargetDependency */, + ); + name = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0; + productName = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0; + productReference = 9D1A051846C9BCC000000000 /* lib_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 644B9F4C2866F94D00000000 /* Project object */ = { + 66E663F842F582F700000000 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 0710; LastUpgradeCheck = 1000; }; - buildConfigurationList = 84EFF50830543F6100000000 /* Build configuration list for PBXProject "FaceUnityFramework" */; + buildConfigurationList = 58316E17BE89646900000000 /* Build configuration list for PBXProject "FaceUnityFramework" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( - English, en, ); - mainGroup = A2FEA7368F9210D400000000 /* mainGroup */; - projectDirPath = ""; - projectRoot = ""; + mainGroup = E8B2C9EDE5C2227500000000 /* mainGroup */; targets = ( - F2FE34CE0C5C7AFE00000000 /* OlaFaceUnityFramework */, - E9F6BC4B3AD2DEC400000000 /* _bazel_clean_ */, - F2FE34CE4E15716800000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0 */, - F2FE34CEECAE0B3600000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5 */, - F2FE34CE87E6141C00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min11.0 */, - F2FE34CE900EF31A00000000 /* _idx_annotation_overlay_calculator_D98E9275_ios_min15.5 */, - F2FE34CE3E081CF800000000 /* _idx_annotation_renderer_8D68840D_ios_min11.0 */, - F2FE34CEC180231C00000000 /* _idx_annotation_renderer_8D68840D_ios_min15.5 */, - F2FE34CEB297DEA800000000 /* _idx_begin_loop_calculator_50B5F6A2_ios_min11.0 */, - 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 */, - 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 */, - F2FE34CEE3255C4200000000 /* _idx_cpu_util_C9677097_ios_min11.0 */, - F2FE34CE3ED3804A00000000 /* _idx_cpu_util_C9677097_ios_min15.5 */, - F2FE34CEFB2C360E00000000 /* _idx_detection_projection_calculator_6C26583E_ios_min11.0 */, - F2FE34CEF0AD942200000000 /* _idx_detection_projection_calculator_6C26583E_ios_min15.5 */, - F2FE34CE564601F800000000 /* _idx_end_loop_calculator_AADF2B85_ios_min11.0 */, - F2FE34CE1D7E686A00000000 /* _idx_end_loop_calculator_AADF2B85_ios_min15.5 */, - F2FE34CE7E674A3800000000 /* _idx_math_68C63536_ios_min11.0 */, - F2FE34CE7E908C2800000000 /* _idx_math_68C63536_ios_min15.5 */, - F2FE34CE1AC4218A00000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0 */, - F2FE34CE216C14B800000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5 */, - F2FE34CE8B4CD5DE00000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min11.0 */, - F2FE34CECC596BC000000000 /* _idx_mediapipe_framework_ios_C158E828_ios_min15.5 */, - F2FE34CEB3A6ECAA00000000 /* _idx_non_max_suppression_calculator_E13679C5_ios_min11.0 */, - F2FE34CEB888FE7400000000 /* _idx_non_max_suppression_calculator_E13679C5_ios_min15.5 */, - F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */, - 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 */, - F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */, - F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */, - F2FE34CEBC6B4FBA00000000 /* _idx_rectangle_util_BC608102_ios_min11.0 */, - F2FE34CE61FD1EC600000000 /* _idx_rectangle_util_BC608102_ios_min15.5 */, - F2FE34CE10832CE000000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0 */, - F2FE34CEAEE1CD9600000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5 */, - F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */, - F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */, - F2FE34CEDDBFB5A200000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min11.0 */, - F2FE34CE06501FEA00000000 /* _idx_split_vector_calculator_ED1EBC41_ios_min15.5 */, - F2FE34CE6729A1D000000000 /* _idx_tflite_model_loader_254BEB33_ios_min11.0 */, - F2FE34CE2C307FC200000000 /* _idx_tflite_model_loader_254BEB33_ios_min15.5 */, - F2FE34CE3E7A910800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0 */, - F2FE34CEE493101600000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_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 */, - F2FE34CEB4F98C9E00000000 /* _idx_util_C76AD427_ios_min11.0 */, - F2FE34CE87D26E7400000000 /* _idx_util_C76AD427_ios_min15.5 */, - F2FE34CED4660C9200000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */, + EDD0A78501748AFE00000000 /* OlaFaceUnityFramework */, + B995B665E51A0D9C00000000 /* _bazel_clean_ */, + EDD0A7854521587A00000000 /* _idx_BeautyFilters_A720FDA2_ios_min11.0 */, + EDD0A785DA50AA6800000000 /* _idx_BeautyFilters_A720FDA2_ios_min15.5 */, + EDD0A78571A6F9A400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0 */, + EDD0A78557B2318400000000 /* _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5 */, + EDD0A7859046D5A600000000 /* _idx_annotation_overlay_calculator_844088AB_ios_min11.0 */, + EDD0A7857F91811200000000 /* _idx_annotation_overlay_calculator_844088AB_ios_min15.5 */, + EDD0A785F2BD211800000000 /* _idx_annotation_renderer_78B04092_ios_min11.0 */, + EDD0A78546A8D4DE00000000 /* _idx_annotation_renderer_78B04092_ios_min15.5 */, + EDD0A785E65F7A9400000000 /* _idx_begin_loop_calculator_00B2416C_ios_min11.0 */, + EDD0A7855437EE1A00000000 /* _idx_begin_loop_calculator_00B2416C_ios_min15.5 */, + EDD0A7855CCF621400000000 /* _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0 */, + EDD0A7853CD8700C00000000 /* _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5 */, + EDD0A7854E78DF7E00000000 /* _idx_core_core-ios_F9E9FB32_ios_min11.0 */, + EDD0A7856444CACC00000000 /* _idx_core_core-ios_F9E9FB32_ios_min15.5 */, + EDD0A7851101930000000000 /* _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0 */, + EDD0A7852444EA8200000000 /* _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5 */, + EDD0A7851D681C9400000000 /* _idx_cpu_util_10B87B03_ios_min11.0 */, + EDD0A785DF58A07200000000 /* _idx_cpu_util_10B87B03_ios_min15.5 */, + EDD0A785AD1A46EA00000000 /* _idx_detection_projection_calculator_1999E439_ios_min11.0 */, + EDD0A785AD3D569200000000 /* _idx_detection_projection_calculator_1999E439_ios_min15.5 */, + EDD0A785528731B400000000 /* _idx_end_loop_calculator_86552B41_ios_min11.0 */, + EDD0A785DD70AD3E00000000 /* _idx_end_loop_calculator_86552B41_ios_min15.5 */, + EDD0A785AC3AEC4600000000 /* _idx_gpuimageutil_F68CBC21_ios_min11.0 */, + EDD0A785A30404F200000000 /* _idx_gpuimageutil_F68CBC21_ios_min15.5 */, + EDD0A78583F4347400000000 /* _idx_math_CF33D7F4_ios_min11.0 */, + EDD0A785DC6BB92800000000 /* _idx_math_CF33D7F4_ios_min15.5 */, + EDD0A785E39F886600000000 /* _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0 */, + EDD0A78536B3CE1600000000 /* _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5 */, + EDD0A785491ED76E00000000 /* _idx_mediapipe_framework_ios_4D298135_ios_min11.0 */, + EDD0A785A7B03F2400000000 /* _idx_mediapipe_framework_ios_4D298135_ios_min15.5 */, + EDD0A785E974992C00000000 /* _idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0 */, + EDD0A785A4FAFDFA00000000 /* _idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5 */, + EDD0A7852D59C41200000000 /* _idx_olamodule_common_library_54ECBB79_ios_min11.0 */, + EDD0A785F3A1AA7000000000 /* _idx_olamodule_common_library_54ECBB79_ios_min15.5 */, + EDD0A78525AE2D2E00000000 /* _idx_op_resolver_E0F4B742_ios_min11.0 */, + EDD0A785673313FA00000000 /* _idx_op_resolver_E0F4B742_ios_min15.5 */, + EDD0A7851C54576800000000 /* _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0 */, + EDD0A78591016CBE00000000 /* _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5 */, + EDD0A7850352AB2A00000000 /* _idx_rectangle_util_F7F3797D_ios_min11.0 */, + EDD0A785E296B5A200000000 /* _idx_rectangle_util_F7F3797D_ios_min15.5 */, + EDD0A7852543EE8600000000 /* _idx_ref_gpuimagemath_6E8D4716_ios_min11.0 */, + EDD0A78571D64AF600000000 /* _idx_ref_gpuimagemath_6E8D4716_ios_min15.5 */, + EDD0A785A079FC9400000000 /* _idx_resource_util_1F0C7A9C_ios_min11.0 */, + EDD0A785AD83C52A00000000 /* _idx_resource_util_1F0C7A9C_ios_min15.5 */, + EDD0A78549BE367E00000000 /* _idx_split_vector_calculator_EE664713_ios_min11.0 */, + EDD0A785F358232600000000 /* _idx_split_vector_calculator_EE664713_ios_min15.5 */, + EDD0A785E882F04000000000 /* _idx_tflite_model_loader_22B76F2A_ios_min11.0 */, + EDD0A7853B1C9BF800000000 /* _idx_tflite_model_loader_22B76F2A_ios_min15.5 */, + EDD0A785FEB8E61800000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0 */, + EDD0A7856082C3BC00000000 /* _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5 */, + EDD0A7852F164B6200000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0 */, + EDD0A785C4A1069C00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5 */, + EDD0A785F15E172000000000 /* _idx_transpose_conv_bias_7C342083_ios_min11.0 */, + EDD0A78540B23BB400000000 /* _idx_transpose_conv_bias_7C342083_ios_min15.5 */, + EDD0A7853B463BAC00000000 /* _idx_util_DB4949E7_ios_min11.0 */, + EDD0A78583F46D1800000000 /* _idx_util_DB4949E7_ios_min15.5 */, + EDD0A785B490AB3400000000 /* mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary */, ); }; /* End PBXProject section */ /* Begin PBXShellScriptBuildPhase section */ - 849F771958BFBC1000000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 0; - files = ( - ); - inputPaths = ( - "$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)", - ); - name = "build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/bash; - shellScript = "set -e\ncd \"${SRCROOT}/../../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; - }; - 849F77195E6C5ED100000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */ = { + 828607DA2742A6B900000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 0; files = ( @@ -2192,1479 +2316,865 @@ runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; shellScript = "set -e\ncd \"${SRCROOT}/../../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + showEnvVarsInLog = 1; + }; + 828607DAED801A7600000000 /* build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 0; + files = ( + ); + inputPaths = ( + "$(TARGET_BUILD_DIR)/$(INFOPLIST_PATH)", + ); + name = "build //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/bash; + shellScript = "set -e\ncd \"${SRCROOT}/../../../../../..\"\nexec \"${PROJECT_FILE_PATH}/.tulsi/Scripts/bazel_build.py\" //mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework --bazel \"/opt/homebrew/Cellar/bazelisk/1.12.0/bin/bazelisk\" --bazel_bin_path \"bazel-bin\" --verbose "; + showEnvVarsInLog = 1; }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 4A9C8A580000000000000000 /* Sources */ = { + D51719AF0000000000000000 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503011335A86600000000 /* OlaFaceUnity.mm in Sources */, - FF950301A402CD0400000000 /* face_mesh_module.cc in Sources */, - FF950301DF7A0C9B00000000 /* face_mesh_beauty_render.cc in Sources */, - FF950301CD7D0AD600000000 /* face_mesh_module_imp.cc in Sources */, + AE561F62CB56A17700000000 /* BilateralAdjustFilter.cpp in filters */, + AE561F629BB9EF1F00000000 /* FaceDistortionFilter.cpp in filters */, + AE561F62F524754100000000 /* OlaBeautyFilter.cpp in filters */, + AE561F629FEDE59900000000 /* UnSharpMaskFilter.cpp in filters */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000001 /* Sources */ = { + D51719AF0000000000000001 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017071A1E200000000 /* ola_graph.cc in Sources */, + AE561F62DF10257B00000000 /* FramebufferCache.cpp in core */, + AE561F6224028C2A00000000 /* Framebuffer.cpp in core */, + AE561F62BAA9784900000000 /* Target.cpp in core */, + AE561F621A5AF34500000000 /* Context.cpp in core */, + AE561F62B5549E7B00000000 /* Filter.cpp in core */, + AE561F62366C28A700000000 /* GLProgram.cpp in core */, + AE561F62688BDBD200000000 /* Source.cpp in core */, + AE561F626B38661900000000 /* SourceImage.cpp in core */, + AE561F62B541904500000000 /* IOSTarget.cpp in core */, + AE561F622760766100000000 /* CVFramebuffer.cpp in core */, + AE561F62D76E8D3000000000 /* SourceCamera.cpp in core */, + AE561F62F520944600000000 /* TargetView.cpp in core */, + AE561F62EED1272900000000 /* FilterGroup.cpp in core */, + AE561F62B7DF5A1B00000000 /* dispatch_queue.cpp in core */, + AE561F6240660CF800000000 /* GLThreadDispatch.cpp in core */, + AE561F6215C3EC2900000000 /* OpipeDispatch.cpp in core */, + AE561F62E6435E1C00000000 /* OlaShareTextureFilter.cpp in core */, + AE561F62DD8776DB00000000 /* AlphaBlendFilter.cpp in core */, + AE561F624C26B1F400000000 /* BilateralFilter.cpp in core */, + AE561F62C740BD4E00000000 /* GaussianBlurFilter.cpp in core */, + AE561F62C1562A1600000000 /* GaussianBlurMonoFilter.cpp in core */, + AE561F625547722D00000000 /* LUTFilter.cpp in core */, + AE561F62127F047A00000000 /* OlaContext.cpp in core */, + AE561F620998301500000000 /* OlaYUVTexture.cpp in core */, + AE561F62486157AC00000000 /* OlaYUVTexture420P.cpp in core */, + AE561F627869539F00000000 /* OlaCameraSource.cpp in core */, + AE561F62DF10257B00000001 /* FramebufferCache.cpp in core */, + AE561F6224028C2A00000001 /* Framebuffer.cpp in core */, + AE561F62BAA9784900000001 /* Target.cpp in core */, + AE561F621A5AF34500000001 /* Context.cpp in core */, + AE561F62B5549E7B00000001 /* Filter.cpp in core */, + AE561F62366C28A700000001 /* GLProgram.cpp in core */, + AE561F62688BDBD200000001 /* Source.cpp in core */, + AE561F626B38661900000001 /* SourceImage.cpp in core */, + AE561F62B541904500000001 /* IOSTarget.cpp in core */, + AE561F622760766100000001 /* CVFramebuffer.cpp in core */, + AE561F62D76E8D3000000001 /* SourceCamera.cpp in core */, + AE561F62F520944600000001 /* TargetView.cpp in core */, + AE561F62EED1272900000001 /* FilterGroup.cpp in core */, + AE561F62B7DF5A1B00000001 /* dispatch_queue.cpp in core */, + AE561F6240660CF800000001 /* GLThreadDispatch.cpp in core */, + AE561F6215C3EC2900000001 /* OpipeDispatch.cpp in core */, + AE561F62E6435E1C00000001 /* OlaShareTextureFilter.cpp in core */, + AE561F62DD8776DB00000001 /* AlphaBlendFilter.cpp in core */, + AE561F624C26B1F400000001 /* BilateralFilter.cpp in core */, + AE561F62C740BD4E00000001 /* GaussianBlurFilter.cpp in core */, + AE561F62C1562A1600000001 /* GaussianBlurMonoFilter.cpp in core */, + AE561F625547722D00000001 /* LUTFilter.cpp in core */, + AE561F62127F047A00000001 /* OlaContext.cpp in core */, + AE561F620998301500000001 /* OlaYUVTexture.cpp in core */, + AE561F62486157AC00000001 /* OlaYUVTexture420P.cpp in core */, + AE561F627869539F00000001 /* OlaCameraSource.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000002 /* Sources */ = { + D51719AF0000000000000002 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503016EE5C41200000000 /* cpu_util.cc in Sources */, + AE561F62EA12225700000000 /* Ref.cpp in core */, + AE561F62203E676800000000 /* math.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000003 /* Sources */ = { + D51719AF0000000000000003 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301202F72AF00000000 /* util.cc in Sources */, + AE561F626CDB0ACA00000000 /* mat4.cpp in math */, + AE561F62E5F7536D00000000 /* math_utils.cpp in math */, + AE561F628105E18A00000000 /* vec2.cpp in math */, + AE561F6217D70EAE00000000 /* vec3.cpp in math */, + AE561F62AC54908400000000 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000004 /* Sources */ = { + D51719AF0000000000000004 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F02D7B8400000000 /* FramebufferCache.cpp in Sources */, - FF95030182C4C71800000000 /* Framebuffer.cpp in Sources */, - FF950301D796612B00000000 /* Target.cpp in Sources */, - FF950301D9E0F97500000000 /* Context.cpp in Sources */, - FF95030178760ADA00000000 /* Filter.cpp in Sources */, - FF9503017F4ECE3500000000 /* GLProgram.cpp in Sources */, - FF95030112590DCE00000000 /* Source.cpp in Sources */, - FF950301868499C900000000 /* SourceImage.cpp in Sources */, - FF9503012FF7D76200000000 /* IOSTarget.cpp in Sources */, - FF950301FCEDD60B00000000 /* CVFramebuffer.cpp in Sources */, - FF9503017C1D80AC00000000 /* TargetView.cpp in Sources */, - FF950301F573FC1600000000 /* FilterGroup.cpp in Sources */, - FF950301FF68235A00000000 /* dispatch_queue.cpp in Sources */, - FF95030122A81B8400000000 /* GLThreadDispatch.cpp in Sources */, - FF9503013604E74800000000 /* OpipeDispatch.cpp in Sources */, - FF950301695F7B1800000000 /* OlaShareTextureFilter.cpp in Sources */, - FF95030166524CD000000000 /* AlphaBlendFilter.cpp in Sources */, - FF9503018C3C5D5200000000 /* BilateralFilter.cpp in Sources */, - FF950301012F72CA00000000 /* GaussianBlurFilter.cpp in Sources */, - FF950301F015768000000000 /* GaussianBlurMonoFilter.cpp in Sources */, - FF9503016E142DC700000000 /* LUTFilter.cpp in Sources */, - FF95030176651B8000000000 /* OlaContext.cpp in Sources */, - FF9503013300B09700000000 /* BilateralAdjustFilter.cpp in Sources */, - FF950301EA26099000000000 /* FaceDistortionFilter.cpp in Sources */, - FF950301F2C948BB00000000 /* OlaBeautyFilter.cpp in Sources */, - FF95030172ED6A0900000000 /* UnSharpMaskFilter.cpp in Sources */, - FF950301F02D7B8400000001 /* FramebufferCache.cpp in Sources */, - FF95030182C4C71800000001 /* Framebuffer.cpp in Sources */, - FF950301D796612B00000001 /* Target.cpp in Sources */, - FF950301D9E0F97500000001 /* Context.cpp in Sources */, - FF95030178760ADA00000001 /* Filter.cpp in Sources */, - FF9503017F4ECE3500000001 /* GLProgram.cpp in Sources */, - FF95030112590DCE00000001 /* Source.cpp in Sources */, - FF950301868499C900000001 /* SourceImage.cpp in Sources */, - FF9503012FF7D76200000001 /* IOSTarget.cpp in Sources */, - FF950301FCEDD60B00000001 /* CVFramebuffer.cpp in Sources */, - FF9503017C1D80AC00000001 /* TargetView.cpp in Sources */, - FF950301F573FC1600000001 /* FilterGroup.cpp in Sources */, - FF950301FF68235A00000001 /* dispatch_queue.cpp in Sources */, - FF95030122A81B8400000001 /* GLThreadDispatch.cpp in Sources */, - FF9503013604E74800000001 /* OpipeDispatch.cpp in Sources */, - FF950301695F7B1800000001 /* OlaShareTextureFilter.cpp in Sources */, - FF95030166524CD000000001 /* AlphaBlendFilter.cpp in Sources */, - FF9503018C3C5D5200000001 /* BilateralFilter.cpp in Sources */, - FF950301012F72CA00000001 /* GaussianBlurFilter.cpp in Sources */, - FF950301F015768000000001 /* GaussianBlurMonoFilter.cpp in Sources */, - FF9503016E142DC700000001 /* LUTFilter.cpp in Sources */, - FF95030176651B8000000001 /* OlaContext.cpp in Sources */, + AE561F62113D77AC00000000 /* GPUImageUtil.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000005 /* Sources */ = { + D51719AF0000000000000005 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301EA0F1F1F00000000 /* Ref.cpp in Sources */, - FF9503015CAB504600000000 /* math.cpp in Sources */, - FF9503012D3894B500000000 /* GPUImageUtil.cpp in Sources */, + AE561F62CB56A17700000001 /* BilateralAdjustFilter.cpp in filters */, + AE561F629BB9EF1F00000001 /* FaceDistortionFilter.cpp in filters */, + AE561F62F524754100000001 /* OlaBeautyFilter.cpp in filters */, + AE561F629FEDE59900000001 /* UnSharpMaskFilter.cpp in filters */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000006 /* Sources */ = { + D51719AF0000000000000006 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301A7B31D6A00000000 /* mat4.cpp in Sources */, - FF950301CB04A48200000000 /* math_utils.cpp in Sources */, - FF9503015590E40F00000000 /* vec2.cpp in Sources */, - FF9503010019414900000000 /* vec3.cpp in Sources */, - FF950301193223CD00000000 /* vec4.cpp in Sources */, + AE561F62DF10257B00000002 /* FramebufferCache.cpp in core */, + AE561F6224028C2A00000002 /* Framebuffer.cpp in core */, + AE561F62BAA9784900000002 /* Target.cpp in core */, + AE561F621A5AF34500000002 /* Context.cpp in core */, + AE561F62B5549E7B00000002 /* Filter.cpp in core */, + AE561F62366C28A700000002 /* GLProgram.cpp in core */, + AE561F62688BDBD200000002 /* Source.cpp in core */, + AE561F626B38661900000002 /* SourceImage.cpp in core */, + AE561F62B541904500000002 /* IOSTarget.cpp in core */, + AE561F622760766100000002 /* CVFramebuffer.cpp in core */, + AE561F62D76E8D3000000002 /* SourceCamera.cpp in core */, + AE561F62F520944600000002 /* TargetView.cpp in core */, + AE561F62EED1272900000002 /* FilterGroup.cpp in core */, + AE561F62B7DF5A1B00000002 /* dispatch_queue.cpp in core */, + AE561F6240660CF800000002 /* GLThreadDispatch.cpp in core */, + AE561F6215C3EC2900000002 /* OpipeDispatch.cpp in core */, + AE561F62E6435E1C00000002 /* OlaShareTextureFilter.cpp in core */, + AE561F62DD8776DB00000002 /* AlphaBlendFilter.cpp in core */, + AE561F624C26B1F400000002 /* BilateralFilter.cpp in core */, + AE561F62C740BD4E00000002 /* GaussianBlurFilter.cpp in core */, + AE561F62C1562A1600000002 /* GaussianBlurMonoFilter.cpp in core */, + AE561F625547722D00000002 /* LUTFilter.cpp in core */, + AE561F62127F047A00000002 /* OlaContext.cpp in core */, + AE561F620998301500000002 /* OlaYUVTexture.cpp in core */, + AE561F62486157AC00000002 /* OlaYUVTexture420P.cpp in core */, + AE561F627869539F00000002 /* OlaCameraSource.cpp in core */, + AE561F62DF10257B00000003 /* FramebufferCache.cpp in core */, + AE561F6224028C2A00000003 /* Framebuffer.cpp in core */, + AE561F62BAA9784900000003 /* Target.cpp in core */, + AE561F621A5AF34500000003 /* Context.cpp in core */, + AE561F62B5549E7B00000003 /* Filter.cpp in core */, + AE561F62366C28A700000003 /* GLProgram.cpp in core */, + AE561F62688BDBD200000003 /* Source.cpp in core */, + AE561F626B38661900000003 /* SourceImage.cpp in core */, + AE561F62B541904500000003 /* IOSTarget.cpp in core */, + AE561F622760766100000003 /* CVFramebuffer.cpp in core */, + AE561F62D76E8D3000000003 /* SourceCamera.cpp in core */, + AE561F62F520944600000003 /* TargetView.cpp in core */, + AE561F62EED1272900000003 /* FilterGroup.cpp in core */, + AE561F62B7DF5A1B00000003 /* dispatch_queue.cpp in core */, + AE561F6240660CF800000003 /* GLThreadDispatch.cpp in core */, + AE561F6215C3EC2900000003 /* OpipeDispatch.cpp in core */, + AE561F62E6435E1C00000003 /* OlaShareTextureFilter.cpp in core */, + AE561F62DD8776DB00000003 /* AlphaBlendFilter.cpp in core */, + AE561F624C26B1F400000003 /* BilateralFilter.cpp in core */, + AE561F62C740BD4E00000003 /* GaussianBlurFilter.cpp in core */, + AE561F62C1562A1600000003 /* GaussianBlurMonoFilter.cpp in core */, + AE561F625547722D00000003 /* LUTFilter.cpp in core */, + AE561F62127F047A00000003 /* OlaContext.cpp in core */, + AE561F620998301500000003 /* OlaYUVTexture.cpp in core */, + AE561F62486157AC00000003 /* OlaYUVTexture420P.cpp in core */, + AE561F627869539F00000003 /* OlaCameraSource.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000007 /* Sources */ = { + D51719AF0000000000000007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503011335A86600000001 /* OlaFaceUnity.mm in Sources */, - FF950301A402CD0400000001 /* face_mesh_module.cc in Sources */, - FF950301DF7A0C9B00000001 /* face_mesh_beauty_render.cc in Sources */, - FF950301CD7D0AD600000001 /* face_mesh_module_imp.cc in Sources */, + AE561F62EA12225700000001 /* Ref.cpp in core */, + AE561F62203E676800000001 /* math.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000008 /* Sources */ = { + D51719AF0000000000000008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F02D7B8400000002 /* FramebufferCache.cpp in Sources */, - FF95030182C4C71800000002 /* Framebuffer.cpp in Sources */, - FF950301D796612B00000002 /* Target.cpp in Sources */, - FF950301D9E0F97500000002 /* Context.cpp in Sources */, - FF95030178760ADA00000002 /* Filter.cpp in Sources */, - FF9503017F4ECE3500000002 /* GLProgram.cpp in Sources */, - FF95030112590DCE00000002 /* Source.cpp in Sources */, - FF950301868499C900000002 /* SourceImage.cpp in Sources */, - FF9503012FF7D76200000002 /* IOSTarget.cpp in Sources */, - FF950301FCEDD60B00000002 /* CVFramebuffer.cpp in Sources */, - FF9503017C1D80AC00000002 /* TargetView.cpp in Sources */, - FF950301F573FC1600000002 /* FilterGroup.cpp in Sources */, - FF950301FF68235A00000002 /* dispatch_queue.cpp in Sources */, - FF95030122A81B8400000002 /* GLThreadDispatch.cpp in Sources */, - FF9503013604E74800000002 /* OpipeDispatch.cpp in Sources */, - FF950301695F7B1800000002 /* OlaShareTextureFilter.cpp in Sources */, - FF95030166524CD000000002 /* AlphaBlendFilter.cpp in Sources */, - FF9503018C3C5D5200000002 /* BilateralFilter.cpp in Sources */, - FF950301012F72CA00000002 /* GaussianBlurFilter.cpp in Sources */, - FF950301F015768000000002 /* GaussianBlurMonoFilter.cpp in Sources */, - FF9503016E142DC700000002 /* LUTFilter.cpp in Sources */, - FF95030176651B8000000002 /* OlaContext.cpp in Sources */, - FF9503013300B09700000001 /* BilateralAdjustFilter.cpp in Sources */, - FF950301EA26099000000001 /* FaceDistortionFilter.cpp in Sources */, - FF950301F2C948BB00000001 /* OlaBeautyFilter.cpp in Sources */, - FF95030172ED6A0900000001 /* UnSharpMaskFilter.cpp in Sources */, - FF950301F02D7B8400000003 /* FramebufferCache.cpp in Sources */, - FF95030182C4C71800000003 /* Framebuffer.cpp in Sources */, - FF950301D796612B00000003 /* Target.cpp in Sources */, - FF950301D9E0F97500000003 /* Context.cpp in Sources */, - FF95030178760ADA00000003 /* Filter.cpp in Sources */, - FF9503017F4ECE3500000003 /* GLProgram.cpp in Sources */, - FF95030112590DCE00000003 /* Source.cpp in Sources */, - FF950301868499C900000003 /* SourceImage.cpp in Sources */, - FF9503012FF7D76200000003 /* IOSTarget.cpp in Sources */, - FF950301FCEDD60B00000003 /* CVFramebuffer.cpp in Sources */, - FF9503017C1D80AC00000003 /* TargetView.cpp in Sources */, - FF950301F573FC1600000003 /* FilterGroup.cpp in Sources */, - FF950301FF68235A00000003 /* dispatch_queue.cpp in Sources */, - FF95030122A81B8400000003 /* GLThreadDispatch.cpp in Sources */, - FF9503013604E74800000003 /* OpipeDispatch.cpp in Sources */, - FF950301695F7B1800000003 /* OlaShareTextureFilter.cpp in Sources */, - FF95030166524CD000000003 /* AlphaBlendFilter.cpp in Sources */, - FF9503018C3C5D5200000003 /* BilateralFilter.cpp in Sources */, - FF950301012F72CA00000003 /* GaussianBlurFilter.cpp in Sources */, - FF950301F015768000000003 /* GaussianBlurMonoFilter.cpp in Sources */, - FF9503016E142DC700000003 /* LUTFilter.cpp in Sources */, - FF95030176651B8000000003 /* OlaContext.cpp in Sources */, + AE561F626CDB0ACA00000001 /* mat4.cpp in math */, + AE561F62E5F7536D00000001 /* math_utils.cpp in math */, + AE561F628105E18A00000001 /* vec2.cpp in math */, + AE561F6217D70EAE00000001 /* vec3.cpp in math */, + AE561F62AC54908400000001 /* vec4.cpp in math */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000009 /* Sources */ = { + D51719AF0000000000000009 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301EA0F1F1F00000001 /* Ref.cpp in Sources */, - FF9503015CAB504600000001 /* math.cpp in Sources */, - FF9503012D3894B500000001 /* GPUImageUtil.cpp in Sources */, + AE561F62113D77AC00000001 /* GPUImageUtil.cpp in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000A /* Sources */ = { + D51719AF000000000000000A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301A7B31D6A00000001 /* mat4.cpp in Sources */, - FF950301CB04A48200000001 /* math_utils.cpp in Sources */, - FF9503015590E40F00000001 /* vec2.cpp in Sources */, - FF9503010019414900000001 /* vec3.cpp in Sources */, - FF950301193223CD00000001 /* vec4.cpp in Sources */, + AE561F628A70D79000000000 /* OlaFaceUnity.mm in framework */, + AE561F621C25645A00000000 /* OlaFURenderView.mm in framework */, + AE561F6283042E5400000000 /* face_mesh_module.cc in beauty */, + AE561F6204A58F1B00000000 /* face_mesh_beauty_render.cc in beauty */, + AE561F62EA21FA1F00000000 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000B /* Sources */ = { + D51719AF000000000000000B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017071A1E200000001 /* ola_graph.cc in Sources */, + AE561F62639A579500000000 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000C /* Sources */ = { + D51719AF000000000000000C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301202F72AF00000001 /* util.cc in Sources */, + AE561F62096960DC00000000 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000D /* Sources */ = { + D51719AF000000000000000D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503016EE5C41200000001 /* cpu_util.cc in Sources */, + AE561F6225CCC4DB00000000 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000E /* Sources */ = { + D51719AF000000000000000E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503012834F00600000000 /* annotation_overlay_calculator.cc in Sources */, + AE561F628A70D79000000001 /* OlaFaceUnity.mm in framework */, + AE561F621C25645A00000001 /* OlaFURenderView.mm in framework */, + AE561F6283042E5400000001 /* face_mesh_module.cc in beauty */, + AE561F6204A58F1B00000001 /* face_mesh_beauty_render.cc in beauty */, + AE561F62EA21FA1F00000001 /* face_mesh_module_imp.cc in beauty */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000000F /* Sources */ = { + D51719AF000000000000000F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503014A8EF4EF00000000 /* annotation_renderer.cc in Sources */, + AE561F62639A579500000001 /* ola_graph.cc in common */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000010 /* Sources */ = { + D51719AF0000000000000010 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503012834F00600000001 /* annotation_overlay_calculator.cc in Sources */, + AE561F62096960DC00000001 /* cpu_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000011 /* Sources */ = { + D51719AF0000000000000011 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503014A8EF4EF00000001 /* annotation_renderer.cc in Sources */, + AE561F6225CCC4DB00000001 /* util.cc in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000012 /* Sources */ = { + D51719AF0000000000000012 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301AB2D5D1300000000 /* begin_loop_calculator.cc in Sources */, + AE561F6261EDA9EE00000000 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000013 /* Sources */ = { + D51719AF0000000000000013 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301AB2D5D1300000001 /* begin_loop_calculator.cc in Sources */, + AE561F6282F42E8800000000 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000014 /* Sources */ = { + D51719AF0000000000000014 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D2F46D2A00000000 /* clip_vector_size_calculator.cc in Sources */, + AE561F6261EDA9EE00000001 /* annotation_overlay_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000015 /* Sources */ = { + D51719AF0000000000000015 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301D2F46D2A00000001 /* clip_vector_size_calculator.cc in Sources */, + AE561F6282F42E8800000001 /* annotation_renderer.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000016 /* Sources */ = { + D51719AF0000000000000016 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030101794B7100000000 /* cpu_op_resolver.cc in Sources */, + AE561F62DEF8A23A00000000 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000017 /* Sources */ = { + D51719AF0000000000000017 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017C35124F00000000 /* transform_tensor_bilinear.cc in Sources */, - FF950301105326A800000000 /* landmarks_to_transform_matrix.cc in Sources */, - FF950301C578A56100000000 /* transform_landmarks.cc in Sources */, + AE561F62DEF8A23A00000001 /* begin_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000018 /* Sources */ = { + D51719AF0000000000000018 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3F047F600000000 /* transpose_conv_bias.cc in Sources */, + AE561F62DABFB62900000000 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000019 /* Sources */ = { + D51719AF0000000000000019 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030118A3906A00000000 /* max_unpooling.cc in Sources */, - FF950301042A0E6500000000 /* max_pool_argmax.cc in Sources */, + AE561F62DABFB62900000001 /* clip_vector_size_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001A /* Sources */ = { + D51719AF000000000000001A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030101794B7100000001 /* cpu_op_resolver.cc in Sources */, + AE561F6293DCB3DF00000000 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001B /* Sources */ = { + D51719AF000000000000001B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503017C35124F00000001 /* transform_tensor_bilinear.cc in Sources */, - FF950301105326A800000001 /* landmarks_to_transform_matrix.cc in Sources */, - FF950301C578A56100000001 /* transform_landmarks.cc in Sources */, + AE561F62FAF3CE2D00000000 /* transform_tensor_bilinear.cc in operations */, + AE561F621305049200000000 /* landmarks_to_transform_matrix.cc in operations */, + AE561F62E1ED7AB700000000 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001C /* Sources */ = { + D51719AF000000000000001C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF95030118A3906A00000001 /* max_unpooling.cc in Sources */, - FF950301042A0E6500000001 /* max_pool_argmax.cc in Sources */, + AE561F62A18B807100000000 /* max_unpooling.cc in operations */, + AE561F62D295FD0100000000 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001D /* Sources */ = { + D51719AF000000000000001D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3F047F600000001 /* transpose_conv_bias.cc in Sources */, + AE561F6249DC5EB500000000 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001E /* Sources */ = { + D51719AF000000000000001E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503016A24D81700000000 /* detection_projection_calculator.cc in Sources */, + AE561F6293DCB3DF00000001 /* cpu_op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000001F /* Sources */ = { + D51719AF000000000000001F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503016A24D81700000001 /* detection_projection_calculator.cc in Sources */, + AE561F62FAF3CE2D00000001 /* transform_tensor_bilinear.cc in operations */, + AE561F621305049200000001 /* landmarks_to_transform_matrix.cc in operations */, + AE561F62E1ED7AB700000001 /* transform_landmarks.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000020 /* Sources */ = { + D51719AF0000000000000020 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B1BCD15C00000000 /* end_loop_calculator.cc in Sources */, + AE561F62A18B807100000001 /* max_unpooling.cc in operations */, + AE561F62D295FD0100000001 /* max_pool_argmax.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000021 /* Sources */ = { + D51719AF0000000000000021 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B1BCD15C00000001 /* end_loop_calculator.cc in Sources */, + AE561F6249DC5EB500000001 /* transpose_conv_bias.cc in operations */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000022 /* Sources */ = { + D51719AF0000000000000022 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503019807610500000000 /* MPPGraph.mm in Sources */, - FF9503011B77E8CB00000000 /* MPPTimestampConverter.mm in Sources */, - FF9503016909A4FC00000000 /* NSError+util_status.mm in Sources */, + AE561F62410C5DD800000000 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000023 /* Sources */ = { + D51719AF0000000000000023 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503019807610500000001 /* MPPGraph.mm in Sources */, - FF9503011B77E8CB00000001 /* MPPTimestampConverter.mm in Sources */, - FF9503016909A4FC00000001 /* NSError+util_status.mm in Sources */, + AE561F62410C5DD800000001 /* detection_projection_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000024 /* Sources */ = { + D51719AF0000000000000024 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301954B39AD00000000 /* non_max_suppression_calculator.cc in Sources */, + AE561F62F53D342400000000 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000025 /* Sources */ = { + D51719AF0000000000000025 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301954B39AD00000001 /* non_max_suppression_calculator.cc in Sources */, + AE561F62F53D342400000001 /* end_loop_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000026 /* Sources */ = { + D51719AF0000000000000026 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301665E250A00000000 /* op_resolver.cc in Sources */, + AE561F62FF488C3100000000 /* MPPGraph.mm in objc */, + AE561F62FE41FA1300000000 /* MPPTimestampConverter.mm in objc */, + AE561F62F4A92B1800000000 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000027 /* Sources */ = { + D51719AF0000000000000027 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301665E250A00000001 /* op_resolver.cc in Sources */, + AE561F62FF488C3100000001 /* MPPGraph.mm in objc */, + AE561F62FE41FA1300000001 /* MPPTimestampConverter.mm in objc */, + AE561F62F4A92B1800000001 /* NSError+util_status.mm in objc */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000028 /* Sources */ = { + D51719AF0000000000000028 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301908FF76600000000 /* previous_loopback_calculator.cc in Sources */, - FF950301FFFFBBA500000000 /* header_util.cc in Sources */, + AE561F628C56761300000000 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000029 /* Sources */ = { + D51719AF0000000000000029 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301908FF76600000001 /* previous_loopback_calculator.cc in Sources */, - FF950301FFFFBBA500000001 /* header_util.cc in Sources */, + AE561F628C56761300000001 /* non_max_suppression_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002A /* Sources */ = { + D51719AF000000000000002A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503013B1C97FA00000000 /* rectangle_util.cc in Sources */, + AE561F624134770200000000 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002B /* Sources */ = { + D51719AF000000000000002B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503013B1C97FA00000001 /* rectangle_util.cc in Sources */, + AE561F624134770200000001 /* op_resolver.cc in tflite */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002C /* Sources */ = { + D51719AF000000000000002C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B01194E800000000 /* resource_util.cc in Sources */, - FF9503013F7B43FC00000000 /* resource_util_apple.cc in Sources */, + AE561F62E8B4FA8F00000000 /* previous_loopback_calculator.cc in core */, + AE561F62C5471AEE00000000 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002D /* Sources */ = { + D51719AF000000000000002D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301B01194E800000001 /* resource_util.cc in Sources */, - FF9503013F7B43FC00000001 /* resource_util_apple.cc in Sources */, + AE561F62E8B4FA8F00000001 /* previous_loopback_calculator.cc in core */, + AE561F62C5471AEE00000001 /* header_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002E /* Sources */ = { + D51719AF000000000000002E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301EAFCD2EB00000000 /* split_vector_calculator.cc in Sources */, + AE561F62F07B10B000000000 /* rectangle_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A58000000000000002F /* Sources */ = { + D51719AF000000000000002F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301EAFCD2EB00000001 /* split_vector_calculator.cc in Sources */, + AE561F62F07B10B000000001 /* rectangle_util.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000030 /* Sources */ = { + D51719AF0000000000000030 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3CC262D00000000 /* tflite_model_loader.cc in Sources */, + AE561F624A2CA38100000000 /* resource_util.cc in util */, + AE561F62376F697300000000 /* resource_util_apple.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000031 /* Sources */ = { + D51719AF0000000000000031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF950301F3CC262D00000001 /* tflite_model_loader.cc in Sources */, + AE561F624A2CA38100000001 /* resource_util.cc in util */, + AE561F62376F697300000001 /* resource_util_apple.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000032 /* Sources */ = { + D51719AF0000000000000032 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503011979C9A700000000 /* to_image_calculator.cc in Sources */, - FF950301041C1EB900000000 /* association_norm_rect_calculator.cc in Sources */, - FF950301E82089DF00000000 /* collection_has_min_size_calculator.cc in Sources */, - FF950301B9D8F94200000000 /* constant_side_packet_calculator.cc in Sources */, - FF95030176D31B5D00000000 /* detections_to_rects_calculator.cc in Sources */, - FF95030136FBEB1A00000000 /* detections_to_render_data_calculator.cc in Sources */, - FF950301511B4B0900000000 /* face_landmarks_to_render_data_calculator.cc in Sources */, - FF950301F00E9A9000000000 /* flow_limiter_calculator.cc in Sources */, - FF950301387C9C0400000000 /* gate_calculator.cc in Sources */, - FF950301EA081C0700000000 /* landmark_projection_calculator.cc in Sources */, - FF9503015215FAC800000000 /* landmarks_refinement_calculator.cc in Sources */, - FF9503014046CD2C00000000 /* landmarks_to_detection_calculator.cc in Sources */, - FF9503019158518E00000000 /* landmarks_to_render_data_calculator.cc in Sources */, - FF950301A24CB7E500000000 /* local_file_contents_calculator.cc in Sources */, - FF950301822EE40B00000000 /* rect_to_render_data_calculator.cc in Sources */, - FF9503016988849800000000 /* rect_transformation_calculator.cc in Sources */, - FF9503011EE26A2000000000 /* split_proto_list_calculator.cc in Sources */, - FF9503011ABE2CDD00000000 /* thresholding_calculator.cc in Sources */, + AE561F6293A216DD00000000 /* split_vector_calculator.cc in core */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9C8A580000000000000033 /* Sources */ = { + D51719AF0000000000000033 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 0; files = ( - FF9503011979C9A700000001 /* to_image_calculator.cc in Sources */, - FF950301041C1EB900000001 /* association_norm_rect_calculator.cc in Sources */, - FF950301E82089DF00000001 /* collection_has_min_size_calculator.cc in Sources */, - FF950301B9D8F94200000001 /* constant_side_packet_calculator.cc in Sources */, - FF95030176D31B5D00000001 /* detections_to_rects_calculator.cc in Sources */, - FF95030136FBEB1A00000001 /* detections_to_render_data_calculator.cc in Sources */, - FF950301511B4B0900000001 /* face_landmarks_to_render_data_calculator.cc in Sources */, - FF950301F00E9A9000000001 /* flow_limiter_calculator.cc in Sources */, - FF950301387C9C0400000001 /* gate_calculator.cc in Sources */, - FF950301EA081C0700000001 /* landmark_projection_calculator.cc in Sources */, - FF9503015215FAC800000001 /* landmarks_refinement_calculator.cc in Sources */, - FF9503014046CD2C00000001 /* landmarks_to_detection_calculator.cc in Sources */, - FF9503019158518E00000001 /* landmarks_to_render_data_calculator.cc in Sources */, - FF950301A24CB7E500000001 /* local_file_contents_calculator.cc in Sources */, - FF950301822EE40B00000001 /* rect_to_render_data_calculator.cc in Sources */, - FF9503016988849800000001 /* rect_transformation_calculator.cc in Sources */, - FF9503011EE26A2000000001 /* split_proto_list_calculator.cc in Sources */, - FF9503011ABE2CDD00000001 /* thresholding_calculator.cc in Sources */, + AE561F6293A216DD00000001 /* split_vector_calculator.cc in core */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D51719AF0000000000000034 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + AE561F62C8241DD300000000 /* tflite_model_loader.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D51719AF0000000000000035 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + AE561F62C8241DD300000001 /* tflite_model_loader.cc in tflite */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D51719AF0000000000000036 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + AE561F6286A483C600000000 /* to_image_calculator.cc in util */, + AE561F6279CDDFED00000000 /* association_norm_rect_calculator.cc in util */, + AE561F621146E56B00000000 /* collection_has_min_size_calculator.cc in util */, + AE561F625FA0C8B400000000 /* constant_side_packet_calculator.cc in core */, + AE561F62642109BB00000000 /* detections_to_rects_calculator.cc in util */, + AE561F6239A89AA300000000 /* detections_to_render_data_calculator.cc in util */, + AE561F62CBCD2E1300000000 /* face_landmarks_to_render_data_calculator.cc in calculators */, + AE561F626E57166000000000 /* flow_limiter_calculator.cc in core */, + AE561F6204A5991600000000 /* gate_calculator.cc in core */, + AE561F62114131F400000000 /* landmark_projection_calculator.cc in util */, + AE561F625B6ABC2900000000 /* landmarks_refinement_calculator.cc in util */, + AE561F62C674540100000000 /* landmarks_to_detection_calculator.cc in util */, + AE561F62F1CB02DD00000000 /* landmarks_to_render_data_calculator.cc in util */, + AE561F628DC416F400000000 /* local_file_contents_calculator.cc in util */, + AE561F621E3EB3B900000000 /* rect_to_render_data_calculator.cc in util */, + AE561F628CA4A16800000000 /* rect_transformation_calculator.cc in util */, + AE561F6292C1EE4000000000 /* split_proto_list_calculator.cc in core */, + AE561F62980FFD2B00000000 /* thresholding_calculator.cc in util */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D51719AF0000000000000037 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 0; + files = ( + AE561F6286A483C600000001 /* to_image_calculator.cc in util */, + AE561F6279CDDFED00000001 /* association_norm_rect_calculator.cc in util */, + AE561F621146E56B00000001 /* collection_has_min_size_calculator.cc in util */, + AE561F625FA0C8B400000001 /* constant_side_packet_calculator.cc in core */, + AE561F62642109BB00000001 /* detections_to_rects_calculator.cc in util */, + AE561F6239A89AA300000001 /* detections_to_render_data_calculator.cc in util */, + AE561F62CBCD2E1300000001 /* face_landmarks_to_render_data_calculator.cc in calculators */, + AE561F626E57166000000001 /* flow_limiter_calculator.cc in core */, + AE561F6204A5991600000001 /* gate_calculator.cc in core */, + AE561F62114131F400000001 /* landmark_projection_calculator.cc in util */, + AE561F625B6ABC2900000001 /* landmarks_refinement_calculator.cc in util */, + AE561F62C674540100000001 /* landmarks_to_detection_calculator.cc in util */, + AE561F62F1CB02DD00000001 /* landmarks_to_render_data_calculator.cc in util */, + AE561F628DC416F400000001 /* local_file_contents_calculator.cc in util */, + AE561F621E3EB3B900000001 /* rect_to_render_data_calculator.cc in util */, + AE561F628CA4A16800000001 /* rect_transformation_calculator.cc in util */, + AE561F6292C1EE4000000001 /* split_proto_list_calculator.cc in core */, + AE561F62980FFD2B00000001 /* thresholding_calculator.cc in util */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 285B8B9A07268A4900000000 /* PBXTargetDependency */ = { + 2811397A1C54576900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE07268A4800000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5 */; - targetProxy = 6CA3282607268A4900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA21C54576900000000 /* PBXContainerItemProxy */; }; - 285B8B9A0F58F30900000000 /* PBXTargetDependency */ = { + 2811397A1D681C9500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE0F58F30800000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5 */; - targetProxy = 6CA328260F58F30900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA21D681C9500000000 /* PBXContainerItemProxy */; }; - 285B8B9A10832CE100000000 /* PBXTargetDependency */ = { + 2811397A2543EE8700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE10832CE000000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0 */; - targetProxy = 6CA3282610832CE100000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA22543EE8700000000 /* PBXContainerItemProxy */; }; - 285B8B9A1838F83F00000000 /* PBXTargetDependency */ = { + 2811397A2D59C41300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE1838F83E00000000 /* _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0 */; - targetProxy = 6CA328261838F83F00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA22D59C41300000000 /* PBXContainerItemProxy */; }; - 285B8B9A1AC4218B00000000 /* PBXTargetDependency */ = { + 2811397A2F164B6300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE1AC4218A00000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0 */; - targetProxy = 6CA328261AC4218B00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA22F164B6300000000 /* PBXContainerItemProxy */; }; - 285B8B9A216C14B900000000 /* PBXTargetDependency */ = { + 2811397A36B3CE1700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE216C14B800000000 /* _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5 */; - targetProxy = 6CA32826216C14B900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA236B3CE1700000000 /* PBXContainerItemProxy */; }; - 285B8B9A3AD2DEC500000000 /* PBXTargetDependency */ = { + 2811397A3B463BAD00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = E9F6BC4B3AD2DEC400000000 /* _bazel_clean_ */; - targetProxy = 6CA328263AD2DEC500000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA23B463BAD00000000 /* PBXContainerItemProxy */; }; - 285B8B9A3E081CF900000000 /* PBXTargetDependency */ = { + 2811397A40B23BB500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE3E081CF800000000 /* _idx_annotation_renderer_8D68840D_ios_min11.0 */; - targetProxy = 6CA328263E081CF900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA240B23BB500000000 /* PBXContainerItemProxy */; }; - 285B8B9A3ED3804B00000000 /* PBXTargetDependency */ = { + 2811397A4521587B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE3ED3804A00000000 /* _idx_cpu_util_C9677097_ios_min15.5 */; - targetProxy = 6CA328263ED3804B00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA24521587B00000000 /* PBXContainerItemProxy */; }; - 285B8B9A762E872100000000 /* PBXTargetDependency */ = { + 2811397A46A8D4DF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE762E872000000000 /* _idx_resource_util_C5C5DB93_ios_min11.0 */; - targetProxy = 6CA32826762E872100000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA246A8D4DF00000000 /* PBXContainerItemProxy */; }; - 285B8B9A7E674A3900000000 /* PBXTargetDependency */ = { + 2811397A4E78DF7F00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE7E674A3800000000 /* _idx_math_68C63536_ios_min11.0 */; - targetProxy = 6CA328267E674A3900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA24E78DF7F00000000 /* PBXContainerItemProxy */; }; - 285B8B9A7E908C2900000000 /* PBXTargetDependency */ = { + 2811397A6444CACD00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE7E908C2800000000 /* _idx_math_68C63536_ios_min15.5 */; - targetProxy = 6CA328267E908C2900000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA26444CACD00000000 /* PBXContainerItemProxy */; }; - 285B8B9A7FF66ACD00000000 /* PBXTargetDependency */ = { + 2811397A71D64AF700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE7FF66ACC00000000 /* _idx_olamodule_common_library_63E72567_ios_min15.5 */; - targetProxy = 6CA328267FF66ACD00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA271D64AF700000000 /* PBXContainerItemProxy */; }; - 285B8B9A8489C38D00000000 /* PBXTargetDependency */ = { + 2811397A83F4347500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE8489C38C00000000 /* _idx_olamodule_common_library_63E72567_ios_min11.0 */; - targetProxy = 6CA328268489C38D00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA283F4347500000000 /* PBXContainerItemProxy */; }; - 285B8B9A87D26E7500000000 /* PBXTargetDependency */ = { + 2811397A83F46D1900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE87D26E7400000000 /* _idx_util_C76AD427_ios_min15.5 */; - targetProxy = 6CA3282687D26E7500000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA283F46D1900000000 /* PBXContainerItemProxy */; }; - 285B8B9A97A002A700000000 /* PBXTargetDependency */ = { + 2811397A91016CBF00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE97A002A600000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5 */; - targetProxy = 6CA3282697A002A700000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA291016CBF00000000 /* PBXContainerItemProxy */; }; - 285B8B9A9B64E5B500000000 /* PBXTargetDependency */ = { + 2811397AA079FC9500000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE9B64E5B400000000 /* _idx_resource_util_C5C5DB93_ios_min15.5 */; - targetProxy = 6CA328269B64E5B500000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2A079FC9500000000 /* PBXContainerItemProxy */; }; - 285B8B9A9CC89BB300000000 /* PBXTargetDependency */ = { + 2811397AA30404F300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE9CC89BB200000000 /* _idx_transpose_conv_bias_E3459F40_ios_min15.5 */; - targetProxy = 6CA328269CC89BB300000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2A30404F300000000 /* PBXContainerItemProxy */; }; - 285B8B9A9CDDB50D00000000 /* PBXTargetDependency */ = { + 2811397AAC3AEC4700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CE9CDDB50C00000000 /* _idx_transpose_conv_bias_E3459F40_ios_min11.0 */; - targetProxy = 6CA328269CDDB50D00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2AC3AEC4700000000 /* PBXContainerItemProxy */; }; - 285B8B9AAEE1CD9700000000 /* PBXTargetDependency */ = { + 2811397AAD83C52B00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CEAEE1CD9600000000 /* _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5 */; - targetProxy = 6CA32826AEE1CD9700000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2AD83C52B00000000 /* PBXContainerItemProxy */; }; - 285B8B9AB4F98C9F00000000 /* PBXTargetDependency */ = { + 2811397AC4A1069D00000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CEB4F98C9E00000000 /* _idx_util_C76AD427_ios_min11.0 */; - targetProxy = 6CA32826B4F98C9F00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2C4A1069D00000000 /* PBXContainerItemProxy */; }; - 285B8B9AC180231D00000000 /* PBXTargetDependency */ = { + 2811397ADA50AA6900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CEC180231C00000000 /* _idx_annotation_renderer_8D68840D_ios_min15.5 */; - targetProxy = 6CA32826C180231D00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2DA50AA6900000000 /* PBXContainerItemProxy */; }; - 285B8B9AC9EF5A9F00000000 /* PBXTargetDependency */ = { + 2811397ADC6BB92900000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CEC9EF5A9E00000000 /* _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0 */; - targetProxy = 6CA32826C9EF5A9F00000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2DC6BB92900000000 /* PBXContainerItemProxy */; }; - 285B8B9ACDF0E1D100000000 /* PBXTargetDependency */ = { + 2811397ADF58A07300000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CECDF0E1D000000000 /* _idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0 */; - targetProxy = 6CA32826CDF0E1D100000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2DF58A07300000000 /* PBXContainerItemProxy */; }; - 285B8B9AE3255C4300000000 /* PBXTargetDependency */ = { + 2811397AE39F886700000000 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F2FE34CEE3255C4200000000 /* _idx_cpu_util_C9677097_ios_min11.0 */; - targetProxy = 6CA32826E3255C4300000000 /* PBXContainerItemProxy */; + targetProxy = FE7C5EA2E39F886700000000 /* PBXContainerItemProxy */; + }; + 2811397AE51A0D9D00000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = FE7C5EA2E51A0D9D00000000 /* PBXContainerItemProxy */; + }; + 2811397AF15E172100000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = FE7C5EA2F15E172100000000 /* PBXContainerItemProxy */; + }; + 2811397AF2BD211900000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = FE7C5EA2F2BD211900000000 /* PBXContainerItemProxy */; + }; + 2811397AF3A1AA7100000000 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + targetProxy = FE7C5EA2F3A1AA7100000000 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 369E736D28994391001F44F3 /* Debug */ = { + F04780B21F34D05500000000 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - PRODUCT_NAME = _bazel_clean_; - }; - name = Debug; - }; - 369E736E28994391001F44F3 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - PRODUCT_NAME = _bazel_clean_; - }; - name = Release; - }; - 369E736F28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _bazel_clean_; + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + CODE_SIGN_IDENTITY = ""; + DONT_RUN_SWIFT_STDLIB_TOOL = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_SEARCH_PATHS = ""; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + HEADER_SEARCH_PATHS = ""; + ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = "--version"; + OTHER_LDFLAGS = "--version"; + OTHER_SWIFT_FLAGS = "--version"; + PYTHONIOENCODING = utf8; + SDKROOT = iphoneos; + SWIFT_INSTALL_OBJC_HEADER = NO; + SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; + TULSI_BWRS = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; + TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; + TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; + TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; + TULSI_PROJECT = FaceUnityFramework; + TULSI_VERSION = 0.20220209.88; + TULSI_WR = "${SRCROOT}/../../../../../.."; }; name = __TulsiTestRunner_Debug; }; - 369E737028994391001F44F3 /* __TulsiTestRunner_Release */ = { + F04780B21F34D05500000001 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { - PRODUCT_NAME = _bazel_clean_; - }; - name = __TulsiTestRunner_Release; - }; - 369E737128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; + DEBUG_INFORMATION_FORMAT = dwarf; + FRAMEWORK_SEARCH_PATHS = ""; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = ""; + INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = "--version"; + OTHER_LDFLAGS = "--version"; + OTHER_SWIFT_FLAGS = "--version"; + PRODUCT_BUNDLE_IDENTIFIER = com.ola.olarender.develop; + PRODUCT_NAME = OlaFaceUnityFramework; + SDKROOT = iphoneos; + SWIFT_INSTALL_OBJC_HEADER = NO; + SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; + TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Debug; }; - 369E737228994391001F44F3 /* __TulsiTestRunner_Release */ = { + F04780B21F34D05500000002 /* __TulsiTestRunner_Debug */ = { isa = XCBuildConfiguration; buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E737328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; + BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; + DEBUG_INFORMATION_FORMAT = dwarf; + FRAMEWORK_SEARCH_PATHS = ""; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = ""; + INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = "--version"; + OTHER_LDFLAGS = "--version"; + OTHER_SWIFT_FLAGS = "--version"; + PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; + SDKROOT = iphoneos; + SWIFT_INSTALL_OBJC_HEADER = NO; + SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; + TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; + TULSI_XCODE_VERSION = 13.4.1.13F100; }; name = __TulsiTestRunner_Debug; }; - 369E737428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E737528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E737628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E737728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E737828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_overlay_calculator_D98E9275_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E737928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E737A28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E737B28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E737C28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_annotation_renderer_8D68840D_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E737D28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E737E28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E737F28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E738128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E738328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E738528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0"; - }; - name = __TulsiTestRunner_Release; - }; - 369E738728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5"; - }; - name = __TulsiTestRunner_Release; - }; - 369E738928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738A28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E738B28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738C28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E738D28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E738E28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E738F28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_cpu_util_C9677097_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E739128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E739328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E739528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E739728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E739928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739A28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_68C63536_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E739B28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739C28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_math_68C63536_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E739D28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E739E28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E739F28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73A028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73A128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73A228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73A328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73A428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73A528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73A628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73A728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73A828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73A928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73AA28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73AB28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73AC28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_olamodule_common_library_63E72567_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73AD28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73AE28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73AF28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73B028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73B128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73B228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73B328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73B428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73B528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73B628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73B728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73B828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73B928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73BA28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73BB28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73BC28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73BD28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73BE28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73BF28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73C028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73C128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73C228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73C328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73C428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73C528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73C628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73C728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73C828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_tflite_model_loader_254BEB33_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73C928994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73CA28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73CB28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73CC28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73CD28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73CE28994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73CF28994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73D028994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73D128994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73D228994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73D328994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73D428994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_transpose_conv_bias_E3459F40_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - 369E73D528994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_C76AD427_ios_min11.0; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73D628994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_C76AD427_ios_min11.0; - }; - name = __TulsiTestRunner_Release; - }; - 369E73D728994391001F44F3 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_C76AD427_ios_min15.5; - }; - name = __TulsiTestRunner_Debug; - }; - 369E73D828994391001F44F3 /* __TulsiTestRunner_Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = _idx_util_C76AD427_ios_min15.5; - }; - name = __TulsiTestRunner_Release; - }; - C1A2A58115BEFE3900000000 /* __TulsiTestRunner_Release */ = { + F04780B230B7AB1A00000000 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -3708,7 +3218,7 @@ }; name = __TulsiTestRunner_Release; }; - C1A2A58115BEFE3900000001 /* __TulsiTestRunner_Release */ = { + F04780B230B7AB1A00000001 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -3733,7 +3243,7 @@ }; name = __TulsiTestRunner_Release; }; - C1A2A58115BEFE3900000002 /* __TulsiTestRunner_Release */ = { + F04780B230B7AB1A00000002 /* __TulsiTestRunner_Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -3743,7 +3253,7 @@ GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; HEADER_SEARCH_PATHS = ""; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "--version"; OTHER_LDFLAGS = "--version"; @@ -3757,7 +3267,7 @@ }; name = __TulsiTestRunner_Release; }; - C1A2A5811882E1BB00000000 /* Debug */ = { + F04780B2C6C86FF100000000 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -3782,12 +3292,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(TULSI_EXECUTION_ROOT)", - "$(TULSI_WR)/bazel-bin", - "$(TULSI_WR)/bazel-genfiles", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x", - ); + HEADER_SEARCH_PATHS = "$(TULSI_EXECUTION_ROOT) $(TULSI_WR)/bazel-bin $(TULSI_WR)/bazel-genfiles $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x"; ONLY_ACTIVE_ARCH = YES; PYTHONIOENCODING = utf8; SDKROOT = iphoneos; @@ -3801,7 +3306,7 @@ }; name = Debug; }; - C1A2A5811882E1BB00000001 /* Debug */ = { + F04780B2C6C86FF100000001 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -3818,2553 +3323,745 @@ }; name = Debug; }; - C1A2A5811882E1BB00000002 /* Debug */ = { + F04780B2C6C86FF100000002 /* 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", - ); + 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", - "-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_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_BeautyFilters_A720FDA2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000003 /* Debug */ = { + F04780B2C6C86FF100000003 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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", - ); + 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", - "-DGLES_SILENCE_DEPRECATION=1", - "-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_min11.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_F9E9FB32_ios_min11.0"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000004 /* Debug */ = { + F04780B2C6C86FF100000004 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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", - ); + 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_cpu_util_C9677097_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_ref_gpuimagemath_6E8D4716_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000005 /* Debug */ = { + F04780B2C6C86FF100000005 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_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_util_C76AD427_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_math_CF33D7F4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000006 /* Debug */ = { + F04780B2C6C86FF100000006 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; 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"; + 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_gpuimageutil_F68CBC21_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000007 /* Debug */ = { + F04780B2C6C86FF100000007 /* 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_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++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_BeautyFilters_A720FDA2_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000008 /* 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_F9E9FB32_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000009 /* 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_ref_gpuimagemath_6E8D4716_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000000A /* 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_CF33D7F4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000000B /* 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 = "-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_gpuimageutil_F68CBC21_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000000C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -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_2828BEF2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000008 /* Debug */ = { + F04780B2C6C86FF10000000D /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-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; + 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_54ECBB79_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000009 /* 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; - }; - C1A2A5811882E1BB0000000A /* Debug */ = { + F04780B2C6C86FF10000000E /* 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; - }; - C1A2A5811882E1BB0000000B /* 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_ref_gpuimagemath_gpuimageutil_E5CDD0E4_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_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; - }; - 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_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; - }; - 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_util_C76AD427_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", - ); - 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_cpu_util_C9677097_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000010 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-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; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_10B87B03_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000011 /* Debug */ = { + F04780B2C6C86FF10000000F /* 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_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_annotation_renderer_8D68840D_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_DB4949E7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000012 /* Debug */ = { + F04780B2C6C86FF100000010 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); + 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-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_min15.5; + OTHER_CFLAGS = "-x objective-c++ -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_2828BEF2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000013 /* Debug */ = { + F04780B2C6C86FF100000011 /* 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_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_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 = ( - "-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 = "-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_54ECBB79_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000014 /* Debug */ = { + F04780B2C6C86FF100000012 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_cpu_util_10B87B03_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000013 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_DB4949E7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000014 /* 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 = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_844088AB_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000015 /* Debug */ = { + F04780B2C6C86FF100000015 /* 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_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_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_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_78B04092_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000017 /* Debug */ = { + F04780B2C6C86FF100000016 /* 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/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_844088AB_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000018 /* Debug */ = { + F04780B2C6C86FF100000017 /* 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_78B04092_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000018 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_00B2416C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000019 /* Debug */ = { + F04780B2C6C86FF100000019 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_00B2416C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000001A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-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; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000001A /* Debug */ = { + F04780B2C6C86FF10000001B /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000001C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_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_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000001B /* Debug */ = { + F04780B2C6C86FF10000001D /* 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", - ); + 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_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000001C /* Debug */ = { + F04780B2C6C86FF10000001E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_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/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_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/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; - }; - C1A2A5811882E1BB0000001F /* 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; - }; - C1A2A5811882E1BB00000020 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000021 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Debug; - }; - C1A2A5811882E1BB00000022 /* Debug */ = { + F04780B2C6C86FF10000001F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_7C342083_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000023 /* Debug */ = { + F04780B2C6C86FF100000020 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000024 /* Debug */ = { + F04780B2C6C86FF100000021 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000022 /* 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_54A4D221_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000023 /* 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_7C342083_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-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; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_1999E439_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000025 /* Debug */ = { + F04780B2C6C86FF100000025 /* 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_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_1999E439_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000026 /* Debug */ = { + F04780B2C6C86FF100000026 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_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_end_loop_calculator_86552B41_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000027 /* Debug */ = { + F04780B2C6C86FF100000027 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_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_end_loop_calculator_86552B41_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000028 /* Debug */ = { + F04780B2C6C86FF100000028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_4D298135_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000029 /* Debug */ = { + F04780B2C6C86FF100000029 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_4D298135_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002A /* Debug */ = { + F04780B2C6C86FF10000002A /* 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_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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_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_non_max_suppression_calculator_5C82C5FE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002B /* Debug */ = { + F04780B2C6C86FF10000002B /* 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_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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_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_non_max_suppression_calculator_5C82C5FE_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002C /* Debug */ = { + F04780B2C6C86FF10000002C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_E0F4B742_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002D /* Debug */ = { + F04780B2C6C86FF10000002D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_E0F4B742_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002E /* Debug */ = { + F04780B2C6C86FF10000002E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-ObjC++", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB0000002F /* Debug */ = { + F04780B2C6C86FF10000002F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-ObjC++", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000030 /* Debug */ = { + F04780B2C6C86FF100000030 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_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_rectangle_util_F7F3797D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000031 /* Debug */ = { + F04780B2C6C86FF100000031 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_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_rectangle_util_F7F3797D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000032 /* Debug */ = { + F04780B2C6C86FF100000032 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_tflite_model_loader_254BEB33_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_1F0C7A9C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000033 /* Debug */ = { + F04780B2C6C86FF100000033 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_tflite_model_loader_254BEB33_ios_min15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_1F0C7A9C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000034 /* Debug */ = { + F04780B2C6C86FF100000034 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_EE664713_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000035 /* Debug */ = { + F04780B2C6C86FF100000035 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_EE664713_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Debug; }; - C1A2A5811882E1BB00000036 /* Debug */ = { + F04780B2C6C86FF100000036 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_22B76F2A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000037 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_22B76F2A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000038 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF100000039 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Debug; + }; + F04780B2C6C86FF10000003A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -6372,7 +4069,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -6380,7 +4077,7 @@ }; name = Debug; }; - C1A2A581215C43D600000000 /* Release */ = { + F04780B2FA7DE14A00000000 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -6405,12 +4102,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(TULSI_EXECUTION_ROOT)", - "$(TULSI_WR)/bazel-bin", - "$(TULSI_WR)/bazel-genfiles", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x", - ); + HEADER_SEARCH_PATHS = "$(TULSI_EXECUTION_ROOT) $(TULSI_WR)/bazel-bin $(TULSI_WR)/bazel-genfiles $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x"; ONLY_ACTIVE_ARCH = YES; PYTHONIOENCODING = utf8; SDKROOT = iphoneos; @@ -6424,7 +4116,7 @@ }; name = Release; }; - C1A2A581215C43D600000001 /* Release */ = { + F04780B2FA7DE14A00000001 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -6441,2553 +4133,745 @@ }; name = Release; }; - C1A2A581215C43D600000002 /* Release */ = { + F04780B2FA7DE14A00000002 /* 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", - ); + 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", - "-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_min11.0; + OTHER_CFLAGS = "-x objective-c++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_BeautyFilters_A720FDA2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000003 /* Release */ = { + F04780B2FA7DE14A00000003 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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", - ); + 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", - "-DGLES_SILENCE_DEPRECATION=1", - "-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_min11.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_F9E9FB32_ios_min11.0"; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000004 /* Release */ = { + F04780B2FA7DE14A00000004 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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", - ); + 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_cpu_util_C9677097_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_ref_gpuimagemath_6E8D4716_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000005 /* Release */ = { + F04780B2FA7DE14A00000005 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_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_util_C76AD427_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_math_CF33D7F4_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000006 /* Release */ = { + F04780B2FA7DE14A00000006 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ "; 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"; + 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_gpuimageutil_F68CBC21_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000007 /* Release */ = { + F04780B2FA7DE14A00000007 /* 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_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++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_BeautyFilters_A720FDA2_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000008 /* 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_F9E9FB32_ios_min15.5"; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000009 /* 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_ref_gpuimagemath_6E8D4716_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000000A /* 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_CF33D7F4_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000000B /* 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 = "-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_gpuimageutil_F68CBC21_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000000C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_WR)/mediapipe/render/core/math $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/mediapipe/render/core/math $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common/task $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/metal $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/delegates/gpu/common $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/delegates/gpu/common "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -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_2828BEF2_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000008 /* Release */ = { + F04780B2FA7DE14A0000000D /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-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; + 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_54ECBB79_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000009 /* 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; - }; - C1A2A581215C43D60000000A /* Release */ = { + F04780B2FA7DE14A0000000E /* 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; - }; - C1A2A581215C43D60000000B /* 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_ref_gpuimagemath_gpuimageutil_E5CDD0E4_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_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; - }; - 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_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; - }; - 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_util_C76AD427_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", - ); - 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_cpu_util_C9677097_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000010 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-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; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_util_10B87B03_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000011 /* Release */ = { + F04780B2FA7DE14A0000000F /* 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_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_annotation_renderer_8D68840D_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_util_DB4949E7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000012 /* Release */ = { + F04780B2FA7DE14A00000010 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); + 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-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_min15.5; + OTHER_CFLAGS = "-x objective-c++ -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_2828BEF2_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000013 /* Release */ = { + F04780B2FA7DE14A00000011 /* 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_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_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 = ( - "-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 = "-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_54ECBB79_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000014 /* Release */ = { + F04780B2FA7DE14A00000012 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_cpu_util_10B87B03_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000013 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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_DB4949E7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000014 /* 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 = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_844088AB_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000015 /* Release */ = { + F04780B2FA7DE14A00000015 /* 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_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_begin_loop_calculator_50B5F6A2_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_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_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 = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_renderer_78B04092_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000017 /* Release */ = { + F04780B2FA7DE14A00000016 /* 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/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_clip_vector_size_calculator_C1D859C1_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_annotation_overlay_calculator_844088AB_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000018 /* Release */ = { + F04780B2FA7DE14A00000017 /* 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_78B04092_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000018 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_00B2416C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000019 /* Release */ = { + F04780B2FA7DE14A00000019 /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_begin_loop_calculator_00B2416C_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000001A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-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; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000001A /* Release */ = { + F04780B2FA7DE14A0000001B /* 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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000001C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DEIGEN_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_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_0FB1B7D6_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000001B /* Release */ = { + F04780B2FA7DE14A0000001D /* 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", - ); + 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_max_unpooling_max_pool_argmax_615F909D_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000001C /* Release */ = { + F04780B2FA7DE14A0000001E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_cpu_op_resolver_519CBACD_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/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DTFLITE_WITH_RUY", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_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/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; - }; - C1A2A581215C43D60000001F /* 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; - }; - C1A2A581215C43D600000020 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000021 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); - GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_detection_projection_calculator_6C26583E_ios_min15.5; - SDKROOT = iphoneos; - USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; - }; - name = Release; - }; - C1A2A581215C43D600000022 /* Release */ = { + F04780B2FA7DE14A0000001F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transpose_conv_bias_7C342083_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000023 /* Release */ = { + F04780B2FA7DE14A00000020 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_end_loop_calculator_AADF2B85_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_cpu_op_resolver_0FB1B7D6_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000024 /* Release */ = { + F04780B2FA7DE14A00000021 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DTFLITE_WITH_RUY -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000022 /* 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_54A4D221_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000023 /* 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_7C342083_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/external/ios_opencv"; + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_1999E439_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000025 /* Release */ = { + F04780B2FA7DE14A00000025 /* 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_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_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_mediapipe_framework_ios_C158E828_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_detection_projection_calculator_1999E439_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000026 /* Release */ = { + F04780B2FA7DE14A00000026 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_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_end_loop_calculator_86552B41_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000027 /* Release */ = { + F04780B2FA7DE14A00000027 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/external/ios_opencv", - ); GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/ios_opencv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_non_max_suppression_calculator_E13679C5_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_end_loop_calculator_86552B41_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000028 /* Release */ = { + F04780B2FA7DE14A00000028 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_4D298135_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000029 /* Release */ = { + F04780B2FA7DE14A00000029 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_op_resolver_0836C983_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_mediapipe_framework_ios_4D298135_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002A /* Release */ = { + F04780B2FA7DE14A0000002A /* 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_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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_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_non_max_suppression_calculator_5C82C5FE_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002B /* Release */ = { + F04780B2FA7DE14A0000002B /* 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_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", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv/_virtual_includes/opencv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/ios_opencv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ios_opencv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_D60754F6_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_non_max_suppression_calculator_5C82C5FE_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002C /* Release */ = { + F04780B2FA7DE14A0000002C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min11.0; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_E0F4B742_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002D /* Release */ = { + F04780B2FA7DE14A0000002D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_rectangle_util_BC608102_ios_min15.5; + OTHER_CFLAGS = "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_op_resolver_E0F4B742_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002E /* Release */ = { + F04780B2FA7DE14A0000002E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-ObjC++", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D60000002F /* Release */ = { + F04780B2FA7DE14A0000002F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_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 = ( - "-ObjC++", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_resource_util_C5C5DB93_ios_min15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000030 /* Release */ = { + F04780B2FA7DE14A00000030 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_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_rectangle_util_F7F3797D_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000031 /* Release */ = { + F04780B2FA7DE14A00000031 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/eigen_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/cpuinfo", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo", - "$(TULSI_OUTPUT_BASE)/external/clog", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog", - "$(TULSI_OUTPUT_BASE)/external/gemmlowp", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp", - "$(TULSI_OUTPUT_BASE)/external/fft2d", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive", - "$(TULSI_OUTPUT_BASE)/external/FP16", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool", - "$(TULSI_OUTPUT_BASE)/external/FXdiv", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_OUTPUT_BASE)/external/farmhash_archive/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src", - "$(TULSI_OUTPUT_BASE)/external/FP16/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include", - "$(TULSI_OUTPUT_BASE)/external/XNNPACK/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src", - "$(TULSI_OUTPUT_BASE)/external/pthreadpool/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include", - "$(TULSI_OUTPUT_BASE)/external/FXdiv/include", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_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 = ( - "-x", - "objective-c++", - "-fobjc-arc", - "-DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0", - "-DEIGEN_MAX_ALIGN_BYTES=64", - "-DEIGEN_MPL2_ONLY", - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-DPTHREADPOOL_NO_DEPRECATED_API", - "-DTFLITE_BUILD_WITH_XNNPACK_DELEGATE", - "-DTFLITE_WITH_RUY", - "-DXNN_ENABLE_ASSEMBLY=1", - "-DXNN_ENABLE_JIT=0", - "-DXNN_ENABLE_MEMOPT=1", - "-DXNN_ENABLE_SPARSE=1", - "-DXNN_LOG_LEVEL=0", - "-DXNN_NO_QU8_OPERATORS", - "-DXNN_NO_U8_OPERATORS", - "-DXNN_WASMSIMD_VERSION=87", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_split_vector_calculator_ED1EBC41_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_rectangle_util_F7F3797D_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000032 /* Release */ = { + F04780B2FA7DE14A00000032 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_tflite_model_loader_254BEB33_ios_min11.0; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_1F0C7A9C_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000033 /* Release */ = { + F04780B2FA7DE14A00000033 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow", - "$(TULSI_OUTPUT_BASE)/external/flatbuffers", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers", - "$(TULSI_OUTPUT_BASE)/external/ruy", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - "$(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_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_tflite_model_loader_254BEB33_ios_min15.5; + OTHER_CFLAGS = "-ObjC++ -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_resource_util_1F0C7A9C_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000034 /* Release */ = { + F04780B2FA7DE14A00000034 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 11.0; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_EE664713_ios_min11.0; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000035 /* Release */ = { + F04780B2FA7DE14A00000035 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers", - "$(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac", - "$(TULSI_WR)/.", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf", - "$(TULSI_OUTPUT_BASE)/external/zlib", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib", - "$(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags", - "$(TULSI_OUTPUT_BASE)/external/com_google_absl", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl", - "$(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src", - "$(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src", - ); + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo/_virtual_includes/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog/_virtual_includes/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/_virtual_includes/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/_virtual_includes/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/_virtual_includes/FXdiv $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/eigen_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/eigen_archive $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/cpuinfo $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/cpuinfo $(TULSI_OUTPUT_BASE)/external/clog $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/clog $(TULSI_OUTPUT_BASE)/external/gemmlowp $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/gemmlowp $(TULSI_OUTPUT_BASE)/external/fft2d $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/fft2d $(TULSI_OUTPUT_BASE)/external/farmhash_archive $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive $(TULSI_OUTPUT_BASE)/external/FP16 $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16 $(TULSI_OUTPUT_BASE)/external/XNNPACK $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK $(TULSI_OUTPUT_BASE)/external/pthreadpool $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool $(TULSI_OUTPUT_BASE)/external/FXdiv $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema $(TULSI_OUTPUT_BASE)/external/farmhash_archive/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/farmhash_archive/src $(TULSI_OUTPUT_BASE)/external/FP16/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FP16/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/include $(TULSI_OUTPUT_BASE)/external/XNNPACK/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/XNNPACK/src $(TULSI_OUTPUT_BASE)/external/pthreadpool/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/pthreadpool/include $(TULSI_OUTPUT_BASE)/external/FXdiv/include $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/FXdiv/include "; IPHONEOS_DEPLOYMENT_TARGET = 15.5; - OTHER_CFLAGS = ( - "-DGLES_SILENCE_DEPRECATION=1", - "-DMEDIAPIPE_PROFILER_AVAILABLE", - "-DNDEBUG", - "-DNS_BLOCK_ASSERTIONS=1", - "-D_FORTIFY_SOURCE=1", - "-D__DATE__=\"redacted\"", - "-D__TIMESTAMP__=\"redacted\"", - "-D__TIME__=\"redacted\"", - ); - PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5; + OTHER_CFLAGS = "-x objective-c++ -fobjc-arc -DEIGEN_ALTIVEC_USE_CUSTOM_PACK=0 -DEIGEN_MAX_ALIGN_BYTES=64 -DEIGEN_MPL2_ONLY -DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -DPTHREADPOOL_NO_DEPRECATED_API -DTFLITE_BUILD_WITH_XNNPACK_DELEGATE -DTFLITE_WITH_RUY -DXNN_ENABLE_ASSEMBLY=1 -DXNN_ENABLE_JIT=0 -DXNN_ENABLE_MEMOPT=1 -DXNN_ENABLE_SPARSE=1 -DXNN_LOG_LEVEL=0 -DXNN_NO_QU8_OPERATORS -DXNN_NO_U8_OPERATORS -DXNN_WASMSIMD_VERSION=87 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_split_vector_calculator_EE664713_ios_min15.5; SDKROOT = iphoneos; USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; }; name = Release; }; - C1A2A581215C43D600000036 /* Release */ = { + F04780B2FA7DE14A00000036 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_22B76F2A_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000037 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/runtime_cc $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/_virtual_includes/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers/src/_virtual_includes/flatbuffers $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/org_tensorflow $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow $(TULSI_OUTPUT_BASE)/external/flatbuffers $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/flatbuffers $(TULSI_OUTPUT_BASE)/external/ruy $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/ruy $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src $(TULSI_OUTPUT_BASE)/external/org_tensorflow/tensorflow/lite/schema $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/org_tensorflow/tensorflow/lite/schema "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_tflite_model_loader_22B76F2A_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000038 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A00000039 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; + HEADER_SEARCH_PATHS = "$(inherited) $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags/_virtual_includes/default_glog_headers $(TULSI_OUTPUT_BASE)/external/google_toolbox_for_mac $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/google_toolbox_for_mac $(TULSI_WR)/. $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/ $(TULSI_OUTPUT_BASE)/external/com_google_protobuf $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf $(TULSI_OUTPUT_BASE)/external/zlib $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/zlib $(TULSI_OUTPUT_BASE)/external/com_github_glog_glog_no_gflags $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_github_glog_glog_no_gflags $(TULSI_OUTPUT_BASE)/external/com_google_absl $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_absl $(TULSI_OUTPUT_BASE)/external/com_google_protobuf/src $(TULSI_EXECUTION_ROOT)/bazel-tulsi-includes/x/x/external/com_google_protobuf/src "; + IPHONEOS_DEPLOYMENT_TARGET = 15.5; + OTHER_CFLAGS = "-DGLES_SILENCE_DEPRECATION=1 -DMEDIAPIPE_PROFILER_AVAILABLE -DNDEBUG -DNS_BLOCK_ASSERTIONS=1 -D_FORTIFY_SOURCE=1 -D__DATE__=\"redacted\" -D__TIMESTAMP__=\"redacted\" -D__TIME__=\"redacted\""; + PRODUCT_NAME = _idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5; + SDKROOT = iphoneos; + USER_HEADER_SEARCH_PATHS = "$(TULSI_WR)"; + }; + name = Release; + }; + F04780B2FA7DE14A0000003A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; @@ -8995,7 +4879,7 @@ DEBUG_INFORMATION_FORMAT = dwarf; GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1"; INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; SDKROOT = iphoneos; TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; @@ -9003,719 +4887,494 @@ }; name = Release; }; - C1A2A581A47D8D4000000000 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGNING_REQUIRED = NO; - CODE_SIGN_IDENTITY = ""; - DONT_RUN_SWIFT_STDLIB_TOOL = YES; - ENABLE_TESTABILITY = YES; - FRAMEWORK_SEARCH_PATHS = ""; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ""; - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "--version"; - OTHER_LDFLAGS = "--version"; - OTHER_SWIFT_FLAGS = "--version"; - PYTHONIOENCODING = utf8; - SDKROOT = iphoneos; - SWIFT_INSTALL_OBJC_HEADER = NO; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BWRS = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; - TULSI_EXECUTION_ROOT = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-execution-root"; - TULSI_LLDBINIT_FILE = "$(PROJECT_FILE_PATH)/.tulsi/Utils/lldbinit"; - TULSI_OUTPUT_BASE = "$(PROJECT_FILE_PATH)/.tulsi/tulsi-output-base"; - TULSI_PROJECT = FaceUnityFramework; - TULSI_VERSION = 0.20220209.88; - TULSI_WR = "${SRCROOT}/../../../../../.."; - }; - name = __TulsiTestRunner_Debug; - }; - C1A2A581A47D8D4000000001 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityFramework"; - DEBUG_INFORMATION_FORMAT = dwarf; - FRAMEWORK_SEARCH_PATHS = ""; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ""; - INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "--version"; - OTHER_LDFLAGS = "--version"; - OTHER_SWIFT_FLAGS = "--version"; - PRODUCT_BUNDLE_IDENTIFIER = com.ola.olarender.develop; - PRODUCT_NAME = OlaFaceUnityFramework; - SDKROOT = iphoneos; - SWIFT_INSTALL_OBJC_HEADER = NO; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; - TULSI_XCODE_VERSION = 13.4.1.13F100; - }; - name = __TulsiTestRunner_Debug; - }; - C1A2A581A47D8D4000000002 /* __TulsiTestRunner_Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Stub Launch Image"; - BAZEL_TARGET = "//mediapipe/render/module/beauty/ios/framework:OlaFaceUnityLibrary"; - DEBUG_INFORMATION_FORMAT = dwarf; - FRAMEWORK_SEARCH_PATHS = ""; - GCC_PREPROCESSOR_DEFINITIONS = "DEBUG=1"; - HEADER_SEARCH_PATHS = ""; - INFOPLIST_FILE = "${PROJECT_FILE_PATH}/.tulsi/Resources/StubInfoPlist.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 15.5; - ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "--version"; - OTHER_LDFLAGS = "--version"; - OTHER_SWIFT_FLAGS = "--version"; - PRODUCT_NAME = "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary"; - SDKROOT = iphoneos; - SWIFT_INSTALL_OBJC_HEADER = NO; - SWIFT_OBJC_INTERFACE_HEADER_NAME = "$(PRODUCT_NAME).h"; - TULSI_BUILD_PATH = mediapipe/render/module/beauty/ios/framework; - TULSI_XCODE_VERSION = 13.4.1.13F100; - }; - name = __TulsiTestRunner_Debug; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 84EFF5080E206A9F00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min11.0" */ = { + 58316E170B36EE9500000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_F9E9FB32_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000010 /* Debug */, - C1A2A581215C43D600000010 /* Release */, - 369E737528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000008 /* Debug */, + F04780B2FA7DE14A00000008 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508101D379700000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min15.5" */ = { + 58316E170C6F7CF300000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_0563A244_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000021 /* Debug */, - C1A2A581215C43D600000021 /* Release */, - 369E739328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002F /* Debug */, + F04780B2FA7DE14A0000002F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5081610E78100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min15.5" */ = { + 58316E170E39C41600000000 /* Build configuration list for PBXNativeTarget "_idx_BeautyFilters_A720FDA2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001C /* Debug */, - C1A2A581215C43D60000001C /* Release */, - 369E738B28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738C28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000007 /* Debug */, + F04780B2FA7DE14A00000007 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508161F1A1D00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min11.0" */ = { + 58316E1710DAF09800000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_8F5F09A7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000024 /* Debug */, - C1A2A581215C43D600000024 /* Release */, - 369E73A128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73A228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000001B /* Debug */, + F04780B2FA7DE14A0000001B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508192F9DD000000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min15.5" */ = { + 58316E1713C922F800000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E0F4B742_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000029 /* Debug */, - C1A2A581215C43D600000029 /* Release */, - 369E73AF28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73B028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002D /* Debug */, + F04780B2FA7DE14A0000002D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5081ECDCC5600000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min15.5" */ = { + 58316E1717B68C6200000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_1F0C7A9C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000E /* Debug */, - C1A2A581215C43D60000000E /* Release */, - 369E73D728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73D828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000032 /* Debug */, + F04780B2FA7DE14A00000032 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5082219CAC000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_519CBACD_ios_min11.0" */ = { + 58316E1722228A2A00000000 /* Build configuration list for PBXNativeTarget "_idx_gpuimageutil_F68CBC21_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000018 /* Debug */, - C1A2A581215C43D600000018 /* Release */, - 369E738928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738A28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000006 /* Debug */, + F04780B2FA7DE14A00000006 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508278B98D900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min15.5" */ = { + 58316E172DB5646800000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_78B04092_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000017 /* Debug */, - C1A2A581215C43D600000017 /* Release */, - 369E738328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000015 /* Debug */, + F04780B2FA7DE14A00000015 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5082E8F9F1400000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_0836C983_ios_min11.0" */ = { + 58316E17306AD11C00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000028 /* Debug */, - C1A2A581215C43D600000028 /* Release */, - 369E73AD28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73AE28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000010 /* Debug */, + F04780B2FA7DE14A00000010 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50830543F6100000000 /* Build configuration list for PBXProject "FaceUnityFramework" */ = { + 58316E1737363DFE00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_1999E439_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000000 /* Debug */, - C1A2A581215C43D600000000 /* Release */, - C1A2A581A47D8D4000000000 /* __TulsiTestRunner_Debug */, - C1A2A58115BEFE3900000000 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000025 /* Debug */, + F04780B2FA7DE14A00000025 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508363B547A00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_D98E9275_ios_min15.5" */ = { + 58316E1738882BC300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_10B87B03_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000012 /* Debug */, - C1A2A581215C43D600000012 /* Release */, - 369E737728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000012 /* Debug */, + F04780B2FA7DE14A00000012 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5083836504100000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min11.0" */ = { + 58316E173CFD7FD400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_F7F3797D_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000014 /* Debug */, - C1A2A581215C43D600000014 /* Release */, - 369E737D28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737E28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000031 /* Debug */, + F04780B2FA7DE14A00000031 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5083C476C6A00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min15.5" */ = { + 58316E1740E58C7400000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_8F5F09A7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001D /* Debug */, - C1A2A581215C43D60000001D /* Release */, - 369E73CF28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73D028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000001A /* Debug */, + F04780B2FA7DE14A0000001A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5083E77579C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min15.5" */ = { + 58316E174384307A00000000 /* Build configuration list for PBXNativeTarget "_idx_op_resolver_E0F4B742_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000B /* Debug */, - C1A2A581215C43D60000000B /* Release */, - 369E73BB28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73BC28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002C /* Debug */, + F04780B2FA7DE14A0000002C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50840029B2B00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min11.0" */ = { + 58316E1745DFF29700000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_86552B41_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000026 /* Debug */, - C1A2A581215C43D600000026 /* Release */, - 369E73A528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73A628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000027 /* Debug */, + F04780B2FA7DE14A00000027 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50841B6A51B00000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min11.0" */ = { + 58316E174953F28A00000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_86552B41_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002E /* Debug */, - C1A2A581215C43D60000002E /* Release */, - 369E73BD28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73BE28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000026 /* Debug */, + F04780B2FA7DE14A00000026 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50845659DC900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min11.0" */ = { + 58316E1754AB7C7400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_54ECBB79_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001A /* Debug */, - C1A2A581215C43D60000001A /* Release */, - 369E73D128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73D228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000D /* Debug */, + F04780B2FA7DE14A0000000D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508474F353600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min11.0" */ = { + 58316E175B975CD900000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_1F0C7A9C_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000032 /* Debug */, - C1A2A581215C43D600000032 /* Release */, - 369E73C528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73C628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000033 /* Debug */, + F04780B2FA7DE14A00000033 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5084920A84900000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_254BEB33_ios_min15.5" */ = { + 58316E1761C48ED000000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_10B87B03_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000033 /* Debug */, - C1A2A581215C43D600000033 /* Release */, - 369E73C728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73C828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000E /* Debug */, + F04780B2FA7DE14A0000000E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5084BCDEF5000000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_DD005500_ios_min11.0" */ = { + 58316E1762E9DE5500000000 /* Build configuration list for PBXNativeTarget "_idx_math_CF33D7F4_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000019 /* Debug */, - C1A2A581215C43D600000019 /* Release */, - 369E73CD28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73CE28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000005 /* Debug */, + F04780B2FA7DE14A00000005 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5084E3B400600000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min11.0" */ = { + 58316E17643C46D500000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_1999E439_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002A /* Debug */, - C1A2A581215C43D60000002A /* Release */, - 369E73B128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73B228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000024 /* Debug */, + F04780B2FA7DE14A00000024 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5084F948BB400000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_C158E828_ios_min15.5" */ = { + 58316E17647797AD00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_EE664713_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000025 /* Debug */, - C1A2A581215C43D600000025 /* Release */, - 369E73A328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73A428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000035 /* Debug */, + F04780B2FA7DE14A00000035 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50858263CF500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min15.5" */ = { + 58316E17697AE7B900000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000023 /* Debug */, - C1A2A581215C43D600000023 /* Release */, - 369E739728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000038 /* Debug */, + F04780B2FA7DE14A00000038 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5085EB9C91B00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min11.0" */ = { + 58316E176FB16FD200000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000011 /* Debug */, - C1A2A581215C43D600000011 /* Release */, - 369E737928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737A28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000001E /* Debug */, + F04780B2FA7DE14A0000001E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5085EC1FB9F00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */ = { + 58316E177371B39600000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_22B76F2A_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000036 /* Debug */, - C1A2A581215C43D600000036 /* Release */, - C1A2A581A47D8D4000000002 /* __TulsiTestRunner_Debug */, - C1A2A58115BEFE3900000002 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000036 /* Debug */, + F04780B2FA7DE14A00000036 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5086D9F13EB00000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_E13679C5_ios_min15.5" */ = { + 58316E1776A957A300000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_0563A244_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000027 /* Debug */, - C1A2A581215C43D600000027 /* Release */, - 369E73A728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73A828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002E /* Debug */, + F04780B2FA7DE14A0000002E /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508778FF48400000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min11.0" */ = { + 58316E177A463F4F00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2828BEF2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000003 /* Debug */, - C1A2A581215C43D600000003 /* Release */, - 369E73A928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73AA28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000C /* Debug */, + F04780B2FA7DE14A0000000C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50879B1A83300000000 /* Build configuration list for PBXNativeTarget "_idx_resource_util_C5C5DB93_ios_min15.5" */ = { + 58316E177B1D40AC00000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_844088AB_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002F /* Debug */, - C1A2A581215C43D60000002F /* Release */, - 369E73BF28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73C028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000016 /* Debug */, + F04780B2FA7DE14A00000016 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5087A1991E800000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min11.0" */ = { + 58316E1784198F0E00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000004 /* Debug */, - C1A2A581215C43D600000004 /* Release */, - 369E738D28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738E28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000021 /* Debug */, + F04780B2FA7DE14A00000021 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF50883A4D2C400000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min15.5" */ = { + 58316E1785E2E9E600000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_4D298135_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000A /* Debug */, - C1A2A581215C43D60000000A /* Release */, - 369E738728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000028 /* Debug */, + F04780B2FA7DE14A00000028 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5088CB48DB200000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min11.0" */ = { + 58316E178D99107000000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_6E8D4716_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000008 /* Debug */, - C1A2A581215C43D600000008 /* Release */, - 369E739928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739A28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000009 /* Debug */, + F04780B2FA7DE14A00000009 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5088D5B68D300000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_util_C9677097_ios_min15.5" */ = { + 58316E179003AD7700000000 /* Build configuration list for PBXNativeTarget "_idx_math_CF33D7F4_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000F /* Debug */, - C1A2A581215C43D60000000F /* Release */, - 369E738F28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000A /* Debug */, + F04780B2FA7DE14A0000000A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5089042845D00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min15.5" */ = { + 58316E17964D61E600000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_78B04092_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000031 /* Debug */, - C1A2A581215C43D600000031 /* Release */, - 369E73C328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73C428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000017 /* Debug */, + F04780B2FA7DE14A00000017 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5089320C55E00000000 /* Build configuration list for PBXNativeTarget "_idx_previous_loopback_calculator_header_util_D60754F6_ios_min15.5" */ = { + 58316E179742D2CB00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002B /* Debug */, - C1A2A581215C43D60000002B /* Release */, - 369E73B328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73B428994391001F44F3 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508992D751100000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min11.0" */ = { + 58316E179B637AF700000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_overlay_calculator_844088AB_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000034 /* Debug */, - C1A2A581215C43D600000034 /* Release */, - 369E73C928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73CA28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000014 /* Debug */, + F04780B2FA7DE14A00000014 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF5089E75048B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min11.0" */ = { + 58316E179EA08B6D00000000 /* Build configuration list for PBXNativeTarget "mediapipe-render-module-beauty-ios-framework-OlaFaceUnityLibrary" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000002 /* Debug */, - C1A2A581215C43D600000002 /* Release */, - 369E737128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000003A /* Debug */, + F04780B2FA7DE14A0000003A /* Release */, + F04780B21F34D05500000002 /* __TulsiTestRunner_Debug */, + F04780B230B7AB1A00000002 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508AB7A688600000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min11.0" */ = { + 58316E17A36D938F00000000 /* Build configuration list for PBXNativeTarget "_idx_tflite_model_loader_22B76F2A_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001B /* Debug */, - C1A2A581215C43D60000001B /* Release */, - 369E739D28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739E28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000037 /* Debug */, + F04780B2FA7DE14A00000037 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508B2B858A400000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min11.0" */ = { + 58316E17AB76BC9B00000000 /* Build configuration list for PBXNativeTarget "_idx_mediapipe_framework_ios_4D298135_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002C /* Debug */, - C1A2A581215C43D60000002C /* Release */, - 369E73B528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73B628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000029 /* Debug */, + F04780B2FA7DE14A00000029 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508B410383C00000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_BC608102_ios_min15.5" */ = { + 58316E17B2128AFB00000000 /* Build configuration list for PBXNativeTarget "_idx_BeautyFilters_A720FDA2_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000002D /* Debug */, - C1A2A581215C43D60000002D /* Release */, - 369E73B728994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73B828994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000002 /* Debug */, + F04780B2FA7DE14A00000002 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508B7B3B91B00000000 /* Build configuration list for PBXLegacyTarget "_bazel_clean_" */ = { + 58316E17B3EF037E00000000 /* Build configuration list for PBXNativeTarget "_idx_util_DB4949E7_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - 369E736D28994391001F44F3 /* Debug */, - 369E736E28994391001F44F3 /* Release */, - 369E736F28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000013 /* Debug */, + F04780B2FA7DE14A00000013 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508BBC89BEB00000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_ED1EBC41_ios_min11.0" */ = { + 58316E17BE89646900000000 /* Build configuration list for PBXProject "FaceUnityFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000030 /* Debug */, - C1A2A581215C43D600000030 /* Release */, - 369E73C128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73C228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000000 /* Debug */, + F04780B2FA7DE14A00000000 /* Release */, + F04780B21F34D05500000000 /* __TulsiTestRunner_Debug */, + F04780B230B7AB1A00000000 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508C3B5CF4100000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_63E72567_ios_min15.5" */ = { + 58316E17C3F5920100000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_0FB1B7D6_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000D /* Debug */, - C1A2A581215C43D60000000D /* Release */, - 369E73AB28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73AC28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000020 /* Debug */, + F04780B2FA7DE14A00000020 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508CA1DA73100000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { + 58316E17C628CF7300000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_5C82C5FE_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000001 /* Debug */, - C1A2A581215C43D600000001 /* Release */, - C1A2A581A47D8D4000000001 /* __TulsiTestRunner_Debug */, - C1A2A58115BEFE3900000001 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002B /* Debug */, + F04780B2FA7DE14A0000002B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508CC419B8300000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_gpuimageutil_E5CDD0E4_ios_min11.0" */ = { + 58316E17C70DBA7900000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_7C342083_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000007 /* Debug */, - C1A2A581215C43D600000007 /* Release */, - 369E73B928994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73BA28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000023 /* Debug */, + F04780B2FA7DE14A00000023 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508D1B8279900000000 /* Build configuration list for PBXNativeTarget "_idx_clip_vector_size_calculator_C1D859C1_ios_min11.0" */ = { + 58316E17C9B37C7900000000 /* Build configuration list for PBXNativeTarget "OlaFaceUnityFramework" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000016 /* Debug */, - C1A2A581215C43D600000016 /* Release */, - 369E738128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000001 /* Debug */, + F04780B2FA7DE14A00000001 /* Release */, + F04780B21F34D05500000001 /* __TulsiTestRunner_Debug */, + F04780B230B7AB1A00000001 /* __TulsiTestRunner_Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508D5523A7B00000000 /* Build configuration list for PBXNativeTarget "_idx_OlaFaceUnityLibrary_FaceMeshGPULibrary_2770987F_ios_min15.5" */ = { + 58316E17CADA871300000000 /* Build configuration list for PBXNativeTarget "_idx_rectangle_util_F7F3797D_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000009 /* Debug */, - C1A2A581215C43D600000009 /* Release */, - 369E737328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000030 /* Debug */, + F04780B2FA7DE14A00000030 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508D7525C8000000000 /* Build configuration list for PBXNativeTarget "_idx_annotation_renderer_8D68840D_ios_min15.5" */ = { + 58316E17CCE01A7C00000000 /* Build configuration list for PBXNativeTarget "_idx_ref_gpuimagemath_6E8D4716_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000013 /* Debug */, - C1A2A581215C43D600000013 /* Release */, - 369E737B28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E737C28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000004 /* Debug */, + F04780B2FA7DE14A00000004 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508DB4002F000000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_E3459F40_ios_min15.5" */ = { + 58316E17D2665BDC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_core-ios_F9E9FB32_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001F /* Debug */, - C1A2A581215C43D60000001F /* Release */, - 369E73D328994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73D428994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000003 /* Debug */, + F04780B2FA7DE14A00000003 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508DB52C34B00000000 /* Build configuration list for PBXNativeTarget "_idx_detection_projection_calculator_6C26583E_ios_min11.0" */ = { + 58316E17D762E06200000000 /* Build configuration list for PBXNativeTarget "_idx_split_vector_calculator_EE664713_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000020 /* Debug */, - C1A2A581215C43D600000020 /* Release */, - 369E739128994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739228994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000034 /* Debug */, + F04780B2FA7DE14A00000034 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508E48C078C00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_50B5F6A2_ios_min15.5" */ = { + 58316E17DA44C9A500000000 /* Build configuration list for PBXNativeTarget "_idx_non_max_suppression_calculator_5C82C5FE_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000015 /* Debug */, - C1A2A581215C43D600000015 /* Release */, - 369E737F28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000002A /* Debug */, + F04780B2FA7DE14A0000002A /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508E81BE51800000000 /* Build configuration list for PBXNativeTarget "_idx_math_68C63536_ios_min15.5" */ = { + 58316E17E03152C500000000 /* Build configuration list for PBXNativeTarget "_idx_gpuimageutil_F68CBC21_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000000C /* Debug */, - C1A2A581215C43D60000000C /* Release */, - 369E739B28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739C28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000B /* Debug */, + F04780B2FA7DE14A0000000B /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508EA09B22F00000000 /* Build configuration list for PBXNativeTarget "_idx_util_C76AD427_ios_min11.0" */ = { + 58316E17E2E7A6DB00000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_00B2416C_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000005 /* Debug */, - C1A2A581215C43D600000005 /* Release */, - 369E73D528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73D628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000019 /* Debug */, + F04780B2FA7DE14A00000019 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508F0D7FBAC00000000 /* Build configuration list for PBXNativeTarget "_idx_core_BeautyFilters_core-ios_3FD503C6_ios_min11.0" */ = { + 58316E17E78E115B00000000 /* Build configuration list for PBXNativeTarget "_idx_util_DB4949E7_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000006 /* Debug */, - C1A2A581215C43D600000006 /* Release */, - 369E738528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E738628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000000F /* Debug */, + F04780B2FA7DE14A0000000F /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508F742852500000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_615F909D_ios_min15.5" */ = { + 58316E17E93848CA00000000 /* Build configuration list for PBXNativeTarget "_idx_transform_tensor_bilinear_landmarks_to_transform_matrix_transform_landmarks_F04B04B0_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB0000001E /* Debug */, - C1A2A581215C43D60000001E /* Release */, - 369E739F28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73A028994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF10000001D /* Debug */, + F04780B2FA7DE14A0000001D /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508F78E615300000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_200517DA_ios_min15.5" */ = { + 58316E17ECA636F800000000 /* Build configuration list for PBXNativeTarget "_idx_begin_loop_calculator_00B2416C_ios_min11.0" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000035 /* Debug */, - C1A2A581215C43D600000035 /* Release */, - 369E73CB28994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E73CC28994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000018 /* Debug */, + F04780B2FA7DE14A00000018 /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; - 84EFF508F7A3D4A500000000 /* Build configuration list for PBXNativeTarget "_idx_end_loop_calculator_AADF2B85_ios_min11.0" */ = { + 58316E17EE81095A00000000 /* Build configuration list for PBXNativeTarget "_idx_to_image_calculator_association_norm_rect_calculator_collection_has_min_size_calculator_constant_side_packet_calculator_detections_to_rects_calculator_detections_to_render_data_etc_7D53CB1B_ios_min15.5" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A2A5811882E1BB00000022 /* Debug */, - C1A2A581215C43D600000022 /* Release */, - 369E739528994391001F44F3 /* __TulsiTestRunner_Debug */, - 369E739628994391001F44F3 /* __TulsiTestRunner_Release */, + F04780B2C6C86FF100000039 /* Debug */, + F04780B2FA7DE14A00000039 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 58316E17EFE04B1700000000 /* Build configuration list for PBXNativeTarget "_idx_transpose_conv_bias_7C342083_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F04780B2C6C86FF10000001F /* Debug */, + F04780B2FA7DE14A0000001F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 58316E17F2153EDE00000000 /* Build configuration list for PBXNativeTarget "_idx_max_unpooling_max_pool_argmax_54A4D221_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F04780B2C6C86FF100000022 /* Debug */, + F04780B2FA7DE14A00000022 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 58316E17F35FC0A900000000 /* Build configuration list for PBXNativeTarget "_idx_olamodule_common_library_54ECBB79_ios_min15.5" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F04780B2C6C86FF100000011 /* Debug */, + F04780B2FA7DE14A00000011 /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 58316E17F613EDB200000000 /* Build configuration list for PBXNativeTarget "_idx_cpu_op_resolver_0FB1B7D6_ios_min11.0" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F04780B2C6C86FF10000001C /* Debug */, + F04780B2FA7DE14A0000001C /* Release */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 644B9F4C2866F94D00000000 /* Project object */; -} + rootObject = 66E663F842F582F700000000 /* Project object */; +} \ No newline at end of file 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 3363bfca8..31583a14a 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 b85a1dae6..e6b01bb4c 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 1a75d661d..963b05469 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 @@ -1,370 +1,370 @@ - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + - + - - + + - - + + - - + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + \ 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 1cb9e4ba7..947f2a1a7 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 @@ -1,29 +1,29 @@ - - + + - - + + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFURenderView+private.h b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView+private.h new file mode 100644 index 000000000..b5a9fc77d --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView+private.h @@ -0,0 +1,37 @@ +// +// OlaFURenderView+private.h +// OlaRender +// +// Created by 王韧竹 on 2022/6/20. +// + +#ifndef OlaFURenderView_private_h +#define OlaFURenderView_private_h +#import "OlaFURenderView.h" +#import "mediapipe/render/core/GPUImageTarget.h" +#import "mediapipe/render/core/Context.hpp" +#include "mediapipe/render/core/TargetView.hpp" + +@interface OlaFURenderView() +{ + Opipe::RotationMode inputRotation; + GLuint displayFramebuffer; + GLuint displayRenderbuffer; + Opipe::GLProgram* displayProgram; + + GLfloat displayVertices[8]; + GLint framebufferWidth, framebufferHeight; + CGSize lastBoundsSize; + Opipe::Context *_context; + CGRect renderBounds; + GLfloat backgroundColorRed, backgroundColorGreen, backgroundColorBlue, backgroundColorAlpha; +} +@property(readwrite, nonatomic) Opipe::TargetView::FillMode fillMode; +@property(nonatomic) Opipe::Framebuffer* inputFramebuffer; +@property(nonatomic) GLuint positionAttribLocation; +@property(nonatomic) GLuint texCoordAttribLocation; +@property(nonatomic) GLuint colorMapUniformLocation; +- (void)presentFramebuffer; +@end + +#endif /* OlaFURenderView_private_h */ diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.h b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.h new file mode 100644 index 000000000..5d75b952d --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.h @@ -0,0 +1,18 @@ +// +// OlaFURenderView.h +// OlaRender +// +// Created by 王韧竹 on 2022/6/20. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface OlaFURenderView : UIView + +- (instancetype)initWithFrame:(CGRect)frame context:(void *)context; + +@end + +NS_ASSUME_NONNULL_END diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.mm b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.mm new file mode 100644 index 000000000..19fd58b1e --- /dev/null +++ b/mediapipe/render/module/beauty/ios/framework/OlaFURenderView.mm @@ -0,0 +1,298 @@ +// +// OlaFURenderView.m +// OlaRender +// +// Created by 王韧竹 on 2022/6/20. +// + +#import "OlaFURenderView+private.h" + +#import +#include "mediapipe/render/core/GLProgram.hpp" +#include "mediapipe/render/core/Filter.hpp" +#import +NS_ASSUME_NONNULL_BEGIN + + +@implementation OlaFURenderView + ++ (Class)layerClass +{ + return [CAEAGLLayer class]; +} + +- (id)initWithFrame:(CGRect)frame context:(void *)context +{ + if (!(self = [super initWithFrame:frame])) + { + return nil; + } + _context = (Opipe::Context *)context; + _context->useAsCurrent(); + [self commonInit]; + renderBounds = self.bounds; + return self; +} + +- (void)commonInit; +{ + inputRotation = Opipe::NoRotation; + self.opaque = YES; + self.hidden = NO; + CAEAGLLayer* eaglLayer = (CAEAGLLayer*)self.layer; + eaglLayer.opaque = YES; + eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:NO], + kEAGLDrawablePropertyRetainedBacking, + kEAGLColorFormatRGBA8, + kEAGLDrawablePropertyColorFormat, nil]; + displayProgram = Opipe::GLProgram::createByShaderString(_context, Opipe::kDefaultVertexShader, + Opipe::kDefaultDisplayFragmentShader); + _positionAttribLocation = displayProgram->getAttribLocation("position"); + _texCoordAttribLocation = displayProgram->getAttribLocation("texCoord"); + _colorMapUniformLocation = displayProgram->getUniformLocation("colorMap"); + _context->setActiveShaderProgram(displayProgram); + glEnableVertexAttribArray(_positionAttribLocation); + glEnableVertexAttribArray(_texCoordAttribLocation); + + [self setBackgroundColorRed:0.0 green:0.0 blue:0.0 alpha:0.0]; + _fillMode = Opipe::TargetView::FillMode::PreserveAspectRatioAndFill; + [self createDisplayFramebuffer]; + + +} + +- (void)layoutSubviews { + [super layoutSubviews]; + renderBounds = self.bounds; + if (!CGSizeEqualToSize(self.bounds.size, lastBoundsSize) && + !CGSizeEqualToSize(self.bounds.size, CGSizeZero)) { + _context->useAsCurrent(); + [self destroyDisplayFramebuffer]; + [self createDisplayFramebuffer]; + } + +} + +- (void)dealloc +{ + [self destroyDisplayFramebuffer]; +} + +- (void)createDisplayFramebuffer; +{ + CAEAGLLayer *layer = self.layer; + CGSize bounds = self.bounds.size; + glGenRenderbuffers(1, &displayRenderbuffer); + glBindRenderbuffer(GL_RENDERBUFFER, displayRenderbuffer); + + [_context->getEglContext() renderbufferStorage:GL_RENDERBUFFER fromDrawable:layer]; + + glGenFramebuffers(1, &displayFramebuffer); + glBindFramebuffer(GL_FRAMEBUFFER, displayFramebuffer); + glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, + GL_RENDERBUFFER, displayRenderbuffer); + + glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_WIDTH, &framebufferWidth); + glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_HEIGHT, &framebufferHeight); + + lastBoundsSize = bounds; + [self updateDisplayVertices]; +} + +- (void)destroyDisplayFramebuffer; +{ + if (displayFramebuffer) + { + glDeleteFramebuffers(1, &displayFramebuffer); + displayFramebuffer = 0; + } + + if (displayRenderbuffer) + { + glDeleteRenderbuffers(1, &displayRenderbuffer); + displayRenderbuffer = 0; + } +} + +- (void)setDisplayFramebuffer; +{ + if (!displayFramebuffer) + { + [self createDisplayFramebuffer]; + } + + glBindFramebuffer(GL_FRAMEBUFFER, displayFramebuffer); + glViewport(0, 0, framebufferWidth, framebufferHeight); +} + +- (void)presentFramebuffer; +{ + glBindRenderbuffer(GL_RENDERBUFFER, displayRenderbuffer); + _context->presentBufferForDisplay(); +} + +- (void)setBackgroundColorRed:(GLfloat)redComponent green:(GLfloat)greenComponent blue:(GLfloat)blueComponent alpha:(GLfloat)alphaComponent; +{ + backgroundColorRed = redComponent; + backgroundColorGreen = greenComponent; + backgroundColorBlue = blueComponent; + backgroundColorAlpha = alphaComponent; +} + +- (void)update:(float)frameTime { + + _context->setActiveShaderProgram(displayProgram); + + [self setDisplayFramebuffer]; + glClearColor(backgroundColorRed, backgroundColorGreen, backgroundColorBlue, backgroundColorAlpha); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + glActiveTexture(GL_TEXTURE0); + glBindTexture(GL_TEXTURE_2D, _inputFramebuffer->getTexture()); + glUniform1i(_colorMapUniformLocation, 0); + glVertexAttribPointer(_positionAttribLocation, 2, GL_FLOAT, 0, 0, displayVertices); + glVertexAttribPointer(_texCoordAttribLocation, 2, GL_FLOAT, 0, 0, [self textureCoordinatesForRotation:inputRotation] ); + + glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); + + [self presentFramebuffer]; +} + +- (void)setInputFramebuffer:(Opipe::Framebuffer*)newInputFramebuffer withRotation:(Opipe::RotationMode)rotation atIndex:(NSInteger)texIdx { + Opipe::Framebuffer* lastFramebuffer = _inputFramebuffer; + Opipe::RotationMode lastInputRotation = inputRotation; + + inputRotation = rotation; + _inputFramebuffer = newInputFramebuffer; + + if (lastFramebuffer != newInputFramebuffer && newInputFramebuffer && + ( !lastFramebuffer || + !(lastFramebuffer->getWidth() == newInputFramebuffer->getWidth() && + lastFramebuffer->getHeight() == newInputFramebuffer->getHeight() && + lastInputRotation == rotation) + )) { + [self updateDisplayVertices]; + } +} + +- (void)setFillMode:(Opipe::TargetView::FillMode)newValue; +{ + if (_fillMode != newValue) { + _fillMode = newValue; + [self updateDisplayVertices]; + } +} + +- (void)updateDisplayVertices; +{ + if (_inputFramebuffer == 0) return; + + CGFloat scaledWidth = 1.0; + CGFloat scaledHeight = 1.0; + + int rotatedFramebufferWidth = _inputFramebuffer->getWidth(); + int rotatedFramebufferHeight = _inputFramebuffer->getHeight(); + if (rotationSwapsSize(inputRotation)) + { + rotatedFramebufferWidth = _inputFramebuffer->getHeight(); + rotatedFramebufferHeight = _inputFramebuffer->getWidth(); + } + + CGRect insetRect = AVMakeRectWithAspectRatioInsideRect(CGSizeMake(rotatedFramebufferWidth, + rotatedFramebufferHeight), + renderBounds); + + if (_fillMode == Opipe::TargetView::FillMode::PreserveAspectRatio) { + scaledWidth = insetRect.size.width / self.bounds.size.width; + scaledHeight = insetRect.size.height / self.bounds.size.height; + } else if (_fillMode == Opipe::TargetView::FillMode::PreserveAspectRatioAndFill) { + scaledWidth = renderBounds.size.height / insetRect.size.height; + scaledHeight = renderBounds.size.width / insetRect.size.width; + } + + displayVertices[0] = -scaledWidth; + displayVertices[1] = -scaledHeight; + displayVertices[2] = scaledWidth; + displayVertices[3] = -scaledHeight; + displayVertices[4] = -scaledWidth; + displayVertices[5] = scaledHeight; + displayVertices[6] = scaledWidth; + displayVertices[7] = scaledHeight; +} + + +- (const GLfloat *)textureCoordinatesForRotation:(Opipe::RotationMode)rotationMode; +{ + static const GLfloat noRotationTextureCoordinates[] = { + 0.0f, 1.0f, + 1.0f, 1.0f, + 0.0f, 0.0f, + 1.0f, 0.0f, + }; + + static const GLfloat rotateRightTextureCoordinates[] = { + 1.0f, 1.0f, + 1.0f, 0.0f, + 0.0f, 1.0f, + 0.0f, 0.0f, + }; + + static const GLfloat rotateLeftTextureCoordinates[] = { + 0.0f, 0.0f, + 0.0f, 1.0f, + 1.0f, 0.0f, + 1.0f, 1.0f, + }; + + static const GLfloat verticalFlipTextureCoordinates[] = { + 0.0f, 0.0f, + 1.0f, 0.0f, + 0.0f, 1.0f, + 1.0f, 1.0f, + }; + + static const GLfloat horizontalFlipTextureCoordinates[] = { + 1.0f, 1.0f, + 0.0f, 1.0f, + 1.0f, 0.0f, + 0.0f, 0.0f, + }; + + static const GLfloat rotateRightVerticalFlipTextureCoordinates[] = { + 1.0f, 0.0f, + 1.0f, 1.0f, + 0.0f, 0.0f, + 0.0f, 1.0f, + }; + + static const GLfloat rotateRightHorizontalFlipTextureCoordinates[] = { + 0.0f, 1.0f, + 0.0f, 0.0f, + 1.0f, 1.0f, + 1.0f, 0.0f, + }; + + static const GLfloat rotate180TextureCoordinates[] = { + 1.0f, 0.0f, + 0.0f, 0.0f, + 1.0f, 1.0f, + 0.0f, 1.0f, + }; + + switch(inputRotation) + { + case Opipe::NoRotation: return noRotationTextureCoordinates; + case Opipe::RotateLeft: return rotateLeftTextureCoordinates; + case Opipe::RotateRight: return rotateRightTextureCoordinates; + case Opipe::FlipVertical: return verticalFlipTextureCoordinates; + case Opipe::FlipHorizontal: return horizontalFlipTextureCoordinates; + case Opipe::RotateRightFlipVertical: return rotateRightVerticalFlipTextureCoordinates; + case Opipe::RotateRightFlipHorizontal: return rotateRightHorizontalFlipTextureCoordinates; + case Opipe::Rotate180: return rotate180TextureCoordinates; + } +} + +@end + +NS_ASSUME_NONNULL_END + diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h index 3a5244c5f..54458d74d 100644 --- a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.h @@ -3,6 +3,7 @@ #import #import #import +#import "OlaFURenderView.h" typedef struct { int width; @@ -19,12 +20,17 @@ typedef struct { @property (nonatomic) CGFloat slim; @property (nonatomic) CGFloat nose; @property (nonatomic) CGFloat eyeFactor; +@property (nonatomic, weak) OlaFURenderView *renderView; +@property (nonatomic) BOOL useGLRender; //测试用开关 +- (void)initModule; + (instancetype)sharedInstance; - (EAGLContext *)currentContext; +- (void *)currentGLContext; + - (void)resume; - (void)suspend; @@ -33,7 +39,10 @@ typedef struct { - (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer timeStamp:(int64_t)timeStamp; +// 相机采集输入 直接渲染到renderView上 rotatedRightFlipVertical YUV420 +- (void)renderSampleBuffer:(CMSampleBufferRef)samplebuffer; +// 离屏渲染到目标texture上 - (FaceTextureInfo)render:(FaceTextureInfo)inputTexture; - (void)dispose; diff --git a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm index 8b445d411..9adf4a0d1 100644 --- a/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm +++ b/mediapipe/render/module/beauty/ios/framework/OlaFaceUnity.mm @@ -1,16 +1,29 @@ #import "OlaFaceUnity.h" - +#import "OlaFURenderView+private.h" #include "mediapipe/render/module/beauty/face_mesh_module.h" +#include "mediapipe/render/core/OlaCameraSource.hpp" +#include "mediapipe/render/core/Context.hpp" +#include "mediapipe/render/core/Filter.hpp" +using namespace Opipe; @interface OlaFaceUnity() { Opipe::FaceMeshModule *_face_module; + OlaCameraSource *sourceCamera; + dispatch_queue_t videoQueue; } +@property (nonatomic) dispatch_semaphore_t cameraFrameRenderingSemaphore; + @end @implementation OlaFaceUnity - (void)dealloc { + if (sourceCamera) { + sourceCamera->release(); + sourceCamera = nullptr; + } + if (_face_module) { delete _face_module; _face_module = nullptr; @@ -21,7 +34,7 @@ { self = [super init]; if (self) { - [self initModule]; + } return self; } @@ -36,6 +49,21 @@ _face_module->init(nullptr, (void *)data.bytes, data.length); _face_module->startModule(); } + if (_useGLRender) { + _face_module->runInContextSync([&] { + OlaContext *context = _face_module->currentContext(); + + Context *glContext = context->glContext(); + + sourceCamera = new OlaCameraSource(glContext, Opipe::SourceCamera::SourceType_YUV420SP); + + _face_module->setInputSource(sourceCamera); + + }); + self.cameraFrameRenderingSemaphore = dispatch_semaphore_create(1); + videoQueue = dispatch_queue_create("FaceUnity.videoQueue", 0); + } + } + (instancetype)sharedInstance @@ -74,16 +102,65 @@ result.frameTime = rs.frameTime; return result; } - - +- (void)renderSampleBuffer:(CMSampleBufferRef)samplebuffer +{ + if (!self.cameraFrameRenderingSemaphore) { + return; + } + if (dispatch_semaphore_wait(self.cameraFrameRenderingSemaphore, DISPATCH_TIME_NOW) != 0) + { + return; + } + dispatch_semaphore_t block_camera_sema = self.cameraFrameRenderingSemaphore; + if (_face_module) { + + CVPixelBufferRef imagebuffer = CMSampleBufferGetImageBuffer(samplebuffer); + IOSurfaceRef iosurface = CVPixelBufferGetIOSurface(imagebuffer); + int surfaceId = IOSurfaceGetID(iosurface); + + CMTime time = CMSampleBufferGetOutputPresentationTimeStamp(samplebuffer); + Float64 frameTime = CMTimeGetSeconds(time) * 1000; + + int width = (int)CVPixelBufferGetWidth(imagebuffer); + int height = (int)CVPixelBufferGetHeight(imagebuffer); + + CFRetain(samplebuffer); + NSLog(@"surfaceId:%@", @(surfaceId)); + dispatch_async(videoQueue, ^{ + _face_module->runInContextSync([&] { + CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(samplebuffer); + CVPixelBufferLockBaseAddress(imageBuffer, 0); + + sourceCamera->setFrameData(width, + height, + CVPixelBufferGetBaseAddressOfPlane(imageBuffer, 0), + GL_RGBA, + -1, + RotationMode::RotateRightFlipVertical, + Opipe::SourceCamera::SourceType_YUV420SP, + CVPixelBufferGetBaseAddressOfPlane(imageBuffer, 1)); + CVPixelBufferUnlockBaseAddress(imageBuffer, 0); + sourceCamera->updateTargets(frameTime); + dispatch_semaphore_signal(block_camera_sema); + }); + CFRelease(samplebuffer); + }); + } +} - - (EAGLContext *)currentContext - { - if (_face_module) { - return _face_module->currentContext()->currentContext(); - } - } +- (void *)currentGLContext { + if (_face_module) { + return _face_module->currentContext()->glContext(); + } +} + +- (EAGLContext *)currentContext +{ + if (_face_module) { + return _face_module->currentContext()->currentContext(); + } +} - (void)processVideoFrame:(CVPixelBufferRef)pixelbuffer timeStamp:(int64_t)timeStamp; @@ -169,4 +246,18 @@ _face_module = nullptr; } +- (void)setRenderView:(OlaFURenderView *)renderView +{ + _renderView = renderView; + + if (_face_module && _renderView) { + Opipe::Filter *filter = _face_module->getOutputFilter(); + if (filter) { + filter->addTarget(_renderView); + } + + } +} + + @end diff --git a/mediapipe/render/module/common/ola_graph.cc b/mediapipe/render/module/common/ola_graph.cc index 44836b7c9..3925abe2f 100644 --- a/mediapipe/render/module/common/ola_graph.cc +++ b/mediapipe/render/module/common/ola_graph.cc @@ -29,15 +29,15 @@ namespace Opipe graph->_delegate.lock()->outputPacket(graph, packet, streamName); - if (packetType == MPPPacketTypeRaw) + if (packetType == MPPPacketTypeRaw && !graph->_delegate.expired()) { graph->_delegate.lock()->outputPacket(graph, packet, packetType, streamName); - } else if (packetType == MPPPacketTypeImageFrame) { + } else if (packetType == MPPPacketTypeImageFrame && !graph->_delegate.expired()) { graph->_framesInFlight--; } #if defined(__APPLE__) - else if (packetType == MPPPacketTypePixelBuffer || - packetType == MPPPacketTypeImage) + else if ((packetType == MPPPacketTypePixelBuffer || + packetType == MPPPacketTypeImage) && !graph->_delegate.expired()) { graph->_framesInFlight--; CVPixelBufferRef pixelBuffer;